[Dart-dev] DART/branches Revision: 13074

dart at ucar.edu dart at ucar.edu
Tue Mar 26 09:18:07 MDT 2019


nancy at ucar.edu
2019-03-26 09:18:06 -0600 (Tue, 26 Mar 2019)
1536
the grand reintegration of the recam branch.  changes include:

- The CAM Finite Volume (cam-fv)  model_mod.f90 has undergone substantial
  refactoring to improve simplicity and remove code for unsupported CAM variants
  while also supporting WACCM and WACCM-X

- cam-fv setup and scripting support added for CESM 2_1, including advanced
  archiving and compression

- COSMIC_ELECTRON_DENSITY has been moved from obs_def_gps_mod.f90 to
  obs_def_upper_atm_mod.f90, which has new quantities for
  ION_O_MIXING_RATIO and ATOMIC_H_MIXING_RATIO

- Namelist option to select whether or not to compute posterior estimates of
  observations

- added a DART QC of 8 for failed vertical conversions

- obs_converters/gps/convert_cosmic_ionosphere.f90 has a test dataset

- support for NAG compiler

- closest_member_tool should be compiled with other MPI targets

- fixed Intel compiler bug in lorenz_96 comparing long integers to integer loop indices

- sampling error correction table now has all ensemble sizes between 3 and 200

- get_maxdist() now a required routine all location modules

- dart_time_io_mod: read_model_time, write_model_time  more stable behavior

- obs_impact_tool handles a continuum of values, not just discrete 0 or 1.

- fill_inflation_restart now produces files with names consistent with filter defaults.

- expanded functionality in xyz_location_mod.f90

- Removed 'slow' sorting routines from sort_mod.f90

- replacing some repeated native netCDF library calls with routines from
  the netcdf_utilities_mod.f90





Index: DART/branches/rma_trunk
===================================================================
--- DART/branches/rma_trunk	2019-03-25 22:50:01 UTC (rev 13073)
+++ DART/branches/rma_trunk	2019-03-26 15:18:06 UTC (rev 13074)

Property changes on: DART/branches/rma_trunk
___________________________________________________________________
Modified: svn:mergeinfo
## -10,6 +10,7 ##
 /DART/branches/model_mod_changes:11403-11604
 /DART/branches/pertirb_tool:12695-12764
 /DART/branches/qc8:12643-12657
+/DART/branches/recam:12028-13073
 /DART/branches/rma_array_nml:11814-11839
 /DART/branches/rma_cam_fv:9552-9728
 /DART/branches/rma_cf_conventions:9727-10086
Modified: DART/branches/rma_trunk/CHANGELOG
===================================================================
--- DART/branches/rma_trunk/CHANGELOG	2019-03-25 22:50:01 UTC (rev 13073)
+++ DART/branches/rma_trunk/CHANGELOG	2019-03-26 15:18:06 UTC (rev 13074)
@@ -810,7 +810,7 @@
   conforms to the netCDF convention for coordinate dimensions.
 
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-+ Nov 01 2018 :: summary of changes in Manhattan update       $Revision$
++ Nov 01 2018 :: Adaptive Inflation, dewpoint, obs_diag        Revision: 13006
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
 - Updated dewpoint equation to avoid dividing by zero given a very unlikely
@@ -827,6 +827,51 @@
 - Better error and informational messages in various routines.
 
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ Mar 25 2019 :: cam-fv refactor, posteriors optional, QC 8  $Revision$
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+- The CAM Finite Volume (cam-fv)  model_mod.f90 has undergone substantial 
+  refactoring to improve simplicity and remove code for unsupported CAM variants
+  while also supporting WACCM and WACCM-X
+
+- cam-fv setup and scripting support added for CESM 2_1, including advanced
+  archiving and compression
+
+- COSMIC_ELECTRON_DENSITY has been moved from obs_def_gps_mod.f90 to 
+  obs_def_upper_atm_mod.f90, which has new quantities for 
+  ION_O_MIXING_RATIO and ATOMIC_H_MIXING_RATIO
+
+- Namelist option to select whether or not to compute posterior estimates of
+  observations
+
+- added a DART QC of 8 for failed vertical conversions
+
+- obs_converters/gps/convert_cosmic_ionosphere.f90 has a test dataset
+
+- support for NAG compiler 
+
+- closest_member_tool should be compiled with other MPI targets
+
+- fixed Intel compiler bug in lorenz_96 comparing long integers to integer loop indices
+
+- sampling error correction table now has all ensemble sizes between 3 and 200
+
+- get_maxdist() now a required routine all location modules
+
+- dart_time_io_mod: read_model_time, write_model_time  more stable behavior 
+
+- obs_impact_tool handles a continuum of values, not just discrete 0 or 1.
+
+- fill_inflation_restart now produces files with names consistent with filter defaults. 
+
+- expanded functionality in xyz_location_mod.f90
+
+- Removed 'slow' sorting routines from sort_mod.f90
+
+- replacing some repeated native netCDF library calls with routines from
+  the netcdf_utilities_mod.f90 
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 + MMM DD YYYY :: summary of changes in Manhattan update   $Revision$
 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 

Modified: DART/branches/rma_trunk/assimilation_code/location/annulus/location_mod.f90
===================================================================
--- DART/branches/rma_trunk/assimilation_code/location/annulus/location_mod.f90	2019-03-25 22:50:01 UTC (rev 13073)
+++ DART/branches/rma_trunk/assimilation_code/location/annulus/location_mod.f90	2019-03-26 15:18:06 UTC (rev 13074)
@@ -26,7 +26,7 @@
 private
 
 public :: location_type, get_location, set_location, &
-          set_location_missing, is_location_in_region, &
+          set_location_missing, is_location_in_region, get_maxdist, &
           write_location, read_location, interactive_location, query_location, &
           LocationDims, LocationName, LocationLName, LocationStorageOrder, LocationUnits, &
           get_close_type, get_close_init, get_close, get_close_destroy, &
@@ -633,6 +633,17 @@
 
 end subroutine get_close
 
+!---------------------------------------------------------------------------
+


More information about the Dart-dev mailing list