[Dart-dev] DART/branches Revision: 11009

dart at ucar.edu dart at ucar.edu
Tue Feb 7 10:43:04 MST 2017


hendric at ucar.edu
2017-02-07 10:43:04 -0700 (Tue, 07 Feb 2017)
66
fixing bgrid pathnames and programs to compile with quickbuild. 




Modified: DART/branches/rma_single_file/integrate_model/integrate_model.f90
===================================================================
--- DART/branches/rma_single_file/integrate_model/integrate_model.f90	2017-02-07 17:39:22 UTC (rev 11008)
+++ DART/branches/rma_single_file/integrate_model/integrate_model.f90	2017-02-07 17:43:04 UTC (rev 11009)
@@ -133,7 +133,7 @@
 
    !------------------- Read restart from file ----------------------
    
-   call io_filenames_init(input_file_info, 1, single_file=.false.)
+   call io_filenames_init(input_file_info, 1, cycling=.true., single_file=.true.)
    call set_file_metadata(input_file_info, 1, 'temp', 'ic', 'initial condition')
    call set_io_copy_flag( input_file_info, 1, READ_COPY) 
    
@@ -151,7 +151,7 @@
    ! If the model time is past the obs set time, just need to skip
    if (trace_execution) write(*,*) 'calling advance_state if needed'
 
-   call io_filenames_init(output_file_info, 1, single_file=.false.)
+   call io_filenames_init(output_file_info, 1, cycling=.true., single_file=.true.)
    call set_file_metadata(output_file_info, 1, 'temp', 'ud', 'advanced member')
    call set_io_copy_flag( output_file_info, 1, WRITE_COPY) 
 

Modified: DART/branches/rma_single_file/models/bgrid_solo/work/input.nml
===================================================================
--- DART/branches/rma_single_file/models/bgrid_solo/work/input.nml	2017-02-07 17:39:22 UTC (rev 11008)
+++ DART/branches/rma_single_file/models/bgrid_solo/work/input.nml	2017-02-07 17:43:04 UTC (rev 11009)
@@ -1,5 +1,6 @@
 &perfect_model_obs_nml
-   start_from_restart       = .false.,
+   start_from_restart       = .true.,
+   output_restart           = .true.
    async                    = 0,
    init_time_days           = 0,
    init_time_seconds        = 0,
@@ -8,7 +9,7 @@
    last_obs_days            = -1,
    last_obs_seconds         = -1,
    output_interval          = 1,
-   restart_in_file_names    = "perfect_ics.nc",
+   restart_in_file_names    = "perfect_input.nc",
    restart_out_file_names   = "perfect_restart.nc",
    obs_seq_in_file_name     = "obs_seq.in",
    obs_seq_out_file_name    = "obs_seq.out",
@@ -212,6 +213,7 @@
    output_box_info             = .false.  /
 
 &utilities_nml
+   print_debug = .false.
    TERMLEVEL = 2,
    module_details = .false.,
    logfilename = 'dart_log.out',

Modified: DART/branches/rma_single_file/models/bgrid_solo/work/path_names_create_obs_sequence
===================================================================
--- DART/branches/rma_single_file/models/bgrid_solo/work/path_names_create_obs_sequence	2017-02-07 17:39:22 UTC (rev 11008)
+++ DART/branches/rma_single_file/models/bgrid_solo/work/path_names_create_obs_sequence	2017-02-07 17:43:04 UTC (rev 11009)
@@ -8,6 +8,7 @@
 io/direct_netcdf_mod.f90
 io/io_filenames_mod.f90
 io/state_structure_mod.f90
+io/state_space_diag_mod.f90
 io/state_vector_io_mod.f90
 location/threed_sphere/location_mod.f90
 models/bgrid_solo/fms_src/atmos_bgrid/driver/solo/atmosphere.f90

Modified: DART/branches/rma_single_file/models/bgrid_solo/work/path_names_integrate_model
===================================================================
--- DART/branches/rma_single_file/models/bgrid_solo/work/path_names_integrate_model	2017-02-07 17:39:22 UTC (rev 11008)
+++ DART/branches/rma_single_file/models/bgrid_solo/work/path_names_integrate_model	2017-02-07 17:43:04 UTC (rev 11009)
@@ -10,6 +10,7 @@
 io/dart_time_io_mod.f90
 io/direct_netcdf_mod.f90
 io/io_filenames_mod.f90
+io/state_space_diag_mod.f90
 io/state_structure_mod.f90
 io/state_vector_io_mod.f90
 location/threed_sphere/location_mod.f90


More information about the Dart-dev mailing list