[Dart-dev] DART/branches Revision: 11573

dart at ucar.edu dart at ucar.edu
Mon May 1 16:48:11 MDT 2017


hendric at ucar.edu
2017-05-01 16:48:11 -0600 (Mon, 01 May 2017)
74
changing RAW_STATE_VARIABLE to QTY_RAW_STATE VARIABLE where appropriate.




Modified: DART/branches/model_mod_changes/models/9var/model_mod.f90
===================================================================
--- DART/branches/model_mod_changes/models/9var/model_mod.f90	2017-05-01 22:40:46 UTC (rev 11572)
+++ DART/branches/model_mod_changes/models/9var/model_mod.f90	2017-05-01 22:48:11 UTC (rev 11573)
@@ -22,7 +22,7 @@
 use location_io_mod,       only : nc_write_location_atts, nc_get_location_varids, &
                                   nc_write_location
 
-use obs_kind_mod,          only : RAW_STATE_VARIABLE
+use obs_kind_mod,          only : QTY_STATE_VARIABLE
 
 use ensemble_manager_mod,  only : ensemble_type
 
@@ -431,7 +431,7 @@
 integer,             intent(out), optional :: var_type
 
 location = state_loc(index_in)
-if (present(var_type)) var_type = RAW_STATE_VARIABLE    ! default variable type
+if (present(var_type)) var_type = QTY_STATE_VARIABLE    ! default variable quantity
 
 end subroutine get_state_meta_data
 

Modified: DART/branches/model_mod_changes/models/forced_lorenz_96/model_mod.f90
===================================================================
--- DART/branches/model_mod_changes/models/forced_lorenz_96/model_mod.f90	2017-05-01 22:40:46 UTC (rev 11572)
+++ DART/branches/model_mod_changes/models/forced_lorenz_96/model_mod.f90	2017-05-01 22:48:11 UTC (rev 11573)
@@ -27,7 +27,7 @@
 
 use default_model_mod,     only : end_model, pert_model_copies, nc_write_model_vars
 
-use         obs_kind_mod,  only : RAW_STATE_VARIABLE
+use         obs_kind_mod,  only : QTY_STATE_VARIABLE
 
 use ensemble_manager_mod,  only : ensemble_type
 

Modified: DART/branches/model_mod_changes/models/lorenz_04/model_mod.f90
===================================================================
--- DART/branches/model_mod_changes/models/lorenz_04/model_mod.f90	2017-05-01 22:40:46 UTC (rev 11572)
+++ DART/branches/model_mod_changes/models/lorenz_04/model_mod.f90	2017-05-01 22:48:11 UTC (rev 11573)
@@ -23,7 +23,7 @@
 use  netcdf_utilities_mod, only : nc_add_global_attribute, nc_sync, &
                                   nc_add_global_creation_time, nc_redef, nc_enddef
 
-use          obs_kind_mod, only : RAW_STATE_VARIABLE
+use          obs_kind_mod, only : QTY_STATE_VARIABLE
 
 use  ensemble_manager_mod, only : ensemble_type
 
@@ -546,7 +546,7 @@
 
 !------------------------------------------------------------------
 !> Given an integer index into the state vector structure, returns the
-!> associated location and optionally type.
+!> associated location and optionally quantity.
 
 
 subroutine get_state_meta_data(index_in, location, var_type)
@@ -556,7 +556,7 @@
 integer,             intent(out), optional :: var_type                                      
 
 location = state_loc(index_in)
-if (present(var_type)) var_type = RAW_STATE_VARIABLE    ! default variable type
+if (present(var_type)) var_type = QTY_STATE_VARIABLE    ! default variable quantity
 
 end subroutine get_state_meta_data
 

Modified: DART/branches/model_mod_changes/models/lorenz_63/model_mod.f90
===================================================================
--- DART/branches/model_mod_changes/models/lorenz_63/model_mod.f90	2017-05-01 22:40:46 UTC (rev 11572)
+++ DART/branches/model_mod_changes/models/lorenz_63/model_mod.f90	2017-05-01 22:48:11 UTC (rev 11573)
@@ -32,7 +32,7 @@
 use location_io_mod,      only :  nc_write_location_atts, nc_get_location_varids, &
                                   nc_write_location
 
-use         obs_kind_mod,  only : RAW_STATE_VARIABLE
+use         obs_kind_mod,  only : QTY_STATE_VARIABLE
 
 use ensemble_manager_mod,  only : ensemble_type
 
@@ -293,7 +293,7 @@
 integer,             intent(out), optional :: var_type
 
 location = state_loc(index_in)
-if (present(var_type)) var_type = RAW_STATE_VARIABLE    ! default variable type
+if (present(var_type)) var_type = QTY_STATE_VARIABLE    ! default variable quantity
 
 end subroutine get_state_meta_data
 

Modified: DART/branches/model_mod_changes/models/lorenz_84/model_mod.f90
===================================================================
--- DART/branches/model_mod_changes/models/lorenz_84/model_mod.f90	2017-05-01 22:40:46 UTC (rev 11572)
+++ DART/branches/model_mod_changes/models/lorenz_84/model_mod.f90	2017-05-01 22:48:11 UTC (rev 11573)
@@ -29,7 +29,7 @@
 
 use default_model_mod,     only : end_model, pert_model_copies, nc_write_model_vars
 
-use         obs_kind_mod,  only : RAW_STATE_VARIABLE


More information about the Dart-dev mailing list