doubt regarding unit conversion of evaporation

General scientific issues regarding ROMS

Moderators: arango, robertson

Post Reply
Message
Author
tara
Posts: 26
Joined: Mon Aug 11, 2014 5:05 pm
Location: Indian Institute of Technology

doubt regarding unit conversion of evaporation

#1 Unread post by tara »

Dear all,

I want to understand what is the correct way to convert the MERRA latent heat flux conversion into evaporation flux(E=H/Lv). finally to calculate evaporation(kg/m^2/sec)-precipitation(kg/m^2/sec)=swflux(cm/day)


With Regards-
Tara

User avatar
wilkin
Posts: 879
Joined: Mon Apr 28, 2003 5:44 pm
Location: Rutgers University
Contact:

Re: doubt regarding unit conversion of evaporation

#2 Unread post by wilkin »

It's in the code in bulk_flux.F.

Code: Select all

!  For EMINUSP option,  EVAP = LHeat (W/m2) / Hlv (J/kg) = kg/m2/s
!                       PREC = rain = kg/m2/s
!
!  To convert these rates to m/s divide by freshwater density, rhow.
! ...
# ifdef EMINUSP
          evap(i,j)=LHeat(i,j)/Hlv(i,j)

Divide latent flux in W/m2 by the latent heat of vaporization Hlv ~= 2.501e6 J/kg.

ROMS sets a spatially varying Hlv early in the bulk_flux.F subroutine making a small adjustment for the actual SST:

Code: Select all

!
!  Compute latent heat of vaporization (J/kg) at sea surface, Hlv.
!
          Hlv(i,j)=(2.501_r8-0.00237_r8*TseaC(i))*1.0E+6_r8
!
John Wilkin: DMCS Rutgers University
71 Dudley Rd, New Brunswick, NJ 08901-8521, USA. ph: 609-630-0559 jwilkin@rutgers.edu

tara
Posts: 26
Joined: Mon Aug 11, 2014 5:05 pm
Location: Indian Institute of Technology

Re: doubt regarding unit conversion of evaporation

#3 Unread post by tara »

Thank you very much Wilkin .

Post Reply