Changeset 648
- Timestamp:
- May 4, 2012, 10:24:20 AM (13 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r645 r648 1653 1653 arguments in call to simpleclouds and rdust() should only be recomputed 1654 1654 if dust_mass & dust_number tracers are available). 1655 1656 == 04/05/12 == JYC+EM 1657 - some syntax corrections in thermcall_main_mars, vdif_cd, pbl_parameters 1658 which cause problems when compiling with some strict compilers (g95, gfortran) 1659 - added an initialisation of 'varian' in initracer for cases when using 1660 conrath dust; because that value can be is used elsewhere (e.g. surfacearea) -
trunk/LMDZ.MARS/libf/phymars/initracer.F
r635 r648 440 440 else 441 441 442 ! initialize varian, which may be used (e.g. by surfacearea) 443 ! even with conrath dust 444 nueff_lift = 0.5 445 varian=sqrt(log(1.+nueff_lift)) 446 442 447 if (dustbin.gt.1) then 443 448 print*,'initracer: STOP!', -
trunk/LMDZ.MARS/libf/phymars/pbl_parameters.F
r636 r648 149 149 ! zu2(ig)=MAX(pu(ig,1)*pu(ig,1)+pv(ig,1)*pv(ig,1) 150 150 ! & ,(0.3*wstar_in(ig))**2) 151 zu2(ig)=pu(ig,1)*pu(ig,1)+pv(ig,1)*pv(ig,1) +151 zu2(ig)=pu(ig,1)*pu(ig,1)+pv(ig,1)*pv(ig,1) 152 152 & + (log(1.+0.7*wstar_in(ig) + 2.3*wstar_in(ig)**2))**2 153 153 -
trunk/LMDZ.MARS/libf/phymars/thermcell_main_mars.F90
r628 r648 1241 1241 1242 1242 if (1 .eq. 0) then 1243 call thermcell_dqup(ngridmx,nlayermx,ptimestep &1244 & ,fm,entr, &1245 & masse,ztv,zdthladj)1243 ! call thermcell_dqup(ngridmx,nlayermx,ptimestep & 1244 ! & ,fm,entr, & 1245 ! & masse,ztv,zdthladj) 1246 1246 else 1247 1247 -
trunk/LMDZ.MARS/libf/phymars/vdif_cd.F
r636 r648 150 150 ! zu2(ig)=MAX(pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1), & 151 151 ! & (0.3*wstar(ig))**2) 152 zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1) +152 zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1) 153 153 & + (log(1.+0.7*wstar(ig) + 2.3*wstar(ig)**2))**2 154 154 -
trunk/LMDZ.MARS/makegcm_gfortran
r646 r648 381 381 else if $LINUX then 382 382 ## for gfortran 383 set optim="-g -Wall -f check=all -fwhole-file -fbounds-check -ffpe-trap=invalid,zero,overflow"384 set optim90="-g -Wall -f check=all -fwhole-file -fbounds-check -ffpe-trap=invalid,zero,overflow"385 set optimtru90="-g -Wall -f check=all -fwhole-file -fbounds-check -ffpe-trap=invalid,zero,overflow"383 set optim="-g -Wall -fbounds-check -ffpe-trap=invalid,zero,overflow" 384 set optim90="-g -Wall -fbounds-check -ffpe-trap=invalid,zero,overflow" 385 set optimtru90="-g -Wall -fbounds-check -ffpe-trap=invalid,zero,overflow" 386 386 else 387 387 echo "pas d option debug predefinie pour cette machine"
Note: See TracChangeset
for help on using the changeset viewer.