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

Output Options

I would like to output global instantaneous windspeeds at every timestep (1200sec) in CAM. I have added the proper FINCL(2) namelist variable as:
fincl2 = 'WINDSPD:I'

Along with the following line (output every timestep):
nhtfrq(2) = 1

The above method produces three netcdf files per day of simulation. I would like to write a netcdf file every day with a timeseries of 72 (86400/1200) instantaneous windspeeds. Is this possible?
 

rneale

Rich Neale
CAM Project Scientist
Staff member
To set 72 samples per file put

MFILT(2) = 72

In the namelist
 
Thank you for your help.

I am now outputing global instantaneous windspeeds at every timestep (1200sec) in CAM. Is it possible to have CAM output instantaneous windspeeds at specific times of day (local time for that gridcell)? In other words, if it is 6am or 6pm gridcell local time, output the windspeed. Just thought I'd check before I dive into working with the long history tapes I have created.

Thank you.
 

rneale

Rich Neale
CAM Project Scientist
Staff member
You can do output from different regions to a point. If you look at he cam documentation,

http://www.ccsm.ucar.edu/models/atm-cam/docs/usersguide/usersguide.pdf

the namelist variables FINCL1LONLAT, FINCL2LONLAT, etc (up to 200) allow you to subset regions at which each of the corresponding FINCL1, FINCL2 output diagnostics will have output data for. However, there are only 6 output file streams allowed and so only 6 different output times can be specified.
 
Top