Changeset 2743 for trunk/LMDZ.TITAN/libf/phytitan
- Timestamp:
- Jul 5, 2022, 11:56:27 PM (2 years ago)
- Location:
- trunk/LMDZ.TITAN/libf/phytitan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/call_profilgases.F90
r1648 r2743 43 43 44 44 !$OMP MASTER 45 45 #ifndef MESOSCALE 46 46 ! Load CH4 vertical profile from file 'profile.def' 47 47 open(90,file='profile.def',status='old',form='formatted',iostat=ierr) … … 60 60 endif 61 61 enddo 62 62 #else 63 gfrac(igas_CH4,:) = 1.443E-02 64 print*,"MESOSCALE. setting constant CH4",gfrac(igas_CH4,1) 65 #endif 63 66 ! Then set H2 (fixed) and N2 (what remains) 64 67 65 68 gfrac(igas_H2,:) = 1.0E-3 66 69 gfrac(igas_N2,:) = 1.0 - ( gfrac(igas_CH4,:) + gfrac(igas_H2,:) ) 67 70 71 72 #ifndef MESOSCALE 68 73 else 69 74 write(*,*) 'Cannot find required file "profile.def"' … … 72 77 73 78 close(90) 79 #endif 74 80 !$OMP END MASTER 75 81 !$OMP BARRIER -
trunk/LMDZ.TITAN/libf/phytitan/vdifc.F
r1668 r2743 12 12 use comcstfi_mod, only: g, r, cpp, rcp 13 13 use callkeys_mod, only: tracer,nosurf 14 use turb_mod, only: ustar 14 15 15 16 implicit none … … 203 204 zcdv(ig)=zcdv_true(ig)*sqrt(zu2) 204 205 zcdh(ig)=zcdh_true(ig)*sqrt(zu2) 206 ustar(ig)=sqrt(zcdv_true(ig))*sqrt(zu2) 205 207 ENDDO 206 208
Note: See TracChangeset
for help on using the changeset viewer.