Ignore:
Timestamp:
Feb 10, 2026, 9:47:13 PM (6 days ago)
Author:
tbertrand
Message:

MARS PCM:
dust coagulation : just renaming some flags so that it is more human readable, following suggestion by Grand Manitou Ehouarn
TB

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r4060 r4063  
    4646     &                     ads_massive_ice
    4747      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
    4851      use lwxn_mod, only: lwxn_linear, lwxn_alphan, lwxn_ncouche
    4952      use callkeys_mod, only: startphy_file, activice, activeco2ice,
     
    7275     &                        tf_injection, ti_injection, thermochem,
    7376     &                        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
    7778      use write_output_mod, only: output_diagfi
    7879
     
    389390! dust particle coagulation
    390391         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
    404407         endif
    405408
Note: See TracChangeset for help on using the changeset viewer.