Changeset 1239 for trunk/LMDZ.MARS/libf/phymars
- Timestamp:
- May 9, 2014, 11:00:47 AM (11 years ago)
- Location:
- trunk/LMDZ.MARS/libf/phymars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/callkeys.h
r1088 r1239 13 13 & ,lifting,freedust,callddevil,scavenging,sedimentation & 14 14 & ,activice,water,tifeedback,microphys,caps,photochem,calltherm & 15 & ,callrichsl,callslope,tituscap 15 & ,callrichsl,callslope,tituscap,yamada4 16 16 17 17 COMMON/callkeys_i/iradia,iaervar,iddist,ilwd,ilwb,ilwn,ncouche & … … 26 26 & ,callnirco2,callnlte,callthermos,callconduct, & 27 27 & calleuv,callmolvis,callmoldiff,thermochem,thermoswater & 28 & ,calltherm,callrichsl,callslope,tituscap 28 & ,calltherm,callrichsl,callslope,tituscap,yamada4 29 29 30 30 -
trunk/LMDZ.MARS/libf/phymars/conf_phys.F
r1233 r1239 223 223 call getin("calladj",calladj) 224 224 write(*,*) " calladj = ",calladj 225 226 if (calltherm .and. (.not. calladj)) then 227 print*,'Convadj has to be activated when using thermals' 228 stop 229 endif 230 225 226 if (calltherm .and. calladj) then 227 print*,'!!! PLEASE NOTE !!!' 228 print*,'convective adjustment is on' 229 print*,'but since thermal plume model is on' 230 print*,'convadj is only activated above the PBL' 231 endif 232 233 write(*,*) "used latest version of yamada scheme?" 234 yamada4=.true. ! default value 235 call getin("yamada4",yamada4) 236 write(*,*) " yamada4 = ",yamada4 237 238 if (calltherm .and. .not.yamada4) then 239 print*,'!!!! WARNING WARNING WARNING !!!!' 240 print*,'if calltherm=T we strongly advise that ' 241 print*,'you set the flag yamada4 to T ' 242 print*,'!!!! WARNING WARNING WARNING !!!!' 243 endif 244 231 245 write(*,*) "call Richardson-based surface layer ?" 232 246 callrichsl=.false. ! default value -
trunk/LMDZ.MARS/libf/phymars/vdifc.F
r1236 r1239 373 373 c ** schema de diffusion turbulente dans la couche limite 374 374 c ---------------------------------------------------- 375 IF (.not. calltherm) THEN375 IF (.not. yamada4) THEN 376 376 377 377 CALL vdif_kc(ngrid,nlay,nq,ptimestep,g,pzlev,pzlay
Note: See TracChangeset
for help on using the changeset viewer.