Changeset 905 for trunk/LMDZ.GENERIC
- Timestamp:
- Mar 18, 2013, 11:58:34 AM (12 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r903 r905 915 915 - corrected a bug in bilinearbig (found with debug mode) 916 916 not harmful but possible -1 index at first call 917 918 == 18/03/2013 == EM 919 - removed the "-static" ifort compilation option (problematic onGnome cluster) 920 and added some additional debug options 921 - fixed bug in newstart about initialization of albedo and thermal inertia. 922 923 -
trunk/LMDZ.GENERIC/libf/dyn3d/newstart.F
r837 r905 328 328 . cloudfrac,totalfrac,hice) 329 329 330 ! copy albedo and soil thermal inertia 330 ! copy albedo and soil thermal inertia on (local) physics grid 331 331 do i=1,ngridmx 332 332 albfi(i) = albedodat(i) … … 335 335 enddo 336 336 ! build a surfithfi(:) using 1st layer of ithfi(:), which might 337 ! be neede later on if reinitializing soil thermal inertia337 ! be needed later on if reinitializing soil thermal inertia 338 338 surfithfi(i)=ithfi(i,1) 339 339 enddo 340 340 ! also copy albedo and soil thermal inertia on (local) dynamics grid 341 ! so that options below can manipulate either (but must then ensure 342 ! to correctly recast things on physics grid) 343 call gr_fi_dyn(1,ngridmx,iip1,jjp1,albfi,alb) 344 call gr_fi_dyn(nsoilmx,ngridmx,iip1,jjp1,ithfi,ith) 345 call gr_fi_dyn(1,ngridmx,iip1,jjp1,surfithfi,surfith) 341 346 342 347 endif -
trunk/LMDZ.GENERIC/makegcm_ifort
r903 r905 188 188 else if $LINUX then 189 189 #NB: on gnome -O3 ==> NaNs ... 190 set optim=" -O2 -fp-model precise -ip -mkl=sequential -align all -static"191 set optim90=" -O2 -fp-model precise -ip -mkl=sequential -align all -static"192 set optimtru90=" -O2 -fp-model precise -ip -mkl=sequential -align all -static"190 set optim=" -O2 -fp-model precise -ip -mkl=sequential -align all " 191 set optim90=" -O2 -fp-model precise -ip -mkl=sequential -align all " 192 set optimtru90=" -O2 -fp-model precise -ip -mkl=sequential -align all " 193 193 if ( `hostname` == ciclad1.ipsl.jussieu.fr ) then 194 194 echo "YOU ARE ON CICLAD CLUSTER" … … 390 390 set optim90="$optim90"" -G1 " 391 391 else if $LINUX then 392 set optim=" -g - no-ftz -traceback -ftrapuv -fp-stack-check -check"393 set optim90=" -g - no-ftz -traceback -ftrapuv -fp-stack-check -check"394 set optimtru90=" -g - no-ftz -traceback -ftrapuv -fp-stack-check -check"392 set optim=" -g -fpe-all=0 -no-ftz -traceback -ftrapuv -fp-stack-check -check all -debug" 393 set optim90=" -g -fpe-all=0 -no-ftz -traceback -ftrapuv -fp-stack-check -check all -debug" 394 set optimtru90=" -g -fpe-all=0 -no-ftz -traceback -ftrapuv -fp-stack-check -check all -debug" 395 395 else 396 396 echo "pas d option debug predefinie pour cette machine"
Note: See TracChangeset
for help on using the changeset viewer.