Changeset 3687 for trunk/LMDZ.PLUTO
- Timestamp:
- Mar 17, 2025, 10:00:19 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/phypluto/callcorrk.F90
r3685 r3687 450 450 !-------------------------------------------------- 451 451 ! Effective radius and variance of the aerosols 452 ! Madeleine's PhD (eq. 2.3-2.4): 453 ! --> r_eff = <r^3> / <r^2> 454 ! --> nu_eff = <r^4>*<r^2> / <r^3>^2 - 1 452 455 !-------------------------------------------------- 453 456 ! Radiative Hazes … … 456 459 ! Spherical aerosols 457 460 sig = 0.2 458 where (mp2m_rc_sph(:,:) > 1e- 10)461 where (mp2m_rc_sph(:,:) > 1e-9) 459 462 reffrad(:,:,1) = mp2m_rc_sph(:,:) * exp(5.*sig**2 / 2.) 460 463 elsewhere … … 468 471 ! Fractal aerosols 469 472 sig = 0.35 470 where (mp2m_rc_fra(:,:) > 1e- 10)473 where (mp2m_rc_fra(:,:) > 1e-8) 471 474 reffrad(:,:,2) = mp2m_rc_fra(:,:) * exp(5.*sig**2 / 2.) 472 475 elsewhere … … 543 546 ! Net atmospheric radiative cooling rate from C2H2 (K.s-1): 544 547 ! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 545 !dtlw_hcn_c2h2=0.548 dtlw_hcn_c2h2=0. 546 549 if (cooling) then 547 550 CALL cooling_hcn_c2h2(ngrid,nlayer,pplay,& … … 1103 1106 end do 1104 1107 ! adding c2h2 if cooling active 1105 dtlw(ig,l)=dtlw(ig,l)+dtlw_hcn_c2h2(ig,l) 1108 if (cooling) then 1109 dtlw(ig,l)=dtlw(ig,l)+dtlw_hcn_c2h2(ig,l) 1110 endif 1106 1111 1107 1112 !SW
Note: See TracChangeset
for help on using the changeset viewer.