CCTM error running CMAQ5.2

Dear Sir,
I have errors when I ran CCTM run script.My Linux version is Centos7.7, the version of CMAQ is 5.2.
The errors are as follows:

run.txt (180.1 KB)

Thanks a lot!

When you run into an error, please use your editor to search for ‘error’.
When I did that on the run.txt file that you provided, it went to this section.

mpirun -np 4 --allow-run-as-root /home/zhouminghui/CMAQ5.2/CCTM/scripts/BLD_CCTM_v52_gcc9.1.0/CCTM_v52.exe
[mpiexec@localhost.localdomain] match_arg (utils/args/args.c:163): unrecognized argument allow-run-as-root
[mpiexec@localhost.localdomain] HYDU_parse_array (utils/args/args.c:178): argument matching returned error
[mpiexec@localhost.localdomain] parse_args (ui/mpich/utils.c:1642): error parsing input array
[mpiexec@localhost.localdomain] HYD_uii_mpx_get_parameters (ui/mpich/utils.c:1694): unable to parse user arguments
[mpiexec@localhost.localdomain] main (ui/mpich/mpiexec.c:148): error parsing parameters

WIth this error
[mpiexec@localhost.localdomain] main (ui/mpich/mpiexec.c:148): error parsing parameters

I then looked to your mpirun command that is used to run CMAQ, and found

--allow-run-as-root 

This option is unrecognized.

Please change your run script.

mpirun -np 4 --allow-run-as-root /home/zhouminghui/CMAQ5.2/CCTM/scripts/BLD_CCTM_v52_gcc9.1.0/CCTM_v52.exe

to use

mpirun -np 4 /home/zhouminghui/CMAQ5.2/CCTM/scripts/BLD_CCTM_v52_gcc9.1.0/CCTM_v52.exe