-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add config.yaml * Replace inidate with startdate_sim * Fix icontools scripts * Fix chem file names * Set correct input file names * Small fix for latbc grid file name * Add prefix to chem file * GitHub Action: Apply Pep8-formatting * Fix for chem file * GitHub Action: Apply Pep8-formatting * More corrections for chem file * GitHub Action: Apply Pep8-formatting * Fix art namelist * Fix art input folder * Update on how to build icon(-art) * Update .gitignore * Correcting case name in comment * Use config variables for num_procs in namelist * Fix ICON namelists * Remove config.py * Only process initial file if present * GitHub Action: Apply Pep8-formatting * Add start of icontools runscript to logger --------- Co-authored-by: github-actions <[email protected]>
- Loading branch information
Showing
14 changed files
with
224 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ input/ | |
output/ | ||
work/ | ||
src/*/ | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Configuration file for the 'icon-art-oem-test' case with ICON | ||
|
||
model: icon-art-oem | ||
constraint: gpu | ||
run_on: cpu | ||
compute_queue: normal | ||
ntasks_per_node: 12 | ||
restart_step: PT6H | ||
startdate: 2018-01-01T00:00:00Z | ||
enddate: 2018-01-01T12:00:00Z | ||
|
||
eccodes_dir: ./input/eccodes_definitions | ||
iconremap_bin: iconremap | ||
iconsub_bin: iconsub | ||
latbc_filename: ifs_<y><m><d><h>_lbc.nc | ||
inidata_prefix: ifs_init_ | ||
inidata_nameformat: '%Y%m%d%H' | ||
inidata_filename_suffix: .nc | ||
output_filename: icon-art-oem-test | ||
filename_format: <output_filename>_DOM<physdom>_<ddhhmmss> | ||
lateral_boundary_grid_order: lateral_boundary | ||
art_input_folder: ./input/icon-art-oem/ART | ||
|
||
meteo: | ||
dir: ./input/meteo | ||
prefix: ifs_ | ||
nameformat: '%Y%m%d%H' | ||
suffix: .grb | ||
inc: 3 | ||
|
||
chem: | ||
dir: ./input/icon-art-oem/chem | ||
prefix: cams_gqpe_ | ||
nameformat: '%Y%m%d_%H' | ||
suffix: .grb | ||
inc: 3 | ||
|
||
icontools_runjobs: | ||
- icontools_remap_ic_runjob.cfg | ||
- icontools_remap_00_lbc_runjob.cfg | ||
- icontools_remap_lbc_rest_runjob.cfg | ||
- icontools_remap_ic_chem_runjob.cfg | ||
- icontools_remap_lbc_chem_runjob.cfg | ||
|
||
input_files: | ||
radiation_grid_filename: ./input/icon-art-oem/grid/testcase_DOM01.parent.nc | ||
dynamics_grid_filename: ./input/icon-art-oem/grid/testcase_DOM01.nc | ||
map_file_latbc: ./input/icon-art-oem/grid/map_file.latbc | ||
lateral_boundary_grid: ./input/icon-art-oem/grid/lateral_boundary.grid.nc | ||
extpar_filename: ./input/icon-art-oem/grid/external_parameter_icon_testcase_DOM01_tiles.nc | ||
cldopt_filename: ./input/icon-art-oem/rad/rrtm_cldopt.nc | ||
lrtm_filename: ./input/icon-art-oem/rad/rrtmg_lw.nc | ||
map_file_ana: ./input/icon-art-oem/mapping/map_file.ana | ||
chemtracer_xml_filename: ./input/icon-art-oem/XML/tracers_oh_pntsrc.xml | ||
pntSrc_xml_filename: ./input/icon-art-oem/XML/pntSrc_example.xml | ||
oem_gridded_emissions_nc: ./input/icon-art-oem/OEM/tno_3cat.nc | ||
oem_vertical_profiles_nc: ./input/icon-art-oem/OEM/vertical_profiles.nc | ||
oem_hourofday_nc: ./input/icon-art-oem/OEM/hourofday.nc | ||
oem_dayofweek_nc: ./input/icon-art-oem/OEM/dayofweek.nc | ||
oem_monthofyear_nc: ./input/icon-art-oem/OEM/monthofyear.nc | ||
|
||
icon: | ||
binary_file: ./src/icon-art/bin/icon | ||
runjob_filename: icon_runjob.cfg | ||
compute_queue: normal | ||
walltime: '00:10:00' | ||
np_tot: 8 | ||
np_io: 1 | ||
np_restart: 1 | ||
np_prefetch: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.