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

RHO_VINT includes changes in SSH or not?

Dear Ocean Team,
I would like to determine the ocean bottom pressure, which is comparable to the variable “RHO_VINT” or “Vertical Integral of In-Situ Density”.
Now I would like to know if this vertical integral includes changes in the Sea Surface Height?
Or is it only the integral of the 60 vertical layers with fixed grid cell height?
In the second case the modeled ocean bottom pressure would be:
RHO_VINT + SSH*RHO(top layer)
in the first case the (SSH*RHO) would already be included in RHO_VINT. So what is the case?
Thank you for your help.
Christof
 

bates

Member
In the ocean code, baroclinic,F90, here is the line that calculates RHO_VINT at each level k:

WORK1 = RHO(:,:,k,curtime,iblock) * dz(k)

where WORK1 gets accumulated into RHO_VINT. This does not take into account the surface height. You could potentially add the effect of SSH by calculating

rho(z=5m) * ssh

using the monthly means. There will be some error due to nonlinearites.

Susan
Ocean Model Science Liaison at NCAR
 
Top