Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

Problem in running CAM5.3

Hello, I am trying to run cesm1.2.0 (CAM5.3) as CAM standalone on Linux machine with PGI CDK 13.7 (Inbuild MPI2 library) comlier and parallely compiled NeTCDF4.2 libraries, I used the following commands lines to submit the run:Commands to configue:$/home/opt/app/cesm1_2_0/models/atm/cam/bld/configure -fc_type pgi -fc mpif90 -cc mpicc -dyn fv -hgrid 10x15 -ntasks 12 -nosmp  -test command to build the model:gmake Command to build the namelist
/home/opt/app/cesm1_2_0/models/atm/cam/bld/build-namelist -test -config /home/ankush/New_PerformanceTests/Test2_12/bld/config_cache.xml Torque/PBS script To submit the run:  #!/bin/bash#PBS -q batch#PBS -N CAM#PBS -l walltime=24:00:00#PBS -l nodes=1:ppn=12#PBS -m e#mpirun -np 12 -hostfile $PBS_NODEFILE /home/ankush/New_PerformanceTests/Test3_12/bld/cam######################################### I got the run terminated with following error message:
seq_flds_mod: read seq_cplflds_inparm namelist from: drv_inPGFIO-F-209/OPEN/unit=90/'OLD' specified for file which does not exist. File name = drv_inIn source file /home/opt/app/cesm1_2_0/models/drv/shr/seq_flds_mod.F90, at line number 359 We concluded that drv_in file found in running directory.I am attaching the the log files for your refernce.  Thanking you anticipations,Please help me out in running a successful CAM run.  Regards:
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
Usually this error occurs when teh restart files are not present in the run directory. Which is the RUNTYPE ? (look in env_run.xml) 
 
Hello,The problem is solved by adding your runiing directory path which contain the drv_in file. So simpally give the run directory path in your run script.  cd $HOME/New_PerformanceTests/Test3_12/run (here, the drv_in file found)e.g. #!/bin/bash#PBS -q batch#PBS -N CAM#PBS -l walltime=24:00:00#PBS -l nodes=1:ppn=12#PBS -m e# cd $HOME/New_PerformanceTests/Test3_12/runmpirun -np 12 -hostfile $PBS_NODEFILE /home/ankush/New_PerformanceTests/Test3_12/bld/cam
 
Top