Changeset 3764 for trunk/LMDZ.VENUS


Ignore:
Timestamp:
May 15, 2025, 2:01:57 PM (6 weeks ago)
Author:
flefevre
Message:

Implementation of ClSO2 + Cl -> Cl2SO2

Location:
trunk/LMDZ.VENUS/libf/phyvenus
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/LMDZ.VENUS/libf/phyvenus/photochemistry_venus.F90

    r3755 r3764  
    15171517
    15181518!===========================================================
     1519!      f040 : ClSO2 + Cl -> Cl2SO2
     1520!===========================================================
     1521
     1522nb_reaction_4 = nb_reaction_4 + 1
     1523
     1524indice_4(nb_reaction_4) = z4spec(1.0, i_clso2, 1.0, i_cl, 1.0, i_cl2so2, 0.0, i_dummy)
     1525
     1526!===========================================================
    15191527!      g001 : S + O2 -> SO + O
    15201528!===========================================================
     
    26732681                       f022, f023, f024, f025, f026, f027, f028,   &
    26742682                       f029, f030, f031, f032, f033, f034, f035,   &
    2675                        f036, f037, f038, f039,                     &
     2683                       f036, f037, f038, f039, f040,               &
    26762684                       g001, g002, g003, g004, g005, g006, g007,   &
    26772685                       g008, g009, g010, g011, g012, g013, g014,   &
     
    35663574      end do
    35673575
     3576      f030(:) = 0.  ! temporary FL 15 May 2025
     3577
    35683578      nb_reaction_3 = nb_reaction_3 + 1
    35693579      v_3(:,nb_reaction_3) = f030(:)
     
    36493659      nb_reaction_4 = nb_reaction_4 + 1
    36503660      v_4(:,nb_reaction_4) = f039(:)
     3661
     3662!---  f040: clso2 + cl -> cl2so2
     3663
     3664!     croce and cobos, 2018
     3665
     3666      f040(:) = 1.44e-11*(t(:)/250.)**0.47
     3667
     3668      nb_reaction_4 = nb_reaction_4 + 1
     3669      v_4(:,nb_reaction_4) = f040(:)
    36513670
    36523671!----------------------------------------------------------------------
  • TabularUnified trunk/LMDZ.VENUS/libf/phyvenus/phytrac_chimie.F

    r3689 r3764  
    143143           ! default numbers if no ion and no deuterium chemistry
    144144   
    145            nb_reaction_4_max = 98     ! set number of bimolecular reactions
     145           nb_reaction_4_max = 99     ! set number of bimolecular reactions
    146146           nb_reaction_3_max = 14     ! set number of quadratic reactions
    147147           nquench           = 15     ! set number of first-order reactions:
Note: See TracChangeset for help on using the changeset viewer.