chemistry_cycle_mod.f90 Source File


Files dependent on this one

sourcefile~~chemistry_cycle_mod.f90~~AfferentGraph sourcefile~chemistry_cycle_mod.f90 chemistry_cycle_mod.f90 sourcefile~conf_phys_m.f90 conf_phys_m.f90 sourcefile~conf_phys_m.f90->sourcefile~chemistry_cycle_mod.f90 sourcefile~conf_phys_m.f90~2 conf_phys_m.f90 sourcefile~conf_phys_m.f90~2->sourcefile~chemistry_cycle_mod.f90 sourcefile~physiq_mod.f90 physiq_mod.F90 sourcefile~physiq_mod.f90->sourcefile~conf_phys_m.f90 sourcefile~etat0phys_netcdf.f90 etat0phys_netcdf.f90 sourcefile~etat0phys_netcdf.f90->sourcefile~conf_phys_m.f90 sourcefile~physiq_mod.f90~2 physiq_mod.F90 sourcefile~physiq_mod.f90~2->sourcefile~conf_phys_m.f90 sourcefile~old_lmdz1d.f90 old_lmdz1d.f90 sourcefile~old_lmdz1d.f90->sourcefile~physiq_mod.f90 sourcefile~callphysiq_mod.f90 callphysiq_mod.f90 sourcefile~callphysiq_mod.f90->sourcefile~physiq_mod.f90 sourcefile~ce0l.f90 ce0l.F90 sourcefile~ce0l.f90->sourcefile~etat0phys_netcdf.f90 sourcefile~callphysiq_mod.f90~2 callphysiq_mod.f90 sourcefile~callphysiq_mod.f90~2->sourcefile~physiq_mod.f90 sourcefile~scm.f90 scm.f90 sourcefile~scm.f90->sourcefile~physiq_mod.f90 sourcefile~calfis.f90 calfis.f90 sourcefile~calfis.f90->sourcefile~callphysiq_mod.f90

Contents


Source Code

MODULE chemistry_cycle_mod

!=======================================================================
!   Authors: Anne Cozic and Thibaut Lurton
!
!  Purpose and description:
!  -----------------------
! Control module for the chemistry  tracers :
!   - Definition of fluxes to be exchanged with Pisces and Inca 
!
!=======================================================================


  IMPLICIT NONE

! Variables read from parmeter file physiq.def
  LOGICAL, SAVE, PUBLIC :: dms_cycle_cpl       ! Coupling of DMS fluxes between INCA and PISCES 
!$OMP THREADPRIVATE(dms_cycle_cpl)   

  LOGICAL, SAVE, PUBLIC :: n2o_cycle_cpl       ! Coupling of N2O fluxes between INCA and PISCES / PISCES and INCA 
!$OMP THREADPRIVATE(n2o_cycle_cpl)   

  LOGICAL, SAVE, PUBLIC :: ndp_cycle_cpl       ! Coupling of N deposition between INCA and PISCES
!$OMP THREADPRIVATE(ndp_cycle_cpl)

  LOGICAL, SAVE, PUBLIC :: nh3_cycle_cpl       ! Coupling of NH3 fluxes between PISCES and INCA
!$OMP THREADPRIVATE(nh3_cycle_cpl)
  
END MODULE chemistry_cycle_mod