[Dart-dev] DART/branches Revision: 11494

dart at ucar.edu dart at ucar.edu
Fri Apr 14 10:49:15 MDT 2017


hendric at ucar.edu
2017-04-14 10:49:14 -0600 (Fri, 14 Apr 2017)
148
was not using UPDATE or NO_COPY_BACK in add domain, so 
all of the variables were written our regardless of
what you had set in the model_mod_nml.




Modified: DART/branches/rma_output_files/models/wrf/model_mod.f90
===================================================================
--- DART/branches/rma_output_files/models/wrf/model_mod.f90	2017-04-14 16:46:59 UTC (rev 11493)
+++ DART/branches/rma_output_files/models/wrf/model_mod.f90	2017-04-14 16:49:14 UTC (rev 11494)
@@ -746,9 +746,10 @@
    ! add domain - not doing anything with domain_id yet so just overwriting it
    domain_id(id) = add_domain( 'wrfinput_d0'//idom, &
                            wrf%dom(id)%number_of_wrf_variables, &
-                           var_names  = netcdf_variable_names(1:wrf%dom(id)%number_of_wrf_variables), &
-                           clamp_vals = var_bounds_table(1:wrf%dom(id)%number_of_wrf_variables,:) )
-                          
+                           var_names   = netcdf_variable_names(1:wrf%dom(id)%number_of_wrf_variables), &
+                           clamp_vals  = var_bounds_table(1:wrf%dom(id)%number_of_wrf_variables,:), &
+                           update_list = var_update_list(1:wrf%dom(id)%number_of_wrf_variables) )
+
    if (debug) call state_structure_info(domain_id(id))
 
 enddo WRFDomains 


More information about the Dart-dev mailing list