From 66d6862dace90a34117c96d30f45985ace549732 Mon Sep 17 00:00:00 2001 From: Alexander Mahura Date: Mon, 29 Apr 2024 01:30:33 +0300 Subject: [PATCH] updated README-file & load_modules.sh --- README.md | 4 ++-- load_modules.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100755 load_modules.sh diff --git a/README.md b/README.md index 89710e89b..92c44dadb 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ git checkout newbranch ``` This will clone the "newbranch"-branch of the "obsall" repository. -**Modules**: to set environment in order to run OBSALL application in LUMI: +**Modules**: to set environment in order to run OBSALL application in LUMI: execute bash-script containing list of required modules (see below): `./load_modules.sh` ``` # Load modules for OBSALL Apps (required for SYNOP, RADSOUND, and SATELLITE Parts) module use /project/project_465000454/devaraju/modules/LUMI/23.03/C @@ -459,7 +459,7 @@ OBSALL: -**How to run:** runscript `run_obsall.py` is used to execute OBSALL application: +**How to run:** runscript `run_obsall.py` is used to execute OBSALL application: execute python script `python run_obsall.py`
``` diff --git a/load_modules.sh b/load_modules.sh new file mode 100755 index 000000000..2b40052ad --- /dev/null +++ b/load_modules.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +echo "#######################################################" +echo "### OBSALL Apps ###" +echo "### Loading required modules for application ###" +echo "### to set environment in order ###" +echo "### to run OBSALL Apps on Lumi HPC ###" +echo "#######################################################" + +# Load modules for OBSALL Apps + +module use /project/project_465000454/devaraju/modules/LUMI/23.03/C +module load LUMI/23.03 +module load partition/C +module load PrgEnv-gnu +module load ecCodes/2.32.0-cpeCray-23.03.lua +module load odb_api/0.18.1-cpeCray-23.03.lua +module load python-climatedt/3.11.3-cpeCray-23.03.lua +module load pyfdb/0.0.2-cpeCray-23.03.lua +module load cray-hdf5/1.12.2.3 +module load cray-netcdf/4.9.0.3 +module load rttov/13.2 +module load radsim/3.2 +module load fdb/5.11.94-cpeCray-23.03.lua +module load eckit/1.25.0-cpeCray-23.03.lua +module load metkit/1.11.0-cpeCray-23.03.lua + +## later upgrade OBSALL Apps for Polytope tool +## (required for SATELLITE observations) in Phase-2 + +module list + + -- GitLab