Skip to content
Snippets Groups Projects
Commit df8766e4 authored by Takumi.Matsunobu's avatar Takumi.Matsunobu
Browse files

correction in namelist

parent 06866908
No related branches found
No related tags found
No related merge requests found
Pipeline #19130 canceled
......@@ -12,7 +12,7 @@ simulation:
atmosphere: "%HPCROOTDIR%/proj/namelists/real-from-d2-ana/icon_atmosphere.namelist"
# List of output file names that will be copied (Wildcards * allowed)
output_file_names: "init_DOM01_ML_*.nc latbc_DOM01_ML_*.nc"
output_file_names: "idfrf*.nc"
files_to_clean: "*.nc"
initial_conditions:
......
......@@ -263,9 +263,6 @@
timedep_pert = 2
/
&gribout_nml
perturbationNumber = 9
/
! ----------------------------------------------- !
! --- ICON-D2: output fields - regular grid at pressure levels --- !
......
......@@ -62,5 +62,5 @@ if [ "${IC_DATA_IS_LOCAL}" != "True" ]; then
awk '{print $1}' fg_file.txt | xargs -I[] ln -sf [] .
# Change permissions to read only.
chmod 440 ./*
#chmod 440 ./*
fi
\ No newline at end of file
......@@ -114,7 +114,7 @@ if [ "${LBC_DATA_IS_LOCAL}" != "True" ]; then
#cp "${LBC_SOURCE}" "${LBC_FILE}"
# Change permissions to read only.
chmod 440 ./*
chmod 440 ${MEMBER_DIR}/latbc_*.grib
fi
\ No newline at end of file
......@@ -41,6 +41,9 @@ first_guess_filename = (
analysis_filename = RUNDIR / f"an_R19B07.{Chunk_START_DATE.strftime('%Y%m%d%H%M')}00_an.{MEMBER[1:]}"
analysis_inc_filename = RUNDIR / f"an_R19B07.{Chunk_START_DATE.strftime('%Y%m%d%H%M')}00_inc.{MEMBER[1:]}"
boundary_filename = RUNDIR / f"latbc_<dddhh>.{MEMBER}.grib"
# Read custom namelist parameters from configuration
atmosphere_namelist_string = """
%atmosphere_namelist%
......@@ -68,12 +71,12 @@ atmosphere_namelist_replacements = {
"extpar_filename": "%simulation.external_parameters_filename%",
},
"initicon_nml": {
"dwdfg_filename": first_guess_filename,
"dwdana_filename": analysis_inc_filename,
"dwdfg_filename": str(first_guess_filename),
"dwdana_filename": str(analysis_inc_filename),
},
"limarea_nml": {
"latbc_filename": "./icbc/M031/latbc_<dddhh>.grib",
"latbc_boundary_grid": "icon_grid_0047_R19B07_L_lbc.nc",
"latbc_filename": str(boundary_filename),
"latbc_boundary_grid": "%simulation.lateral_boundary_grid_filename%",
},
"nwp_phy_nml": {
"psp_rnd_seed": int(MEMBER[1:]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment