CMAQV52_DDM error : Logs exist - run ABORTED

hello,when I was running CMAQV52_DDM3D,I got a problem:
if ( ! -d /public/home/zhangnn/wfy/CMAQV52_DDM/data/output_CCTM_v52_intel_SE52BENCH ) mkdir -p /public/home/zhangnn/wfy/CMAQV52_DDM/data/output_CCTM_v52_i
if ( delete == delete ) then
set test = ls CTM_LOG_???.${CTM_APPL}
ls: No match.
if ( != ) then
echo *** Logs exist - run ABORTED ***
*** Logs exist - run ABORTED ***
exit 1
I used the CMAQV52 test input data,there is no error for the CMAQV52 base release,but it is not feasible in DDM ,and the output folder is empty.
I’m really need your help,thank you for your time.

Can you try changing the following setting from delete to keep

set DISP = delete            #> [ delete | update | keep ] existing output files
set DISP = keep            #> [ delete | update | keep ] existing output files

To see if you get past this error.

1 Like

Once you get past that error, you will likely need to fix the following line:

  time mpirun -r ssh -np $NPROCS $BLD/$EXEC

use the following:

mpirun -np $NPROCS $BLD/$EXEC

And fix the following path
setenv SEN_INPUT ${CMAQ_HOME}/CCTM/scripts/sensinput.cmas.dat

And use the following setting option:
setenv CTM_WB_DUST N #> use inline windblown dust emissions [ default: Y ]

1 Like

Hy @lizadams

I’m facing the same issue and I’ve tried your suggestions. However, my job gets terminated. Can you please take a look into my scripts and job output files and let me know what should I do?

Thanks
Rasel
jCMAQ-5.2-NODE058-337513.err.txt (13.4 KB) run_cctm_rasel.csh_sbatch.txt (27.1 KB) run_cctm.txt (26.5 KB)CTM_LOG_001.v52_gcc_AQF5X_20200601.txt (2.8 KB)

I don’t see the error in the CTM_LOG* file that you provided. It looks like you tried running on 16 processors.

Please change directories to where the CTM_LOG files are, and use the following command to look for an error message.

grep -i error -B 10 -A 10 CTM_LOG*

Hy @lizadams

I’ve used grep -i error -B 10 -A 10 CTM_LOG* and I got following errors:

CTM_LOG_015.v52_gcc_AQF5X_20200601- 94 SESQ 1.0000
CTM_LOG_015.v52_gcc_AQF5X_20200601- No IC found for species SESQRXN in INIT_GASC_1; set to 1.00E-30
CTM_LOG_015.v52_gcc_AQF5X_20200601- No IC found for species PAHNRXN in INIT_GASC_1; set to 1.00E-30
CTM_LOG_015.v52_gcc_AQF5X_20200601- No IC found for species PAHHRXN in INIT_GASC_1; set to 1.00E-30
CTM_LOG_015.v52_gcc_AQF5X_20200601- 95 SOAALK 1.0000
CTM_LOG_015.v52_gcc_AQF5X_20200601- No IC found for species ALKRXN in INIT_GASC_1; set to 1.00E-30
CTM_LOG_015.v52_gcc_AQF5X_20200601- 96 H2NO3PIJ 1.0000
CTM_LOG_015.v52_gcc_AQF5X_20200601- 97 H2NO3PK 1.0000
CTM_LOG_015.v52_gcc_AQF5X_20200601-
CTM_LOG_015.v52_gcc_AQF5X_20200601-
CTM_LOG_015.v52_gcc_AQF5X_20200601: *** ERROR ABORT in subroutine SubhFile_Cell on PE 015
CTM_LOG_015.v52_gcc_AQF5X_20200601- Model domain is outside file domain
CTM_LOG_015.v52_gcc_AQF5X_20200601- PM3EXIT: date&time specified as 0
CTM_LOG_015.v52_gcc_AQF5X_20200601- Date&time specified as 0
CTM_LOG_015.v52_gcc_AQF5X_20200601-
CTM_LOG_015.v52_gcc_AQF5X_20200601-

It’s saying model domain is outside file domain. I’ve checked GRIDDESC and found NCOL and NROWS match with mcip files. Is there anything else I need to check?

Thanks
Rasel