-
Notifications
You must be signed in to change notification settings - Fork 1
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 #65 from ACCESS-NRI/59-historical-add-nc-conversion
Add netcdf conversion script to historical config
- Loading branch information
Showing
2 changed files
with
16 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
#PBS -l ncpus=1 | ||
#PBS -l mem=20GB | ||
#PBS -l jobfs=0GB | ||
#PBS -q normal | ||
#PBS -l walltime=00:40:00 | ||
#PBS -l wd | ||
|
||
module use /g/data/vk83/modules | ||
module load payu | ||
|
||
# Command below calls https://github.com/ACCESS-NRI/um2nc-standalone/blob/main/umpost/conversion_driver_esm1p5.py | ||
# By default UM atmosphere fields files are deleted after conversion to save space. | ||
# Remove --delete-ff command line option to retain original files for testing purposes | ||
esm1p5_convert_nc $PAYU_CURRENT_OUTPUT_DIR --delete-ff |