[Dart-dev] DART/releases Revision: 11996
dart at ucar.edu
dart at ucar.edu
Tue Oct 17 16:19:26 MDT 2017
nancy at ucar.edu
2017-10-17 16:19:25 -0600 (Tue, 17 Oct 2017)
2780
pushed the current rma_trunk code to the release.
here are the CHANGELOG notes:
- Fixed a bug in the MPAS-ATM model_mod that affected surface observations,
in particular altimeter obs. also fixed a bug in the vertical conversion
if using 'scale height' as the vertical localization type.
- Fixed a bug in the CAM-FV model_mod which might have excluded observations
with a vertical coordinate of height (meters) which were in fact below the
highest_obs_height_m namelist setting. also fixed a possible memory leak.
- Added two new modules: options_mod.f90 and obs_def_utilities_mod.f90
this was required so we didn't have circular dependencies in our modules
as we reused common code in more places.
We have updated all the path_names* files which are in the repository.
if you have your own path_names files you may need to add these new modules
to your path lists.
assimilation_code/modules/utilities/options_mod.f90
observations/forward_operators/obs_def_utilities_mod.f90
- Removed QTY_SURFACE_TEMPERATURE from the default obs quantities list
and added QTY_2M_SPECIFIC_HUMIDITY. QTY_2M_TEMPERATURE exists for
atmospheric models, and QTY_SKIN_TEMPERATURE and QTY_SOIL_TEMPERATURE
exist for other models. if you were using QTY_SURFACE_TEMPERATURE
please replace it with the corresponding other temperature quantity.
- Updated and improved the observation converter for ionospheric observations
from the COSMIC GPS satellite.
- Updated the CAM-FV scripts for cesm2_0_beta05.
- Updated the Matlab diagnostics documentation. 'help DART' or 'doc DART'
will give an overview of the available Matlab diagnostics shipped with the
dart distribution.
- Added the observation type COSMIC_ELECTRON_DENSITY to the obs_def_upper_atm_mod
- dart_to_clm and clm_to_dart were resurrected to correctly handle conversions
for the SWE (snow water equivalent) field.
- Updated the channel and column location modules to be compatible with
the current required interfaces.
- Updated the model_mod_check.f90 program (most often used when porting
DART to a new model). there is now more control over exactly which
tests are being run. updated the nml and html documentation files to
match the current code and describe the tests in more detail.
- Fixed a misleading status message in the obs_sequence_tool when all obs
are excluded by the min/max lon/lat box namelist items. the incorrect
message blamed it on observation height instead of the bounding box.
- Added some additional debugging options to the mpi utilities module.
if you have problems that appear to be MPI related, contact us for
more help in enabling them.
- Improved some error messages in location_io_mod and state_structure_mod
Index: DART/releases/Manhattan
===================================================================
--- DART/releases/Manhattan 2017-10-17 21:49:00 UTC (rev 11995)
+++ DART/releases/Manhattan 2017-10-17 22:19:25 UTC (rev 11996)
Property changes on: DART/releases/Manhattan
___________________________________________________________________
Modified: svn:mergeinfo
## -12,6 +12,7 ##
/DART/branches/rma_cice:10647-10850
/DART/branches/rma_clm:8903-9124
/DART/branches/rma_diag:9621-9735
+/DART/branches/rma_fix_clm_restarts:9634-11919
/DART/branches/rma_fixed_filenames:10700-10893
/DART/branches/rma_kinds_to_state_structure:8950-9429
/DART/branches/rma_kinds_to_state_strucutre:8901-8949
## -33,7 +34,7 ##
/DART/branches/rma_sprint:8093-8164
/DART/branches/rma_state_structure_test_dir:9470-9674
/DART/branches/rma_state_structure_unit_test:9689-10266
-/DART/branches/rma_trunk:11347-11863
+/DART/branches/rma_trunk:11347-11992
/DART/branches/rma_trunk_clamping:8784-8799
/DART/branches/rma_trunk_filename:8009-8155
/DART/branches/rma_trunk_get_state_fun:8566-8594
Modified: DART/releases/Manhattan/CHANGELOG
===================================================================
--- DART/releases/Manhattan/CHANGELOG 2017-10-17 21:49:00 UTC (rev 11995)
+++ DART/releases/Manhattan/CHANGELOG 2017-10-17 22:19:25 UTC (rev 11996)
@@ -491,7 +491,7 @@
names changed from 'restart' to 'state' for input and output files.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-+ Aug 2 2017 :: single filenames, random distributions, bug fixes. $Revision$
++ Aug 2 2017 :: single filenames, random distributions, bug fixes. Revision: 11864
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- added code to support listing input and output filenames directly in the
@@ -516,10 +516,57 @@
- improved some error messages in the diagnostic matlab scripts
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-+ MMM DD 2017 :: next revision summary. Revision:
++ Oct 17 2017 :: MPAS Atm bug fix, various other updates. $Revision$
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+- fix a bug in the MPAS-ATM model mod that affected surface observations,
+ in particular altimeter obs. also fixed a bug in the vertical conversion
+ if using 'scale height' as the vertical localization type.
+- updated and improved the observation converter for ionospheric observations
+ from the COSMIC GPS satellite.
+
+- updates to the cam-fv scripts for cesm2_0_beta05.
+
+- updates to the Matlab diagnostics documentation. 'help DART' or 'doc DART'
+ will give an overview of the available Matlab diagnostics shipped with the
+ dart distribution.
+
+- added two new modules: options_mod.f90 and obs_def_utilities_mod.f90
+ this was required so we didn't have circular dependencies in our modules
+ as we reused common code in more places.
+
+ we have updated all the path_names* files which are in the repository.
+ if you have your own path_names files you may need to add these new modules
+ to your path lists.
+
+ assimilation_code/modules/utilities/options_mod.f90
+ observations/forward_operators/obs_def_utilities_mod.f90
+
+- removed QTY_SURFACE_TEMPERATURE from the default obs quantities list
+ and added QTY_2M_SPECIFIC_HUMIDITY. QTY_2M_TEMPERATURE exists for
+ atmospheric models, and QTY_SKIN_TEMPERATURE and QTY_SOIL_TEMPERATURE
+ exist for other models. if you were using QTY_SURFACE_TEMPERATURE
+ please replace it with the corresponding other temperature quantity.
+
+- dart_to_clm and clm_to_dart were resurrected to correctly handle the
+ SWE (snow water equivalent) field.
+
+- updated the channel and column location modules to be compatible with
+ the current required interfaces.
+
+- updated the model_mod_check.f90 program (most often used when porting
+ DART to a new model). there is now more control over exactly which
+ tests are being run.
+
+- fixed a misleading status message in the obs_sequence_tool when all obs
+ are excluded by the min/max lon/lat box namelist items. the incorrect
+ message blamed it on observation height instead of the bounding box.
+
+- added some additional debugging options to the mpi utilities module.
+ if you have problems that appear to be MPI related, contact us for
+ more help in enabling them.
+
# <next few lines under version control, do not edit>
# $URL$
# $Revision$
Modified: DART/releases/Manhattan/assimilation_code/location/channel/location_mod.f90
===================================================================
--- DART/releases/Manhattan/assimilation_code/location/channel/location_mod.f90 2017-10-17 21:49:00 UTC (rev 11995)
More information about the Dart-dev
mailing list