-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancing EE2 compliance in support of the AQMv7 implementation (#1008)
* adding a new task to monitoring forecast job and copy output files from to and replace ln -sf with cpreq for several exscripts * disable MODIS_XLAI for nexus * update exaqm_output.sh * update exscript for forecast and output * adding make_ics as the 2nd trigger condition for aqm_lbc ecf task * update forecast and monitoring job to copy model output and restart files to * Merge from AQM forecast RESTART solution redesign requested by NCO * adding an exaqm script for the forecast_manager task * Update NCO quested forecast RESTART change * Update ecflow event to use new RESTART interval * including the change for generation of var_defns.sh and input.nml * upate J-jobs for sourcing var_defns.sh * update aqm_nco_conf.sh and i add input.nml file * clean up var_defns.sh file * update the changes provided by NCO and rename grib2 files and adding missing grib2 files for G227, G198, and G196 * update the trigger condition for aqm_lbcs * update JAQM_FORECAST job * upate var_defns.template --------- Co-authored-by: Lin.Gan <[email protected]> Co-authored-by: lgannoaa <[email protected]>
- Loading branch information
1 parent
c069c2a
commit 9198b6a
Showing
35 changed files
with
1,039 additions
and
1,690 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 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,10 @@ | ||
#!/bin/bash -l | ||
|
||
model=aqm | ||
%include <head.h> | ||
%include <envir-p1.h> | ||
set -x | ||
cyc=%CYC% | ||
ecflow_client --requeue=force /nco_aqm/primary/${cyc}/aqm | ||
%include <tail.h> | ||
exit 0 |
22 changes: 14 additions & 8 deletions
22
...s/forecast/jaqm_forecast_data_cleanup.ecf → ...cripts/forecast/jaqm_forecast_manager.ecf
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,30 +1,36 @@ | ||
#PBS -N aqm_forecast_data_cleanup_%CYC% | ||
#PBS -N aqm_forecast_manager_%CYC% | ||
#PBS -j oe | ||
#PBS -S /bin/bash | ||
#PBS -q %QUEUE% | ||
#PBS -A %PROJ%-%PROJENVIR% | ||
#PBS -l walltime=00:10:00 | ||
#PBS -l select=1:ncpus=1:mem=1GB | ||
#PBS -l place=vscatter | ||
#PBS -l walltime=04:00:00 | ||
#PBS -l select=1:mpiprocs=1:ncpus=1 | ||
#PBS -l debug=true | ||
|
||
model=aqm | ||
export cyc="%CYC%" | ||
%include <head.h> | ||
%include <envir-p1.h> | ||
|
||
############################################################ | ||
# Load modules | ||
############################################################ | ||
module load intel/${intel_ver} | ||
module load craype/${craype_ver} | ||
module load cray-mpich/${cray_mpich_ver} | ||
module load cray-pals/${cray_pals_ver} | ||
module load hdf5/${hdf5_ver} | ||
module load netcdf/${netcdf_ver} | ||
module load python/${python_ver} | ||
|
||
module list | ||
|
||
export cyc=%CYC% | ||
|
||
############################################################ | ||
# CALL executable job script here | ||
############################################################ | ||
${HOMEaqm}/jobs/JAQM_DATA_CLEANUP | ||
${HOMEaqm}/jobs/JAQM_FORECAST_MANAGER | ||
|
||
%include <tail.h> | ||
%manual | ||
|
||
%manual | ||
%end |
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
Oops, something went wrong.