CMAQ v5.2 running error

One day running is working but when I tried to multiday.
It always ended after the first day of running.


image

I am attaching an example run script for the benchmark case that is described in this tutorial CMAQ/CMAQ_UG_tutorial_benchmark.md at main · USEPA/CMAQ · GitHub

This run script is different than the one provided in the github repository, as it includes the slurm settings at the top of the script that are specific for the UNC Dogwood Cluster. If you are running your script on a system that requires you to submit the job to the queue, rather than interactively, you would need to edit this script to use the slurm environment settings for your system.

To run this script, you would load the modules required prior to submitting it to a queue

run_cctm_Bench_2016_12SE1.csh (35.4 KB)

module load openmpi_4.0.1/gcc_9.1.0

Then submit the script to the slurm queue using

sbatch run_cctm_Bench_2016_12SE1.csh

This script will run for two days, it could be extended to run longer by changing the END_DATE, if you have the input data required to run for additional days.

#> Set Start and End Days for looping
 setenv NEW_START TRUE             #> Set to FALSE for model restart
 set START_DATE = "2016-07-01"     #> beginning date (July 1, 2016)
 set END_DATE   = "2016-07-02"     #> ending date    (July 2, 2016)

modify END_DATE prior to submitting the job to run it for a longer time period.

set END_DATE   = "2016-07-03"     #> ending date    (July 3, 2016)

Liz