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 due to restart file

Hi,

I am trying to run the CCSM3.0 in unix system. But I got the error which is given below,

(main) ---------------------------------------------------------------
(main) get simulation start date
(main) ---------------------------------------------------------------
(restart_readDate) restart type = continue => restart file specified by pointer file
(restart_readDate) ERROR: opening file = rpointer
(shr_sys_abort) ERROR: (restart_readDate) : ERROR openint rpointer file
(shr_sys_abort) WARNING: calling shr_mpi_abort() and stopping
(shr_mpi_abort) : (restart_readDate) : ERROR openint rpointer file 0
0.2u 0.4s 0:02 23% 1+17k 0+0io 0pf+0w
Mon Jul 10 14:23:06 ADT 2006 -- CSM EXECUTION HAS FINISHED
Model did not complete - see cpl.log.060710-142249


I have following in env_conf

#! /bin/csh -f

# Documentation of following environment varibles is provided in env.readme

setenv CASE TEST2
setenv CASESTR TEST2
setenv COMP_ATM cam
setenv COMP_LND clm
setenv COMP_ICE csim
setenv COMP_OCN pop
setenv COMP_CPL cpl
setenv CSIM_MODE prognostic
setenv GRID T42_gx1v3
setenv RUN_TYPE startup # [startup,hybrid,branch]
setenv RUN_STARTDATE 1950-01-01 # [yyyy-mm-dd]
setenv RUN_REFCASE case.std # [only applies to hybrid or branch runs]
setenv RUN_REFDATE 0001-01-01 # [only applies to hybrid or branch runs]
setenv IPCC_MODE OFF # [OFF, 1870_CONTROL, 1870_TO_PRESENT, RAMP_CO2_ONLY,
# FUTURE_A1, FUTURE_A2, FUTURE_B1, FUTURE_B2]
setenv RAMP_CO2_START_YMD 00000000 # Start date of CAM CO2 ramp in form YYYYMMDD
# This variable MUST be set if IPCC_MODE is RAMP_CO2_ONLY
# This variable is ignored if IPCC_MODE is not RAMP_CO2_ONLY

#=========================================================================
# DERIVED ENVIRONMENT VARIABLES (user should not edit these)
#=========================================================================

setenv ATM_GRID `echo $GRID | sed s/_.*//`; setenv LND_GRID $ATM_GRID
setenv OCN_GRID `echo $GRID | sed s/.*_//`; setenv ICE_GRID $OCN_GRID


I do not know what is wrong? I would appreciate any help.

Thanks

Debasish
 
Hi.
There are problems with the file called 'rpointer'.
This file must be in each components' directory and it must contain the name of the restart file. The formats of the files differ among components.

It seems to me, they are generated automatically by the model run script.

You should check if you have permissions reading/writing the respective directories, if you have enough disk space, and you also should chek your run script and other scripts which it calls to find if everything is OK with rpointer creation.
 
Top