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

problems with fincl1

Hi

I want to write out KVH and KVM variables to the output history files.

I make sure there exist addfld and outfld commands for both KVH and KVM variables.

Now the problem I am facing is with fincl1.

If I use fincl1='KVH' then it is ok, KVH is being written to output. If I use fincl1='KVH',KVM' then the program is keep crashing. It is not accepting ',' at all. Is there something to be done before asking to write multiple variables? I am using CAM 3.1.

best regards,
bala
 

rneale

Rich Neale
CAM Project Scientist
Staff member
In
** fincl1='KVH',KVM' **

you are missing a ' before KVM

Try

fincl1='KVH','KVM'

That should work
 
I did tried fincl1='KVH','KVM'. The program keep crashing. I am using bluefire and using "fincl1" in rutime_opts.F90 file. I initially tried in run.csh script, but with no luck.


rneale said:
In
** fincl1='KVH',KVM' **

you are missing a ' before KVM

Try

fincl1='KVH','KVM'

That should work
 
[cam1/models/atm/cam/src/control/runtime_opts.F90", line 1032.24: 1515-022 (S) Syntax Error: Extra token " ,
" was found. The token is ignored.


%%%%%%%%%%%%%%%%%%%%
1032 fincl1(f) = 'KVH','KVM'
%%%%%%%%%%%%%%%%%%%%
 

rneale

Rich Neale
CAM Project Scientist
Staff member
I don't understand how the compiler knows about problems with the namelist
since it knows nothing about the namelist.
have you changed anything in runtime_opts.F90?
 
Top