I am trying to set up and run a regional MPAS domain.
I have the following for my "india" domain:
My trouble is that I do not see how to generate india.lbc.nc. The only changes that I make from the previous run of init_atmosphere (which made the initial condition file) is to the namelist file (the case went from 7 to 9, and the start and stop dates are different):
namelist.init_atmosphere:
Here is the streams file for init_atmosphere. This worked OK for generating the IC files.
When I set the immutable_stream (name input) to the static file, I am told that I need vertical information. When I set the immutable stream (name input) to the init file, I am told that I cannot have input and output be the same file.
I have the following for my "india" domain:
- 1. india.grid.nc
2. india.static.nc
3. india.graph.info
- 4. india.graph.info.part.36
- 5. india.init.nc
My trouble is that I do not see how to generate india.lbc.nc. The only changes that I make from the previous run of init_atmosphere (which made the initial condition file) is to the namelist file (the case went from 7 to 9, and the start and stop dates are different):
namelist.init_atmosphere:
Code:
&nhyd_model
config_init_case = 9
config_start_time = '2020-10-21_12:00:00'
config_stop_time = '2020-10-22_12:00:00'
Here is the streams file for init_atmosphere. This worked OK for generating the IC files.
Code:
<streams>
<immutable_stream name="input"
type="input"
filename_template="india.static.nc"
input_interval="initial_only" />
<immutable_stream name="output"
type="output"
filename_template="india.init.nc"
packages="initial_conds"
output_interval="initial_only" /
<immutable_stream name="surface"
type="output"
filename_template="x1.40962.sfc_update.nc"
filename_interval="none"
packages="sfc_update"
output_interval="86400" />
<immutable_stream name="lbc"
type="output"
filename_template="india.lbc.$Y-$M-$D_$h.$m.$s.nc"
filename_interval="output_interval"
packages="lbcs"
output_interval="3:00:00" />
</streams>
When I set the immutable_stream (name input) to the static file, I am told that I need vertical information. When I set the immutable stream (name input) to the init file, I am told that I cannot have input and output be the same file.