Skip to content

Commit 4c3c42e

Browse files
committed
turn on volume conservation at the boundaries
1 parent 9457bcb commit 4c3c42e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ cd wp6.2-demonstrator
99

1010
Slurm examples:
1111
```shell
12-
./scripts/python/mkslurm_immerse -S 24 -s 16 -m 1 -C 5504 -g 0 -a n01-CLASS -j WP6.2 --gnu > scripts/run_nemo.slurm
13-
./scripts/python/mkslurm_immerse -S 24 -s 16 -m 1 -C 3712 -g 0 -a n01-CLASS -q short --gnu > scripts/run_nemo-short.slurm
12+
./scripts/python/mkslurm_immerse -S 24 -s 16 -m 1 -C 5504 -g 0 -a n01-CLASS -j WP6.2 -t 1-00:00:00 --gnu > scripts/run_nemo.slurm
13+
./scripts/python/mkslurm_immerse -S 24 -s 16 -m 1 -C 3712 -g 0 -a n01-CLASS -q short -t 0-00:20:00 --gnu > scripts/run_nemo-short.slurm
1414
```
1515

1616
## Setup

cfgs/AGRIF_QCO/MY_SRC/agrif_oce.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ MODULE agrif_oce
4343
LOGICAL , PUBLIC :: spongedoneU = .FALSE. !: dynamics sponge layer indicator
4444
LOGICAL , PUBLIC :: lk_agrif_fstep = .TRUE. !: if true: first step
4545
LOGICAL , PUBLIC :: lk_agrif_debug = .FALSE. !: if true: print debugging info
46-
LOGICAL , PUBLIC :: lk_div_cons = .FALSE. !: if true, volume conserving formulation in ghost zone
46+
LOGICAL , PUBLIC :: lk_div_cons = .TRUE. !: if true, volume conserving formulation in ghost zone
4747
LOGICAL , PUBLIC :: lk_tint2d_constant = .FALSE. !: Constant, conservative temporal interpolation of barotropic fluxes
4848
LOGICAL , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) :: tabspongedone_tsn
4949
# if defined key_top

scripts/run_nemo-short.slurm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/bash
22
#SBATCH --job-name=nemo_test
3-
#SBATCH --time=00:10:00
3+
#SBATCH --time=0-00:20:00
44
#SBATCH --account=n01-CLASS
55
#SBATCH --partition=standard
66
#SBATCH --qos=short
77
#SBATCH --nodes=32
88
#SBATCH --ntasks-per-core=1
9-
# Created by: mkslurm_immerse -S 24 -s 16 -m 1 -C 3712 -g 0 -D . --alternate-dirs False -N 128 -t 00:10:00 -a n01-CLASS -j nemo_test -p standard -q short -v False --gnu True
9+
# Created by: mkslurm_immerse -S 24 -s 16 -m 1 -C 3712 -g 0 -D . --alternate-dirs False -N 128 -t 0-00:20:00 -a n01-CLASS -j nemo_test -p standard -q short -v False --gnu True
1010

1111
# ========================================================
1212
# PARAMETERS TO SET

scripts/run_nemo.slurm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/bash
22
#SBATCH --job-name=WP6.2
3-
#SBATCH --time=00:10:00
3+
#SBATCH --time=1-00:00:00
44
#SBATCH --account=n01-CLASS
55
#SBATCH --partition=standard
66
#SBATCH --qos=standard
77
#SBATCH --nodes=46
88
#SBATCH --ntasks-per-core=1
9-
# Created by: mkslurm_immerse -S 24 -s 16 -m 1 -C 5504 -g 0 -D . --alternate-dirs False -N 128 -t 00:10:00 -a n01-CLASS -j WP6.2 -p standard -q standard -v False --gnu True
9+
# Created by: mkslurm_immerse -S 24 -s 16 -m 1 -C 5504 -g 0 -D . --alternate-dirs False -N 128 -t 1-00:00:00 -a n01-CLASS -j WP6.2 -p standard -q standard -v False --gnu True
1010

1111
# ========================================================
1212
# PARAMETERS TO SET

0 commit comments

Comments
 (0)