-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9dd39f7
commit 4743254
Showing
3 changed files
with
20 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
module load gcc/11.3.0 | ||
module load cuda/11.7 | ||
module load cuda/12.2 | ||
module load openmpi/4.1.4 | ||
module load hdf5/1.12.2 netcdf/4.9.0 | ||
export MPICC=$(which mpicc) | ||
setenv MPICC $(which mpicc) | ||
|
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,15 @@ | ||
### This script can get all the required input data for running the experiment MOM6SIS2COBALT.single_column | ||
(mkdir -p datasets/grids; cd datasets/grids; wget ftp://ftp.gfdl.noaa.gov/pub/Niki.Zadeh/OM4_datasets/OM4_single_column_grid.tar.gz; tar zxvf OM4_single_column_grid.tar.gz) | ||
|
||
#### IC | ||
(mkdir -p datasets/; cd datasets/; wget ftp://ftp.gfdl.noaa.gov/perm/Alistair.Adcroft/MOM6-testing/obs.tgz; tar zxvf obs.tgz) | ||
|
||
#### CORE2 NYF Forcing files(854MB) | ||
(mkdir -p datasets/forcings; cd datasets/forcings; wget ftp://ftp.gfdl.noaa.gov/perm/Alistair.Adcroft/MOM6-testing/CORE.tgz; tar xvf CORE.tgz) | ||
|
||
#### Oceanbiogeochemistry initialization/flux dataset (963MB) | ||
Needed only for COBALT experiments | ||
(mkdir -p datasets/OceanBGC_dataset; cd datasets/OceanBGC_dataset; wget ftp://ftp.gfdl.noaa.gov/pub/Niki.Zadeh/OM4_datasets/OceanBGC_dataset.tar.gz; tar zxvf OceanBGC_dataset.tar.gz) | ||
|
||
#### Check the required input data | ||
(cd MOM6SIS2COBALT.single_column; find INPUT/ -xtype l) |