Hi All,
I am running WRF with the Mixing layer ocean model. I find that the ocean mixing layer temperature is calculated as (in phys/module_sf_oml.F/OML1D):
I have a qestion about the tml:
As I understand, tmoml is the top 200 m ocean mean temperature (K) at initial time, which equals to TSK(initial skin temperature as I understand)-5 (in phys/module_sf_oml.F/omlinit). So the tml is not allowed to decrease more than 5K. I was wondering why we need to limit the change whithin 5K?
I am new to the ocean model, so any hints would be very much appreciated! Thanks!
I am running WRF with the Mixing layer ocean model. I find that the ocean mixing layer temperature is calculated as (in phys/module_sf_oml.F/OML1D):
if(tml.ge.tmoml .and. h.ne.0.)then
if(tml.ge.tmoml)then
tml=max(t0ml - Gam*(h-h0) + 0.5*Gam*h + A2/h, tmoml)
else
tml=tmoml
endif
u=hu2/h
v=hv2/h
else
tml=t0ml
u=0.
v=0.
endif
I have a qestion about the tml:
As I understand, tmoml is the top 200 m ocean mean temperature (K) at initial time, which equals to TSK(initial skin temperature as I understand)-5 (in phys/module_sf_oml.F/omlinit). So the tml is not allowed to decrease more than 5K. I was wondering why we need to limit the change whithin 5K?
I am new to the ocean model, so any hints would be very much appreciated! Thanks!
Last edited: