-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from CyprienBosserelle/development
Development for tsunami modelling for release
- Loading branch information
Showing
19 changed files
with
3,166 additions
and
512 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
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
#!/bin/bash | ||
|
||
|
||
|
||
#modify the xyz input: remove header and make zb positive up | ||
#awk '{if(NR>1){print($1,$2,$3*-1)}}' ../Data/MonaiValley_Bathymetry.txt > BathyXYZ4Basilisk.txt | ||
|
||
#set up the grid | ||
#xyz2kdt -v Monai_Bath < BathyXYZ4Basilisk.txt | ||
|
||
######## | ||
## BASELINE MODEL | ||
|
||
rm Tut.exe | ||
rm output.nc | ||
#Compile Monai.c | ||
#qcc Monai_Cart.c -O2 -lm -lkdt -L$BASILISK/kdt/ -o Monai.exe | ||
|
||
#-fopenmp -O2 -lm -l:libnetcdf.so.7 -lkdt -L$BASILISK/kdt/ -L/usr/lib64/ | ||
qcc Tutorial_Cart.c -O2 -lm -lnetcdf -lkdt -L$BASILISK/kdt/ -L/usr/lib64/ -o Tut.exe | ||
|
||
|
||
#Run Monai | ||
./Tut.exe |
Oops, something went wrong.