forked from ufs-community/ufs-weather-model
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send Evap rate from ATM to OCN (ufs-community#1812)
* send evap from atm * instead of converting from lat->evap in prep_ocn, send evap from atm directly. Sign change still needed. * turn off c48-5deg warm start test * disable hrrr tests on wcoss2
- Loading branch information
1 parent
24c51d1
commit 50db30e
Showing
14 changed files
with
10,875 additions
and
13,406 deletions.
There are no files selected for viewing
Submodule CMEPS
updated
2 files
+3 −3 | mediator/esmFldsExchange_nems_mod.F90 | |
+2 −3 | mediator/med_phases_prep_ocn_mod.F90 |
Submodule FV3
updated
3 files
+30 −22 | atmos_model.F90 | |
+177 −103 | cpl/module_block_data.F90 | |
+3 −1 | cpl/module_cplfields.F90 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export BL_DATE=20230623 | ||
export BL_DATE=20230705 | ||
|
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,21 @@ | ||
#!/bin/bash | ||
|
||
#PBS -o out | ||
#PBS -e err | ||
#PBS -N @[JBNME] | ||
#PBS -A @[ACCNR] | ||
#PBS -q @[QUEUE] | ||
#PBS -l select=1:ncpus=8:mpiprocs=1:mem=32G | ||
#PBS -l walltime=00:45:00 | ||
|
||
set -eux | ||
|
||
cd $PBS_O_WORKDIR | ||
|
||
echo -n " $( date +%s )," > job_timestamp.txt | ||
echo "Compile started: " `date` | ||
|
||
@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] | ||
|
||
echo "Compile ended: " `date` | ||
echo -n " $( date +%s )," >> job_timestamp.txt |
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,36 @@ | ||
#!/bin/bash | ||
|
||
#PBS -o out | ||
#PBS -e err | ||
#PBS -N @[JBNME] | ||
#PBS -A @[ACCNR] | ||
#PBS -q @[QUEUE] | ||
#PBS -l place=vscatter,select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN]:mem=500G | ||
#PBS -l place=excl | ||
#PBS -l walltime=00:@[WLCLK]:00 | ||
|
||
set -eux | ||
echo -n " $( date +%s )," > job_timestamp.txt | ||
|
||
cd $PBS_O_WORKDIR | ||
|
||
set +x | ||
module use $PWD/modulefiles | ||
module load modules.fv3 | ||
module load cray-pals | ||
module list | ||
set -x | ||
|
||
echo "Model started: " `date` | ||
|
||
export OMP_STACKSIZE=512M | ||
export OMP_NUM_THREADS=@[THRD] | ||
export OMP_PLACES=cores | ||
export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 | ||
export ESMF_RUNTIME_PROFILE=ON | ||
export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" | ||
|
||
mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe | ||
|
||
echo "Model ended: " `date` | ||
echo -n " $( date +%s )," >> job_timestamp.txt |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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