Changeset 5095 for LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/parasol.F90
- Timestamp:
- Jul 22, 2024, 9:46:57 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/parasol.F90
r5093 r5095 81 81 ! Lum_norm=f(PARASOL_SZA,tau_cloud) derived from adding-doubling calculations 82 82 ! valid ONLY ABOVE OCEAN (albedo_sfce=5%) 83 ! valid only in one viewing direction (theta_v=30 °, phi_s-phi_v=320°)83 ! valid only in one viewing direction (theta_v=30�, phi_s-phi_v=320�) 84 84 ! based on adding-doubling radiative transfer computation 85 85 ! for PARASOL_TAU values (0 to 100) and for PARASOL_SZA values (0 to 80) … … 97 97 98 98 ! Relative fraction of the opt. thick due to liquid or ice clouds 99 WHERE (tautot_S(1:npoints) >0.)99 WHERE (tautot_S(1:npoints) .gt. 0.) 100 100 frac_taucol_liq(1:npoints) = tautot_S_liq(1:npoints) / tautot_S(1:npoints) 101 101 frac_taucol_ice(1:npoints) = tautot_S_ice(1:npoints) / tautot_S(1:npoints) … … 118 118 DO it=1,PARASOL_NREFL 119 119 DO ny=1,PARASOL_NTAU-1 120 WHERE (tautot_S(1:npoints) >=PARASOL_TAU(ny).and. &121 tautot_S(1:npoints) <=PARASOL_TAU(ny+1))120 WHERE (tautot_S(1:npoints) .ge. PARASOL_TAU(ny).and. & 121 tautot_S(1:npoints) .le. PARASOL_TAU(ny+1)) 122 122 rlumA_mod(1:npoints,it) = aA(it,ny)*tautot_S(1:npoints) + bA(it,ny) 123 123 rlumB_mod(1:npoints,it) = aB(it,ny)*tautot_S(1:npoints) + bB(it,ny)
Note: See TracChangeset
for help on using the changeset viewer.