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

Include a path to boundary conditions

parent c2e15b42
No related branches found
No related tags found
No related merge requests found
simulation:
dynamics_grid_filename: icon_grid_0047_R19B07_L.nc
radiation_grid_filename: icon_grid_0046_R19B06_LR.nc
external_parameters_filename: icon_extpar_0047_R19B07_L_20220601_tiles.nc
lateral_boundary_grid_filename: icon_grid_0047_R19B07_L_lbc.nc
date_format: '%Y-%m-%dT%H:%M:%SZ'
namelist_paths:
# Path to the namelists
master: "%HPCROOTDIR%/proj/namelists/common/icon_master.namelist"
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"
files_to_clean: "*.nc"
initial_conditions:
# Where are we getting our initial data from?
local: true
parent_folder: /archive/meteo/w2w-p2/B3/ICON-D2_oper_ICLBC/
member: 1
boundary_conditions:
# Where are we getting our initial data from?
local: true
parent_folder: /archive/meteo/w2w-p2/B3/ICON-D2_oper_ICLBC/
member: 1
......@@ -4,6 +4,7 @@
WORKDIR=%HPCROOTDIR%
DYNAMICS_GRID_FILENAME=%simulation.dynamics_grid_filename%
RADIATION_GRID_FILE=%simulation.radiation_grid_filename%
BOUNDARY_GRID_FILE=%simulation.lateral_boundary_grid_filename%
EXTERNAL_PARAMETERS_FILE=%simulation.external_parameters_filename%
......@@ -33,13 +34,14 @@ function download_file() {
BASEURL=http://icon-downloads.mpimet.mpg.de/grids/public/edzw
download_file $BASEURL/${DYNAMICS_GRID_FILENAME}
download_file $BASEURL/${RADIATION_GRID_FILE}
download_file $BASEURL/${BOUNDARY_GRID_FILE}
download_file $BASEURL/${EXTERNAL_PARAMETERS_FILE}
# Link input for radiation
ln -sf "${ICON_DATA_PATH}/rrtmg_lw.nc" .
ln -sf "${ICON_DATA_PATH}/dmin_wetgrowth_lookup.dat" .
ln -sf "${ICON_DATA_PATH}/ECHAM6_CldOptProps.nc" .
ln -sf "${ICON_BASE_PATH}/run/ana_varnames_map_file.txt" .
# Change permissions to read only.
chmod 440 ./*
\ No newline at end of file
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