source: LMDZ6/trunk/libf/phylmd/chemistry_cycle_mod.f90

Last change on this file was 5773, checked in by acozic, 5 weeks ago

Add possibility to couple nh3 between pisces and inca
use oasis initialization in lmdz
dev by T. Lurton

File size: 1.0 KB
Line 
1MODULE chemistry_cycle_mod
2
3!=======================================================================
4!   Authors: Anne Cozic and Thibaut Lurton
5!
6!  Purpose and description:
7!  -----------------------
8! Control module for the chemistry  tracers :
9!   - Definition of fluxes to be exchanged with Pisces and Inca
10!
11!=======================================================================
12
13
14  IMPLICIT NONE
15
16! Variables read from parmeter file physiq.def
17  LOGICAL, SAVE, PUBLIC :: dms_cycle_cpl       ! Coupling of DMS fluxes between INCA and PISCES
18!$OMP THREADPRIVATE(dms_cycle_cpl)   
19
20  LOGICAL, SAVE, PUBLIC :: n2o_cycle_cpl       ! Coupling of N2O fluxes between INCA and PISCES / PISCES and INCA
21!$OMP THREADPRIVATE(n2o_cycle_cpl)   
22
23  LOGICAL, SAVE, PUBLIC :: ndp_cycle_cpl       ! Coupling of N deposition between INCA and PISCES
24!$OMP THREADPRIVATE(ndp_cycle_cpl)
25
26  LOGICAL, SAVE, PUBLIC :: nh3_cycle_cpl       ! Coupling of NH3 fluxes between PISCES and INCA
27!$OMP THREADPRIVATE(nh3_cycle_cpl)
28 
29END MODULE chemistry_cycle_mod
Note: See TracBrowser for help on using the repository browser.