-
Notifications
You must be signed in to change notification settings - Fork 0
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
Adam Tobias Blaker
committed
Dec 1, 2022
1 parent
458c826
commit a2e11fe
Showing
1 changed file
with
17 additions
and
2 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
```shell | ||
git clone [email protected]:NOC-MSM/Wishbone.git -b main | ||
cd Wishbone | ||
./setup -s Anemone | ||
./setup | ||
``` | ||
The setup script downloads nemo, compiles tools and configurations. | ||
|
||
|
@@ -16,7 +16,7 @@ cd nemo/cfgs/GLOBAL_QCO/eORCA025 | |
sbatch run_nemo1326_24x_v2.slurm | ||
``` | ||
|
||
There are a few variables to set in `run_nemo1326_24x_v2.slurm`. For example, the following variables will generate a 2-hour simulation split in 1-hour jobs. | ||
To conduct a test run there are a few variables to set in `run_nemo1326_24x_v2.slurm`. For example, the following variables will generate a 2-hour simulation split in 1-hour jobs. | ||
```bash | ||
# ======================================================== | ||
# PARAMETERS TO SET | ||
|
@@ -37,3 +37,18 @@ SCRIPTNAME=run_nemo1326_24x_v2.slurm | |
Resolution: | ||
- Horizontal: 1/4° | ||
- Vertical: 75 levels | ||
|
||
|
||
## Spinup | ||
|
||
Run 4 cycles of 1958 forcing, resetting T and S to ICs at the start of each year: | ||
- In namelist_cfg set: nn_rstctl=0 and ln_reset_ts=.true. | ||
- In run_nemo1326_24x_v2.slurm set: FREQRST=-365 and LENGTH=-1460 | ||
|
||
The 4th pass constitutes the first year of the simulation. | ||
|
||
To continue: | ||
- In namelist_cfg set: nn_rstctl=2 and ln_reset_ts=.false. | ||
- In run_nemo1326_24x_v2.slurm set: FREQRST=-1461 and LENGTH=-17531 | ||
|
||
This will complete the simulation to end of 2002. |