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

Job exit problem.

Hi!
I submit a four-month time job, however it is ended within 1min. I got the following message for it:
Could anyone help with this situation? I also include some information about this run below. What does the "redirect job input file: mean here? Thanks!

You must declare a wallclock time with the bsub -W directive.

If you have specified this directive and your job is still
rejected, verify that you have not exceeded your GLADE quotas
(use "gladequota") and that you are properly redirecting job
file input (e.g., bsub < jobfile).

To take advantage of backfill, the declared wallclock time
should be less than the maximum wallclock limit for the queue
to which you are submitting the job.


Here is some info about this run:
was used as the home directory.
tagtest0811> was used as the working directory.
Started at Mon Aug 11 15:29:54 2014
Results reported at Mon Aug 11 15:30:49 2014

Your job looked like:

------------------------------------------------------------
# LSBATCH: User input
#! /bin/tcsh -f
#BSUB -n 1024
#BSUB -R "span[ptile=15]"
#BSUB -q small
#BSUB -N
#BSUB -a poe
#BSUB -x
#BSUB -o cesm.o.%J
#BSUB -e cesm.e.%J
#BSUB -J tagtest0811
#BSUB -W 00:30
#BSUB -P P35141086
 

jedwards

CSEG and Liaisons
Staff member
Can't tell what the problem is from what you've posted.   Can you send the full path of your case directory? 
 

jedwards

CSEG and Liaisons
Staff member
Can't tell what the problem is from what you've posted.   Can you send the full path of your case directory? 
 
Hi My full path is: was used as the home directory. was used as the working directory./glade/scratch/stianye/csmruns/tagtest0811 was used as the run directory
Thanks!
 
Hi My full path is: was used as the home directory. was used as the working directory./glade/scratch/stianye/csmruns/tagtest0811 was used as the run directory
Thanks!
 

jedwards

CSEG and Liaisons
Staff member
 Here's the problem in your atm log:ENDRUN:phys_ctl_readnl:: ERROR reading namelistProbabaly something wrong in user_nl_cam I would try removing nhtfrq(1) = 0nhtfrq(2) = 0 mfilt(2)  = 2as I'm not sure that it's interpreted correctly by the fortran compilertry instead:nhtfrq = 0,0mfilt=2,2
 

jedwards

CSEG and Liaisons
Staff member
 Here's the problem in your atm log:ENDRUN:phys_ctl_readnl:: ERROR reading namelistProbabaly something wrong in user_nl_cam I would try removing nhtfrq(1) = 0nhtfrq(2) = 0 mfilt(2)  = 2as I'm not sure that it's interpreted correctly by the fortran compilertry instead:nhtfrq = 0,0mfilt=2,2
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
The notation
nhtfrq(1) = 0
nhtfrq(2) = 3
is valid but the variable nhtfrq can only be set for zero (monthly mean) for the h0 file.It means you cannot specifynhtfrq(2) = 0or even:nhtfrq = 0,0See the namelist documentation:http://www.cesm.ucar.edu/cgi-bin/eaton/namelist/nldef2html-pubArray of write frequencies for each history file series. If nhtfrq(1) = 0, the file will be a monthly average. Only the first file series may be a monthly average.  If nhtfrq(i) > 0, frequency is specified as number of timesteps.  If nhtfrq(i) < 0, frequency is specified as number of hours.
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
The notation
nhtfrq(1) = 0
nhtfrq(2) = 3
is valid but the variable nhtfrq can only be set for zero (monthly mean) for the h0 file.It means you cannot specifynhtfrq(2) = 0or even:nhtfrq = 0,0See the namelist documentation:http://www.cesm.ucar.edu/cgi-bin/eaton/namelist/nldef2html-pubArray of write frequencies for each history file series. If nhtfrq(1) = 0, the file will be a monthly average. Only the first file series may be a monthly average.  If nhtfrq(i) > 0, frequency is specified as number of timesteps.  If nhtfrq(i) < 0, frequency is specified as number of hours.
 
Thanks you both.So If I only need the monthly output for I should use:fincl1    = 'bcac_a1','bcaf_a1','bcam_a1', 'bcas_a1','bceu_a1','bcrw_a1','bcac_c1','bcaf_c1','bcam_c1', 'bcas_c1','bceu_c1','bcrw_c1'instead of:fincl2    = 'bcac_a1','bcaf_a1','bcam_a1', 'bcas_a1','bceu_a1','bcrw_a1','bcac_c1','bcaf_c1','bcam_c1', 'bcas_c1','bceu_c1','bcrw_c1'for my black cabon tagging run? Thanks a lot! 
 
Thanks you both.So If I only need the monthly output for I should use:fincl1    = 'bcac_a1','bcaf_a1','bcam_a1', 'bcas_a1','bceu_a1','bcrw_a1','bcac_c1','bcaf_c1','bcam_c1', 'bcas_c1','bceu_c1','bcrw_c1'instead of:fincl2    = 'bcac_a1','bcaf_a1','bcam_a1', 'bcas_a1','bceu_a1','bcrw_a1','bcac_c1','bcaf_c1','bcam_c1', 'bcas_c1','bceu_c1','bcrw_c1'for my black cabon tagging run? Thanks a lot! 
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
If you only need the monthly ouput, you can include it in the h0 file using the namelist variable "fincl1"Exactly like you suggested above. 
 

hannay

Cecile Hannay
AMWG Liaison
Staff member
If you only need the monthly ouput, you can include it in the h0 file using the namelist variable "fincl1"Exactly like you suggested above. 
 
Top