[Dart-dev] DART/branches Revision: 11890
dart at ucar.edu
dart at ucar.edu
Tue Aug 8 15:56:55 MDT 2017
thoar at ucar.edu
2017-08-08 15:56:53 -0600 (Tue, 08 Aug 2017)
56
Bringing the rma_coamps up-to-date with the rma_trunk.
Index: DART/branches/coamps
===================================================================
--- DART/branches/coamps 2017-08-08 21:53:50 UTC (rev 11889)
+++ DART/branches/coamps 2017-08-08 21:56:53 UTC (rev 11890)
Property changes on: DART/branches/coamps
___________________________________________________________________
Modified: svn:mergeinfo
## -6,6 +6,7 ##
/DART/branches/gitm_lanai:6565-6646
/DART/branches/helen:5989-6155
/DART/branches/model_mod_changes:11403-11604
+/DART/branches/rma_array_nml:11814-11839
/DART/branches/rma_cam_fv:9552-9728
/DART/branches/rma_cf_conventions:9727-10086
/DART/branches/rma_cice:10649-10852
## -32,7 +33,7 ##
/DART/branches/rma_sprint:8095-8166
/DART/branches/rma_state_structure_test_dir:9472-9676
/DART/branches/rma_state_structure_unit_test:9691-10268
-/DART/branches/rma_trunk:11712-11837
+/DART/branches/rma_trunk:11712-11887
/DART/branches/rma_trunk_clamping:8786-8801
/DART/branches/rma_trunk_filename:8011-8157
/DART/branches/rma_trunk_get_state_fun:8568-8596
Modified: DART/branches/coamps/CHANGELOG
===================================================================
--- DART/branches/coamps/CHANGELOG 2017-08-08 21:53:50 UTC (rev 11889)
+++ DART/branches/coamps/CHANGELOG 2017-08-08 21:56:53 UTC (rev 11890)
@@ -476,7 +476,7 @@
in the repository. (Remove it from any private path_names_* files.)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-+ July 18 2017 :: bug fixes, documentation updates. $Revision$
++ July 18 2017 :: bug fixes, documentation updates. Revision: 11830
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- fixed bug in obs_impact_tool when generating the run-time table. specifying
@@ -491,9 +491,35 @@
names changed from 'restart' to 'state' for input and output files.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-+ MMMM DD 2017 :: next revision summary. Revision:
++ Aug 2 2017 :: single filenames, random distributions, bug fixes. $Revision$
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+- added code to support listing input and output filenames directly in the
+ namelist instead of having to go through an indirect text file. most useful
+ for programs that take a single input and output file, but works for all cases.
+
+- bug fix in location_io_mod.f90 that affected obs_seq_to_netcdf (error in adding
+ vertical location types to output file).
+
+- fix to convert_gpsro_bufr.f90 converter (GPS obs from BUFR files) that failed
+ if r8 defined to be r4.
+
+- added draws from gamma, inverse gamma, and exponential distributions to the
+ random sequence module.
+
+- various updates to the CAM scripts to work more smoothly with the most
+ recent CIME changes and DART Manhattan updates.
+
+- added QTY_CWP_PATH and QTY_CWP_PATH_ZERO to the default quantities list for
+ the obs_def_cwp_mod.f90 forward operator.
+
+- improved some error messages in the diagnostic matlab scripts
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++ MMM DD 2017 :: next revision summary. Revision:
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+
# <next few lines under version control, do not edit>
# $URL$
# $Revision$
Modified: DART/branches/coamps/assimilation_code/location/channel/location_mod.f90
===================================================================
--- DART/branches/coamps/assimilation_code/location/channel/location_mod.f90 2017-08-08 21:53:50 UTC (rev 11889)
+++ DART/branches/coamps/assimilation_code/location/channel/location_mod.f90 2017-08-08 21:56:53 UTC (rev 11890)
@@ -11,7 +11,7 @@
! Implements location interfaces for a 3d channel in X,Y,Z where X is periodic,
! Y has walls (limited domain), and Z is infinite
-use types_mod, only : r8, MISSING_R8, MISSING_I, PI, RAD2DEG, DEG2RAD
+use types_mod, only : r8, i8, MISSING_R8, MISSING_I, PI, RAD2DEG, DEG2RAD
use utilities_mod, only : register_module, error_handler, E_ERR, ascii_file_format, &
nc_check, E_MSG, open_file, close_file, set_output, &
logfileunit, nmlfileunit, find_namelist_in_file, &
@@ -20,7 +20,12 @@
use random_seq_mod, only : random_seq_type, init_random_seq, random_uniform
use obs_kind_mod, only : get_num_types_of_obs, get_name_for_type_of_obs
use mpi_utilities_mod, only : my_task_id, task_count
+use ensemble_manager_mod, only : ensemble_type
+use default_location_mod, only : has_vertical_choice, vertical_localization_on, &
+ get_vertical_localization_coord, &
+ set_vertical_localization_coord
+
implicit none
private
More information about the Dart-dev
mailing list