Releases: NCAR/DART
Releases · NCAR/DART
WRF-Chem pre-release
Pre-release version of WRF-DART with WRF-Chem capabilities
Documentation available at https://docs.dart.ucar.edu/en/wrf-unified/.
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
Fwd-op for SAT_SEAICE radar and laser
Bug-fixes: TIEGCM, BNRH
Bug-fix: CICE interpolation
- Inverse distance weighting interpolation for CICE. #833
Replaces bilinear interpolation which can produce out-of-bounds values.
Bug-fix: CAM perturb
Calendar base date documentation
- 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
- 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
- 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
- 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