Skip to content

Releases: NCAR/DART

WRF-Chem pre-release

10 Jun 17:29
Compare
Choose a tag to compare
WRF-Chem pre-release Pre-release
Pre-release

Pre-release version of WRF-DART with WRF-Chem capabilities

Documentation available at https://docs.dart.ucar.edu/en/wrf-unified/.

wrf_unified model_mod page

We recommend you checkout the wrf-unified branch to get the latest developments on this code:

git checkout wrf-unified
git pull

Summary of changes:

  • Unifies wrf and wrf_chem capabilities into a single model_mod
  • removes wrf_static_data_for_data, uses state_stucture_mod
  • Removed wrf%dom%type so any netcdf variables can be added to the state via namelsit
  • 2M variables forced to 2M QTYs
  • QTY_TEMPERATURE forced to QTY_POTENTIAL_TEMPERATURE
  • No vortex forward operator

Pull request #741

Please reach out to [email protected] if you are interested in using WRF-Chem.

Bug-fix: nc_get_variable_info

06 Jun 18:26
d908222
Compare
Choose a tag to compare

Bug-fix:

  • nc_get_variable_info: Use local variable rather than optional argument which may not be present #874

Documentation updates:

  • Fortran compiler and NetCDF requirements #885 #814
  • Removed unused .rst files #812
  • Comment on damping vs applying posterior inflation clarification #857

Fwd-op for SAT_SEAICE radar and laser

06 May 20:52
68a4720
Compare
Choose a tag to compare

New feature:

  • Forward Operator for SAT_SEAICE_RADAR|LASER_FREEBOARD.
    contributed by Molly Wieringa

Bug-fix:

  • real128 removed from developer_tests for nvhpc compiler. #866

Documentation updates:

  • CONAGUA converter documentation updated. #868
  • Radar observations documentation updated. #827

Bug-fixes: TIEGCM, BNRH

01 May 14:35
7c22a86
Compare
Choose a tag to compare
  • Fix VTEC extrapolation calculation in TIEGCM model_mod. #851
  • Fix loop limit in bnrh_distribution_mod, and routine name in error messages. #844
  • Documentation fix for perturb_single_instance. #862

Bug-fix: CICE interpolation

22 Apr 18:43
5a6f406
Compare
Choose a tag to compare
  • Inverse distance weighting interpolation for CICE. #833
    Replaces bilinear interpolation which can produce out-of-bounds values.

Bug-fix: CAM perturb

31 Mar 13:07
4eea462
Compare
Choose a tag to compare
  • Fix fields to perturb in cam-se and cam-fv. #845
  • Fix documentation links for obs_selection #808

Calendar base date documentation

19 Mar 13:26
c5600dc
Compare
Choose a tag to compare
  • Added base date information to time_manager_mod docs. #826 #835
  • GitHub workflow based on tj-actions changed-files removed. dependabot #2

WRF use_theta_m check

14 Mar 13:24
33c310b
Compare
Choose a tag to compare
  • Assert use_theta_m=0 in WRF when initializing wrf model_mod. #837
    For use of THM vs T & use_theta_m in WRF refer to the WRF v4 release notes
  • Fixed documentation broken links. #829

WRF tutorial and prepbufr documentation

06 Feb 18:02
fd3a813
Compare
Choose a tag to compare
  • Observation section of WRF tutorial updated to match provided obs. #792
  • Prepbufr docs updated to describe complete conversion process.

Generic model_mod subroutine parse_variables

04 Feb 22:26
f4b2a58
Compare
Choose a tag to compare
  • Creates two generalized subroutines in utilities/default_model_mod.f90 that convert the table of state variables that is read in from the &model_nml to a state_var_type: parse_variables and parse_variables_clamp (#783)
  • Alternate versions for this subroutine were replaced with parse_variables in the models MOM6, wrf_hydro, aether_lat-lon, cam-fv, cam-se, POP, and cice
  • New dev test test_parse_variables added