While I am going through the code. I found one bug in bulk_fluxes.F. I had noticed that in computation of net longwave flux using Berliand formula there is 0.5 instead of 0.05. I am talking about ROMS-2.2 and I dont know whether it was rectified in ROMS-3.0 or not. I mean that
Code: Select all
LRad(i,j)=-emmiss*StefBo* &
& (cff1*(0.39_r8-0.5_r8*SQRT(0.01_r8*vap_p))* &
& (1.0_r8-0.6823_r8*cloud(i,j)*cloud(i,j))+ &
& cff2*4.0_r8*(TseaK(i)-TairK(i)))
Code: Select all
LRad(i,j)=-emmiss*StefBo* &
& (cff1*(0.39_r8-0.05_r8*SQRT(0.01_r8*vap_p))* &
& (1.0_r8-0.6823_r8*cloud(i,j)*cloud(i,j))+ &
& cff2*4.0_r8*(TseaK(i)-TairK(i)))
With regards,
G.NageswaraRao.