Changeset 2825 for LMDZ5/trunk/libf
- Timestamp:
- Mar 15, 2017, 4:32:31 PM (8 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/calcul_divers.h
r2351 r2825 5 5 IF(itap.EQ.1) THEN 6 6 itapm1=0 7 ! surface terre8 DO i=1, klon9 IF(pctsrf(i,is_ter).GT.0.) THEN10 paire_ter(i)=cell_area(i)*pctsrf(i,is_ter)11 ENDIF12 ENDDO13 7 ENDIF 14 8 -
LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90
r2824 r2825 196 196 #endif 197 197 198 USE phys_state_var_mod, ONLY: pctsrf, paire_ter,rain_fall, snow_fall, &198 USE phys_state_var_mod, ONLY: pctsrf, rain_fall, snow_fall, & 199 199 qsol, z0m, z0h, fevap, agesno, & 200 200 nday_rain, rain_con, snow_con, & … … 512 512 CALL histwrite_phy(o_contfracATM, zx_tmp_fi2d) 513 513 CALL histwrite_phy(o_contfracOR, pctsrf(:,is_ter)) 514 CALL histwrite_phy(o_aireTER, paire_ter)515 514 ! 516 515 #ifdef CPP_XIOS -
LMDZ5/trunk/libf/phylmd/phys_state_var_mod.F90
r2730 r2825 275 275 REAL,ALLOCATABLE,SAVE :: total_rain(:), nday_rain(:) 276 276 !$OMP THREADPRIVATE(total_rain,nday_rain) 277 REAL,ALLOCATABLE,SAVE :: paire_ter(:)278 !$OMP THREADPRIVATE(paire_ter)279 277 ! albsol1: albedo du sol total pour SW visible 280 278 ! albsol2: albedo du sol total pour SW proche IR … … 536 534 ALLOCATE(pfrac_1nucl(klon,klev)) 537 535 ALLOCATE(total_rain(klon), nday_rain(klon)) 538 ALLOCATE(paire_ter(klon))539 536 ALLOCATE(albsol1(klon), albsol2(klon)) 540 537 !albedo SB >>> … … 675 672 deallocate(pfrac_1nucl) 676 673 deallocate(total_rain, nday_rain) 677 deallocate(paire_ter)678 674 deallocate(albsol1, albsol2) 679 675 !albedo SB >>>
Note: See TracChangeset
for help on using the changeset viewer.