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

oceanic heat budget diagnostics

Hi,

I am trying to diagnose the heat budget of upper 5 layers.
It is not clear how I can get the heat tendencies due to vertical
diffusion, convection and horizontal diffusion. Has anyone
done this?

Thank you.

Sang-Ki
 
All heat budget terms are computed in CCSM3. You just need to modify
the subroutine "tracer_update(k)" (baroclinic.F) to print them out.

For instance, horizontal diffusion term is computed in line 897:

call hdifft(k,WORKN)
FT = FT + WORKN

Here WORKN(:,:,1) will be heat diffusion term (K/sec). You need to
save it. An easy way is to use one of the tavg routines in tavg.F.
Of course, you need to add the new variables in "gx1v3_tavg_contents"

It will be good to know how NCAR people compute heat budget terms.

Sang-Ki
 
Top