At present (1 November) these instructions have been confirmed to work on Windows, Linux, Intel-based Macs, and ARM-based Macs (M1, M2). Nevertheless, each system is different and your experience may differ. If you experience problems, please get in touch.
The purpose of the workshop is be able to operate the TMM implementation developed within OceanICU. It will be possible to use a variety of biogeochemical models, including MOPS, ERSEM, PISCES. While we will visualize selected results, this workshop is not aimed at in-depth result evaluation or validation.
The aim is that all participants will be able to run a TMM simulation on "private" hardware - i.e. a personal laptop/workstation or HPC-system. To make this possible, a few tasks will have to be done by each participant before the workshop starts.
We will work in a terminal window while installing necessary files and running TMM. This looks different on different platforms:
- On Windows, use the "Anaconda prompt" from the start menu (instructions on how to install that below).
We will be editing Python scripts with model configurations. This can be done with many different editors, e.g., Visual Studio Code, Notepad on Windows, vi
on Linux/Mac. We recommend using one you are already familiar with.
This does not require administrator or root permissions.
-
Ensure you have Anaconda:
- Linux/Mac: execute
conda --version
in a terminal - Windows: look for “Anaconda prompt” in the start menu
If you do not have Anaconda, install Miniconda on Linux, Windows, or Mac.
- Linux/Mac: execute
-
Create an isolated
fabmos
environment with the model and visualization tools:conda create -n fabmos -c bolding-bruggeman -c conda-forge fabmos oceanicu
If you experience any issue with the above, we recommend you first execute
conda update conda
to ensure your conda is up to date. Should this fail because of lack of permissions, we recommend you install Miniconda as described under the previous option. After you have an up-to-date conda, retry theconda create ...
command.
A number of different TMM configurations have been made available by Samar Khatiwala here. For this workshop we suggest to use the MITgcm_2.8deg configuration. Download and un-tar the configuration and record the path to folder as it will be used later.
The installed version of FABM-OS contains a number of biogeochemical models. This zip file contains the necessary FABM configuration files and FABM-OS (TMM) run-scripts.
Please download and unzip the file and record where it has been un-zipped.
If the above has succeeded, you are ready for the workshop. Instructions below are for reference during and after the workshop only.
Every time you open a terminal window, activate the fabmos
environment:
conda activate fabmos
Change folder to where the TMM configuration was un-packed - e.g.:
cd /data/kb/OceanICU/MITgcm_2.8deg
The TMM code is prepared for parallel operation - i.e. utilize a number of cores available on the computer system. This is achieved by using the Message Passing Interface (MPI) standard. Operating MPI enabled programs has a slight different syntax as shown in the example below:
mpiexec -n 4 python ~/OceanICU/TMM-workshop/examples/tmm/MOPS.py
This will run the TMM configuration from the Python script MOPS.py on 4 processes in parallel.
The TMM implementation uses domain decomposition to split the workload between the available resources.
When the program finishes a NetCDF formatted output file have been created and can be viewed by a number of different visualization tools. For instance, PyNcView, which has been installed as part of 1.2.