Changeset 3198 for trunk/LMDZ.PLUTO/libf/phypluto
- Timestamp:
- Feb 2, 2024, 3:08:36 PM (11 months ago)
- Location:
- trunk/LMDZ.PLUTO/libf/phypluto
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/phypluto/physiq_mod.F90
r3197 r3198 920 920 print*,'and the surface albedo is taken equal to the first visible spectral value' 921 921 922 albedo_equivalent(1:ngrid)=albedo(1:ngrid,1) 922 923 fluxsurfabs_sw(1:ngrid) = fluxtop_dn(1:ngrid)*(1.-albedo(1:ngrid,1)) 924 ! TB24: 925 fluxabs_sw(1:ngrid)=fluxsurfabs_sw(1:ngrid) 923 926 fluxrad_sky(1:ngrid) = fluxsurfabs_sw(1:ngrid) 924 927 fluxtop_lw(1:ngrid) = emis(1:ngrid)*sigma*tsurf(1:ngrid)**4 … … 1662 1665 if(callrad)then 1663 1666 1664 !call writediagfi(ngrid,"ALB","Surface albedo"," ",2,albedo_equivalent)1667 call writediagfi(ngrid,"ALB","Surface albedo"," ",2,albedo_equivalent) 1665 1668 !call writediagfi(ngrid,"ALB_1st","First Band Surface albedo"," ",2,albedo(:,1)) 1666 1669 call writediagfi(ngrid,"ISR","incoming stellar rad.","W m-2",2,fluxtop_dn) -
trunk/LMDZ.PLUTO/libf/phypluto/surfini.F
r3195 r3198 44 44 ! Step 2 : We get the bare ground albedo from the start files. 45 45 DO ig=1,ngrid 46 albedo_bareground(ig)= albedodat(ig)46 albedo_bareground(ig)=0.1 ! TB24 albedodat(ig) 47 47 DO nw=1,L_NSPECTV 48 albedo(ig,nw)= albedo_bareground(ig)48 albedo(ig,nw)=0.1 !albedo_bareground(ig) 49 49 ENDDO 50 50 ENDDO -
trunk/LMDZ.PLUTO/libf/phypluto/turbdiff_mod.F90
r3197 r3198 138 138 139 139 IF (firstcall) THEN 140 ivap=1 !TB24 141 iliq=0 142 iliq_surf=0 143 iice_surf=0 ! simply to make the code legible 140 144 sensibFlux(:)=0. 141 145 firstcall=.false.
Note: See TracChangeset
for help on using the changeset viewer.