[Dart-dev] DART/branches Revision: 12481

dart at ucar.edu dart at ucar.edu
Mon Apr 2 11:23:30 MDT 2018


nancy at ucar.edu
2018-04-02 11:23:30 -0600 (Mon, 02 Apr 2018)
296
fix an error in the namelist defaults ('rk' is an 
advance method, not an interpolation type).  also
rearrange the namelist to have the more important
lists near the top and rearrange the items inside
the namelists to be clustered more by function, as
kevin did with the larger model namelists.




Modified: DART/branches/nsc_updates/models/null_model/work/input.nml
===================================================================
--- DART/branches/nsc_updates/models/null_model/work/input.nml	2018-04-02 17:22:08 UTC (rev 12480)
+++ DART/branches/nsc_updates/models/null_model/work/input.nml	2018-04-02 17:23:30 UTC (rev 12481)
@@ -1,7 +1,9 @@
 &perfect_model_obs_nml
-   read_input_state_from_file = .false.,
+   read_input_state_from_file = .true.,
    single_file_in             = .true.
    input_state_files          = "perfect_input.nc"
+   init_time_days             = 0,
+   init_time_seconds          = 0,
 
    write_output_state_to_file = .true.,
    single_file_out            = .true.
@@ -8,23 +10,21 @@
    output_state_files         = "perfect_output.nc"
    output_interval            = 1,
 
-   async                 = 0,
+   async                      = 0,
    adv_ens_command            = "./advance_model.csh",
 
    obs_seq_in_file_name       = "obs_seq.in",
    obs_seq_out_file_name      = "obs_seq.out",
-   init_time_days        = 0,
-   init_time_seconds     = 0,
-   first_obs_days        = -1,
-   first_obs_seconds     = -1,
-   last_obs_days         = -1,
-   last_obs_seconds      = -1,
+   first_obs_days             = -1,
+   first_obs_seconds          = -1,
+   last_obs_days              = -1,
+   last_obs_seconds           = -1,
 
-   trace_execution       = .false.,
+   trace_execution            = .false.,
    output_timestamps          = .false.,
-   print_every_nth_obs   = -1,
+   print_every_nth_obs        = -1,
    output_forward_op_errors   = .false.,
-   silence               = .false.,
+   silence                    = .false.,
    /
 
 &filter_nml
@@ -31,6 +31,8 @@
    single_file_in               = .true.,
    input_state_files            = 'filter_input.nc'
    input_state_file_list        = ''
+   init_time_days               = 0,
+   init_time_seconds            = 0,
 
    stages_to_write  = 'preassim', 'analysis', 'output'
 
@@ -46,7 +48,7 @@
 
    ens_size                     = 20,
    num_groups                   = 1,
-   perturb_from_single_instance = .true.,
+   perturb_from_single_instance = .false.,
    perturbation_amplitude       = 0.2,
    distributed_state            = .true.
 
@@ -55,9 +57,7 @@
 
    obs_sequence_in_name     = "obs_seq.out",
    obs_sequence_out_name    = "obs_seq.final",
-   num_output_obs_members       = 20,
-   init_time_days           = 0,
-   init_time_seconds        = 0,
+   num_output_obs_members   = 20,
    first_obs_days           = -1,
    first_obs_seconds        = -1,
    last_obs_days            = -1,
@@ -80,15 +80,19 @@
    silence                      = .false.,
    /
 
-&smoother_nml
-   num_lags              = 0,
-   start_from_restart    = .false.,
-   output_restart        = .false.,
-   restart_in_file_name  = 'smoother_ics',
-   restart_out_file_name = 'smoother_restart'
+&model_nml
+   model_size           = 2,
+   delta_t              = 0.05,
+   time_step_days       = 0,
+   time_step_seconds    = 3600
+   noise_amplitude      = 0.0
+   advance_method       = 'simple'
+   interpolation_method = 'standard'
    /
 
-&ensemble_manager_nml
+&obs_kind_nml
+   assimilate_these_obs_types = 'RAW_STATE_VARIABLE'
+   evaluate_these_obs_types   = ''
    /


More information about the Dart-dev mailing list