Changeset 4063 for trunk/LMDZ.MARS/libf/phymars/conf_phys.F
- Timestamp:
- Feb 10, 2026, 9:47:13 PM (6 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.MARS/libf/phymars/conf_phys.F (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/conf_phys.F
r4060 r4063 46 46 & ads_massive_ice 47 47 use nonoro_gwd_mix_mod, only: calljliu_gwimix 48 use dust_coagulation_mod, only: dust_coag_kernel_b, 49 & dust_coag_kernel_g,dust_coag_kernel_de,dust_coag_kernel_ti, 50 & coal_coeff_mode,full_coag_equations 48 51 use lwxn_mod, only: lwxn_linear, lwxn_alphan, lwxn_ncouche 49 52 use callkeys_mod, only: startphy_file, activice, activeco2ice, … … 72 75 & tf_injection, ti_injection, thermochem, 73 76 & thermoswater, tituscap, tke_heat_flux, 74 & topflows, water, coagulation, kernel_b, 75 & kernel_g,kernel_de,kernel_ti,coal_kg, 76 & fullcoag 77 & topflows, water, dust_coagulation 77 78 use write_output_mod, only: output_diagfi 78 79 … … 389 390 ! dust particle coagulation 390 391 write(*,*)"call coagulation of dust" 391 coagulation=.false. ! default value 392 call getin_p("coagulation",coagulation) 393 write(*,*)" coagulation = ",coagulation 394 fullcoag=.false. ! default value 395 kernel_b=.true. ! default value (if coagulation=true) 396 kernel_g=.false. ! default value 397 kernel_de=.false. ! default value 398 kernel_ti=.false. ! default value 399 coal_kg=0 ! default value 400 if (coagulation) then 401 write(*,*)" coagulation fullcoag and mode= ",fullcoag,coal_kg 402 write(*,*)" coagulation kernels= ",kernel_b,kernel_g, 403 & kernel_de,kernel_ti 392 dust_coagulation=.false. ! default value 393 call getin_p("dust_coagulation",dust_coagulation) 394 write(*,*)" dust_coagulation = ",dust_coagulation 395 full_coag_equations=.false. ! default value 396 dust_coag_kernel_b=.true. ! default value (if coagulation=true) 397 dust_coag_kernel_g=.false. ! default value 398 dust_coag_kernel_de=.false. ! default value 399 dust_coag_kernel_ti=.false. ! default value 400 coal_coeff_mode=0 ! default value 401 if (dust_coagulation) then 402 write(*,*)" coagulation full_coag_equations: ", 403 & full_coag_equations 404 write(*,*)" coagulation coal_coeff_mode: ",coal_coeff_mode 405 write(*,*)" coagulation kernels= ",dust_coag_kernel_b, 406 & dust_coag_kernel_g,dust_coag_kernel_de,dust_coag_kernel_ti 404 407 endif 405 408
Note: See TracChangeset
for help on using the changeset viewer.
