[Dart-dev] DART/branches Revision: 10963

dart at ucar.edu dart at ucar.edu
Fri Jan 27 13:08:52 MST 2017


thoar at ucar.edu
2017-01-27 13:08:52 -0700 (Fri, 27 Jan 2017)
74
Renaming file so it doesn't clash with the one created by quickbuild.csh




Copied: DART/branches/rma_trunk/harnesses/filename_harness/input.nml (from rev 10962, DART/branches/rma_trunk/harnesses/filename_harness/input.nml.test_filenames_default)
===================================================================
--- DART/branches/rma_trunk/harnesses/filename_harness/input.nml	                        (rev 0)
+++ DART/branches/rma_trunk/harnesses/filename_harness/input.nml	2017-01-27 20:08:52 UTC (rev 10963)
@@ -0,0 +1,182 @@
+&assim_model_nml
+   write_binary_restart_files = .true.,
+   netCDF_large_file_support  = .false.
+  /
+
+
+# With a deterministic filter (filter_kind == 1 or 8)
+# and a deterministic inflation (filter_nml:inf_deterministic == .true.)
+# sort_obs_inc is not needed and is expensive. Should be .false.
+
+&assim_tools_nml
+   filter_kind                     = 1,
+   cutoff                          = 0.2,
+   sort_obs_inc                    = .false.,
+   spread_restoration              = .false.,
+   sampling_error_correction       = .false.,
+   adaptive_localization_threshold = -1,
+   adaptive_cutoff_floor           = -1.0,
+   output_localization_diagnostics = .false.,
+   localization_diagnostics_file   = "localization_diagnostics",
+   print_every_nth_obs             = 0,
+   rectangular_quadrature          = .true.,
+   gaussian_likelihood_tails       = .false.,
+   close_obs_caching               = .true.,
+   allow_missing_in_clm            = .false.
+/
+
+# specify these in the same order, the same number of items
+#   special_localization_obs_types  = "",
+#   special_localization_cutoffs    = -1,
+
+&cov_cutoff_nml
+   select_localization = 1  /
+
+&ensemble_manager_nml
+   single_restart_file_in  = .true.,
+   single_restart_file_out = .true.,
+   perturbation_amplitude  = 0.2,
+   layout = 1,
+   tasks_per_node = 1,
+   communication_configuration = 1,
+   flag_unneeded_transposes = .false.,
+   debug = .false.
+ /
+
+&location_nml
+   horiz_dist_only                 = .true.,
+   vert_normalization_pressure     = 100000.0, 
+   vert_normalization_height       = 10000.0,
+   vert_normalization_level        = 20.0,
+   vert_normalization_scale_height = 5.0,
+   approximate_distance            = .false.,
+   nlon                            = 71,
+   nlat                            = 36,
+   output_box_info                 = .false.,
+   special_vert_normalization_obs_types     = ''
+   special_vert_normalization_pressures     = 100000.0
+   special_vert_normalization_heights       = 10000.0
+   special_vert_normalization_levels        = 20.0
+   special_vert_normalization_scale_heights = 5.0
+/
+
+
+# Notes for model_nml:
+# (1) vert_localization_coord must be one of:
+#     1 = model level
+#     2 = pressure
+#     3 = height
+# (2) see bottom of this file for explanations of polar, periodic_x, 
+#     periodic_y, and scm
+# (3) calendar = 3 is GREGORIAN, which is what WRF uses.
+# (4) if 'default_state_variables' is .true. the model_mod.f90 code will
+#     fill the state variable table with the following wrf vars: 
+#        U, V, W, PH, T, MU
+#     you must set it to false before you change the value 
+#     of 'wrf_state_variables' and have it take effect.
+# (5) the format for 'wrf_state_variables' is an array of 5 strings:
+#     wrf netcdf variable name, dart KIND_xxx string, type string (must be 
+#     unique, will soon be obsolete, we hope), 'UPDATE', and '999' if the 
+#     array is part of all domains.  otherwise, it is a string with the domain
+#     numbers (e.g. '12' for domains 1 and 2, '13' for domains 1 and 3).
+#   example:
+# wrf_state_variables='U','KIND_U_WIND_COMPONENT','TYPE_U','UPDATE','999',
+#                     'V','KIND_V_WIND_COMPONENT','TYPE_V','UPDATE','999',
+#                     'W','KIND_VERTICAL_VELOCITY','TYPE_W','UPDATE','999',
+#                     'T','KIND_POTENTIAL_TEMPERATURE','TYPE_T','UPDATE','999',
+#                     'PH','KIND_GEOPOTENTIAL_HEIGHT','TYPE_GZ','UPDATE','999',
+#                     'MU','KIND_PRESSURE','TYPE_MU','UPDATE','999',
+#                     'QVAPOR','KIND_VAPOR_MIXING_RATIO','TYPE_QV','UPDATE','999',
+#                     'QCLOUD','KIND_CLOUD_LIQUID_WATER','TYPE_QC','UPDATE','999',
+#                     'QRAIN','KIND_RAINWATER_MIXING_RATIO','TYPE_QR','UPDATE','999',
+#                     'U10','KIND_U_WIND_COMPONENT','TYPE_U10','UPDATE','999',
+#                     'V10','KIND_V_WIND_COMPONENT','TYPE_V10','UPDATE','999',
+#                     'T2','KIND_TEMPERATURE','TYPE_T2','UPDATE','999',
+#                     'TH2','KIND_POTENTIAL_TEMPERATURE','TYPE_TH2','UPDATE','999',
+#                     'Q2','KIND_SPECIFIC_HUMIDITY','TYPE_Q2','UPDATE','999',


More information about the Dart-dev mailing list