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

Error from namelist

fenghe@wisc_edu

New Member
I am running ccsm3.0 from bluefire and the code builds ok, but fails to run due to some namelist error

The case directory is at /blhome/fenghe/ccsm3/scripts/b30.bf

> cat atm.log.080924-120650
Wed Sep 24 12:07:28 MDT 2008 /ptmp/fenghe/b30.bf/atm/atm.log.080924-120650
cp /fis/cgd/ccr/paleo/TraCE/inputdata/atm/cam2/ozone/mozart.o3.128x64_L18_1870cyc_c040123.nc to mozart.o3.128x64_L18_1870cyc_c040123.nc
cp /fis/cgd/ccr/paleo/TraCE/inputdata/atm/cam2/rad/AerosolMass_V_1870_48x96_clim_c040525.nc to AerosolMass_V_1870_48x96_clim_c040525.nc
(shr_msg_chStdOut) read atm_stdio.nml, unit 6 connected to atm.log.080924-120650
------------------------------------------------------------
NCAR Community Atmospheric Model (CAM)
$Name: ccsm3_0_1_beta24 $
$Date: 2006/05/24 21:13:52 $
------------------------------------------------------------
(Online documentation is available on the CAM
home page: http://www.ccsm.ucar.edu/models/atm-cam/
License information is available as a link from above
------------------------------------------------------------
DATE 09/24/08 TIME 12:07:47
------------------------------------------------------------
DYCORE is EUL
READ_NAMELIST: Namelist read returns 49
ENDRUN: called without a message string


Here is the cam namelist:
> cat cam.buildnml_prestage.csh
#! /bin/csh -f

source $CASEROOT/env_conf || exit -1
source $CASEROOT/env_run || exit -1
source $CASEROOT/env_mach.$MACH || exit -1

#******************************************************************#
# If the user changes any input datasets - be sure to give it a #
# unique filename. Do not duplicate any existing input files #
#******************************************************************#

# started as a hybrid run
# Dynamics is eul

set runtype = hybrid
if ($CONTINUE_RUN == 'TRUE') set runtype = 'continue'

set exedir = $EXEROOT/atm
cd $exedir

set bndtvo = '/fis/cgd/ccr/paleo/TraCE/inputdata/atm/cam2/ozone/mozart.o3.128x64_L18_1870cyc_c040123.nc'
set aeroptics = AerosolOptics_c040105.nc
set absdata = abs_ems_factors_fastvx.c030508.nc
set bndtvaer = '/fis/cgd/ccr/paleo/TraCE/inputdata/atm/cam2/rad/AerosolMass_V_1870_48x96_clim_c040525.nc'
set datinit = b30.22_0kaDVT.cam2.i.0006-01-01-00000.nc
$CASEROOT/Buildnml_Prestage/Tools/ccsm_cpdata $bndtvo || exit 99
$UTILROOT/Tools/ccsm_getinput atm/cam2/rad/$absdata || exit 99
$UTILROOT/Tools/ccsm_getinput atm/cam2/rad/$aeroptics || exit 99
$CASEROOT/Buildnml_Prestage/Tools/ccsm_cpdata $bndtvaer || exit 99
if ($runtype != 'continue') then
$UTILROOT/Tools/ccsm_getfile b30.22_0kaDVT/atm/init/$datinit || exit 99
endif

if ($runtype == 'startup' ) set nsrest = 0
if ($runtype == 'hybrid' ) set nsrest = 0
if ($runtype == 'branch' ) set nsrest = 3
if ($runtype == 'continue') set nsrest = 1

cat >! atm.stdin
 
Top