Skip to content

Commit f0e875c

Browse files
biweekly simus
1 parent 2106f3e commit f0e875c

16 files changed

Lines changed: 257 additions & 4 deletions
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
#SBATCH -t 6:00:00
3+
#SBATCH -N 1
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 7, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "tides", nmonth = 7, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1])'
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
#SBATCH -t 4:30:00
3+
#SBATCH -N 1
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 7, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [15])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "tides", nmonth = 7, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [15])'
11+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
#SBATCH -t 3:00:00
3+
#SBATCH -N 2
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 8, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1])'
10+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
#SBATCH -t 11:00:00
3+
#SBATCH -N 2
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 2, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 3, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
#SBATCH -t 9:00:00
3+
#SBATCH -N 1
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 4, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 5, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
11+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
#
3+
#SBATCH -t 9:00:00
4+
#SBATCH -p normal
5+
#SBATCH -N 1
6+
#SBATCH -o log.%j.o # the name of the file where the standard output will be written to. %j will be the jobid determined by SLURM
7+
#SBATCH -e log.%j.e # the name of the file where potential errors will be written to. %j will be the jobid determined by SLURM
8+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
9+
#SBATCH --mail-type=ALL
10+
11+
cd /nethome/gomez023/parcels_Azores/eNATL60/
12+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 6, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
13+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 10, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
14+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
#SBATCH -t 11:00:00
3+
#SBATCH -N 2
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 8, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [15])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 9, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
11+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 1, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
12+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
#
3+
#SBATCH -t 9:00:00
4+
#SBATCH -p normal
5+
#SBATCH -N 1
6+
#SBATCH -o log.%j.o # the name of the file where the standard output will be written to. %j will be the jobid determined by SLURM
7+
#SBATCH -e log.%j.e # the name of the file where potential errors will be written to. %j will be the jobid determined by SLURM
8+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
9+
#SBATCH --mail-type=ALL
10+
11+
cd /nethome/gomez023/parcels_Azores/eNATL60/
12+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 11, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
13+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "no_tides", nmonth = 12, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
14+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
#SBATCH -t 2:30:00
3+
#SBATCH -N 1
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "tides", nmonth = 8, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1])'
10+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
#SBATCH -t 11:00:00
3+
#SBATCH -N 2
4+
5+
#SBATCH --mail-user=l.gomeznavarro@uu.nl
6+
#SBATCH --mail-type=ALL
7+
8+
cd /nethome/gomez023/parcels_Azores/eNATL60/
9+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "tides", nmonth = 2, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
10+
python3 -c 'from parcels_azores_eNATL60_v02 import *; parcels_simu(tide_name = "tides", nmonth = 3, simu_length = 14., outname_ref = "_biweekly_hourly_BACK_v02", timestep=-5, start_days = [1,15])'
11+

0 commit comments

Comments
 (0)