Changeset 2047 for trunk/LMDZ.VENUS/libf/phyvenus/gwstress.F
- Timestamp:
- Nov 29, 2018, 4:47:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/gwstress.F
r1530 r2047 5 5 * , prho , pstab , pvph , pstd, psig 6 6 * , pmea , ppic , pval , ptfr , ptau 7 * , pgeom1 , pgamma , pd1 , pd2 , pdmod , pnu ) 7 * , pgeom1 , pgamma , pd1 , pd2 , pdmod , pnu 8 * , zeff ) 8 9 c 9 10 c**** *gwstress* … … 74 75 real pmea(nlon),ppic(nlon),pval(nlon) 75 76 real pdmod(nlon) 77 real zeff(nlon) ! effective height seen by the flow when there is blocking 76 78 c 77 79 c----------------------------------------------------------------------- … … 79 81 c* 0.2 local arrays 80 82 c ------------ 81 c zeff--real: effective height seen by the flow when there is blocking82 83 83 84 integer jl 84 real zeff85 85 c 86 86 c----------------------------------------------------------------------- … … 101 101 c 102 102 c 103 zeff = 0. 103 104 do 301 jl=kidia,kfdia 104 105 if(ktest(jl).eq.1) then … … 106 107 c effective mountain height above the blocked flow 107 108 108 zeff =ppic(jl)-pval(jl)109 zeff(jl)=ppic(jl)-pval(jl) 109 110 if(kkenvh(jl).lt.klev)then 110 zeff =amin1(GFRCRIT*pvph(jl,klev+1)/sqrt(pstab(jl,klev+1))111 c ,zeff )111 zeff(jl)=amin1(GFRCRIT*pvph(jl,klev+1)/sqrt(pstab(jl,klev+1)) 112 c ,zeff(jl)) 112 113 endif 113 114 … … 116 117 * *psig(jl)*pdmod(jl)/4./pstd(jl) 117 118 * *pvph(jl,klev+1)*sqrt(pstab(jl,klev+1)) 118 * *zeff **2119 * *zeff(jl)**2 119 120 120 121
Note: See TracChangeset
for help on using the changeset viewer.