When porting cam3, in configure process we meet the error like cannot find “ncdf_xxxx”
In fact, this is not a very serious error because we are using brand new netcdf (after 2012 in fact) that it requires -lnetcdff to link to fortran lib instead of only -lnetcdf
Change the makefile template, search -lnetcdf and append -lnetcdff to it when using FC
http://www.unidata.ucar.edu/support/help/MailArchives/netcdf/msg11396.html
When finishing compiling, use SLURM method to submit the task with openMP configure, get the error
18 READ_NAMELIST: Namelist read returns -1 19 ENDRUN: called without a message string
It seems that the model cannot lock the namelist position.
So I’ve found that the script moved the cam.exe out of the bld dir after compiling. So it maybe the cam exe cannot find the inside namelist file. Actually it is true!
After moving the exe in, another problem occurs
18 READ_NAMELIST: Namelist read returns 19 19 ENDRUN: called without a message string
What the hell with 19 code??? Google and got this
http://www.ladon.iqfr.csic.es/intel/doc/main_for/mergedProjects/bldaps_for/ug1l_rt_errors.htm
severe (19): Invalid reference to variable in NAMELIST input
FOR$IOS_INVREFVAR. One of the following conditions occurred:
|
It’s possibly that some variables cannot be recognized by the exe.
Find it one by one, stop_option and stop_n!!!!
OMG, CAM3 even doesn’t have these two namelist variables!
After deleting that and configuring the running period by NELAPSE, the world back to normal.