Changeset 2294 for LMDZ5/trunk/libf
- Timestamp:
- Jun 11, 2015, 8:06:49 PM (9 years ago)
- Location:
- LMDZ5/trunk/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynlonlat_phylonlat/grid_atob_m.F90
r2293 r2294 83 83 RETURN 84 84 END IF 85 nn=COUNT(found /=0); IF(nn==0) RETURN85 nn=COUNT(found); IF(nn==0) RETURN 86 86 87 87 !--- MISSING POINTS ; USE DISTANCE ON THE SPHERE TO FIND NEAREST POINT nr(2) … … 136 136 DOUBLE PRECISION :: out(SIZE(x),SIZE(y)) 137 137 !------------------------------------------------------------------------------- 138 CALL fine2coarse(xdata,ydata,x,y,out,DBLE(entree)) 138 ! CALL fine2coarse(xdata,ydata,x,y,out,DBLE(entree)) 139 CALL fine2coarse(xdata,ydata,x,y,out,entree) 139 140 sortie=REAL(out) 140 141 -
LMDZ5/trunk/libf/phylmd/physiq.F90
r2278 r2294 60 60 USE YOERAD , ONLY : NRADLP 61 61 #endif 62 USE ioipsl_getin_p_mod, ONLY : getin_p 63 62 64 63 65 !IM stations CFMIP … … 440 442 integer :: tau_trig(klon) 441 443 444 REAL,SAVE :: random_notrig_max=1.01 445 !$OMP THREADPRIVATE(random_notrig_max) 446 442 447 !--------Statistical Boundary Layer Closure: ALP_BL-------- 443 448 !---Profils de TKE dans et hors du thermique … … 993 998 IF (debut) THEN 994 999 CALL suphel ! initialiser constantes et parametres phys. 1000 CALL getin_p('random_notrig_max',random_notrig_max) 995 1001 ENDIF 996 1002 … … 2734 2740 proba_notrig(i)=1. 2735 2741 random_notrig(i)=1e6*ale_bl_stat(i)-int(1e6*ale_bl_stat(i)) 2742 if ( random_notrig(i) > random_notrig_max ) random_notrig(i)=1.1 2736 2743 if ( ale_bl_trig(i) .lt. abs(cin(i))+1.e-10 ) then 2737 2744 tau_trig(i)=tau_trig_shallow
Note: See TracChangeset
for help on using the changeset viewer.