Docs integrate_model: "There is no namelist for this program."
https://docs.dart.ucar.edu/en/latest/assimilation_code/programs/integrate_model/integrate_model.html#namelist
However there is a namelist
|
! only read in if use_namelist is .true. -- ignored otherwise. |
|
namelist /integrate_model_nml/ & |
|
ic_file_name, ud_file_name, & |
|
trace_execution, is_model_advance_file, target_days, target_seconds |
|
! this must come AFTER the standard utils are initialized. |
|
! Read the integrate_model_nml namelist from input.nml if 'use_namelist' true. |
|
if (use_namelist) then |
|
call find_namelist_in_file('input.nml', 'integrate_model_nml', iunit) |
|
read(iunit, nml = integrate_model_nml, iostat = rc) |
|
call check_namelist_read(iunit, rc, "integrate_model_nml") |
|
else |
|
errstring = ' !must edit integrate_model/integrate_model.f90 to enable this namelist' |
|
if (do_nml_file()) write(nmlfileunit, '(A)') trim(errstring) |
|
if (do_nml_term()) write( * , '(A)') trim(errstring) |
|
endif |
Seems like a good candidate for command line argumenst
./integrate_model intial.nc next_step.nc
That way you could run multiple integrate_models in the same directory (see #969 for problems with all dart programs looking for input.nml)
Docs integrate_model: "There is no namelist for this program."
https://docs.dart.ucar.edu/en/latest/assimilation_code/programs/integrate_model/integrate_model.html#namelist
However there is a namelist
DART/assimilation_code/programs/integrate_model/integrate_model.f90
Lines 77 to 80 in 890a3be
DART/assimilation_code/programs/integrate_model/integrate_model.f90
Lines 96 to 106 in 890a3be
Seems like a good candidate for command line argumenst
./integrate_model intial.nc next_step.nc
That way you could run multiple integrate_models in the same directory (see #969 for problems with all dart programs looking for input.nml)