Changeset 4087
- Timestamp:
- Feb 27, 2026, 8:22:38 AM (2 weeks ago)
- Location:
- trunk/LMDZ.VENUS/libf/phyvenus
- Files:
-
- 1 deleted
- 3 edited
-
cloudvenus/mad_muphy.f90 (modified) (2 diffs)
-
cloudvenus/nucleations.f90 (modified) (3 diffs)
-
cloudvenus/wsa_new_bis.f90 (deleted)
-
physiq_mod.F (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/cloudvenus/mad_muphy.f90
r4085 r4087 204 204 write(*,*)'RHOpi et RHOeqi', RHOSAp, RHOSA 205 205 ENDIF 206 call change_wsa(TAIR,PAIR,MRSAv,MRSAss ,WSAv)206 call change_wsa(TAIR,PAIR,MRSAv,MRSAss) 207 207 208 208 IF (dbg_glob) then … … 854 854 !Computation of the 9th decile 855 855 856 r_merge = exp(r2 + sigma2 * -1.2816)856 r_merge = exp(r2 - sigma2 * 1.2816) 857 857 858 858 !Mode merging 2->1 -
trunk/LMDZ.VENUS/libf/phyvenus/cloudvenus/nucleations.f90
r4080 r4087 134 134 135 135 !***************************************************************************** 136 SUBROUTINE newnuklefit(t ,p,rhoa,jnuc,rc,ntotal)136 SUBROUTINE newnuklefit(temp,p,rhoacid,jnuc,rc,ntotal) 137 137 138 138 ! Fortran 90 subroutine binapara … … 165 165 166 166 ! Inputs 167 real, intent(inout) :: t! temperature in K (165-400 K)168 real, intent(inout) :: p ! pressure in Pa169 real, intent(inout) :: rhoa! sulfuric acid concentration in #/m3 (10^10 - 10^19)167 real, intent(in) :: temp ! temperature in K (165-400 K) 168 real, intent(in) :: p ! pressure in Pa 169 real, intent(in) :: rhoacid ! sulfuric acid concentration in #/m3 (10^10 - 10^19) 170 170 171 171 ! Outputs … … 177 177 real :: x ! mole fraction of H2SO4 in the critical cluster 178 178 real :: nac ! local variable for number of acid molecules 179 real :: t ! local variable for temperature 180 real :: rhoa ! local variable for acid concentration 179 181 180 182 ! Initialization 183 rhoa = rhoacid 184 t = temp 181 185 jnuc = 0.e0 182 186 ntotal = 0.e0 -
trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F
r4086 r4087 1194 1194 ! mode 2 1195 1195 1196 d_tr_sed(:,:,:) = 0.1197 1196 call sedim_mad_m2(klon, klev, zctime, pplay, paprs, 1198 1197 $ rho,zzlev,t_seri,d_tr_sed(:,:,1:5), … … 1279 1278 do i = 1, klon 1280 1279 if (tr_seri(i,k,i_m3_mode1sa) < 1e-18) then 1281 tr_seri( :,:,i_m0_aer) = tr_seri(:,:,i_m0_aer)1280 tr_seri(i,k,i_m0_aer) = tr_seri(i,k,i_m0_aer) 1282 1281 $ + tr_seri(i,k,i_m0_mode1ccn) 1283 1282 1284 tr_seri( :,:,i_m3_aer) = tr_seri(:,:,i_m3_aer)1283 tr_seri(i,k,i_m3_aer) = tr_seri(i,k,i_m3_aer) 1285 1284 $ + tr_seri(i,k,i_m3_mode1ccn) 1286 1285 … … 1293 1292 1294 1293 if (tr_seri(i,k,i_m3_mode2sa) < 1e-18) then 1295 tr_seri( :,:,i_m0_aer) = tr_seri(:,:,i_m0_aer)1294 tr_seri(i,k,i_m0_aer) = tr_seri(i,k,i_m0_aer) 1296 1295 $ + tr_seri(i,k,i_m0_mode2ccn) 1297 1296 1298 tr_seri( :,:,i_m3_aer) = tr_seri(:,:,i_m3_aer)1297 tr_seri(i,k,i_m3_aer) = tr_seri(i,k,i_m3_aer) 1299 1298 $ + tr_seri(i,k,i_m3_mode2ccn) 1300 1299
Note: See TracChangeset
for help on using the changeset viewer.
