source: CONFIG/publications/ICOLMDZORINCA_CO2_Transport_GMD_2023/INCA/build/ppsrc/INCA_PARA/init_const_lmdz.f90 @ 6610

Last change on this file since 6610 was 6610, checked in by acosce, 10 months ago

INCA used for ICOLMDZORINCA_CO2_Transport_GMD_2023

File size: 4.6 KB
Line 
1
2
3
4
5
6
7
8
9
10
11
12!$Id: init_const_lmdz.F90 166 2010-02-24 15:57:59Z acosce $
13!! =========================================================================
14!! INCA - INteraction with Chemistry and Aerosols
15!!
16!! Copyright Laboratoire des Sciences du Climat et de l'Environnement (LSCE)
17!!           Unite mixte CEA-CNRS-UVSQ
18!!
19!! Contributors to this INCA subroutine:
20!!
21!! Anne Cozic, LSCE, anne.cozic@cea.fr
22!! Yann Meurdesoif, LSCE, yann.meurdesoif@cea.fr
23!!
24!! This software is a computer program whose purpose is to simulate the
25!! atmospheric gas phase and aerosol composition. The model is designed to be
26!! used within a transport model or a general circulation model. This version
27!! of INCA was designed to be coupled to the LMDz GCM. LMDz-INCA accounts
28!! for emissions, transport (resolved and sub-grid scale), photochemical
29!! transformations, and scavenging (dry deposition and washout) of chemical
30!! species and aerosols interactively in the GCM. Several versions of the INCA
31!! model are currently used depending on the envisaged applications with the
32!! chemistry-climate model.
33!!
34!! This software is governed by the CeCILL  license under French law and
35!! abiding by the rules of distribution of free software.  You can  use,
36!! modify and/ or redistribute the software under the terms of the CeCILL
37!! license as circulated by CEA, CNRS and INRIA at the following URL
38!! "http://www.cecill.info".
39!!
40!! As a counterpart to the access to the source code and  rights to copy,
41!! modify and redistribute granted by the license, users are provided only
42!! with a limited warranty  and the software's author,  the holder of the
43!! economic rights,  and the successive licensors  have only  limited
44!! liability.
45!!
46!! In this respect, the user's attention is drawn to the risks associated
47!! with loading,  using,  modifying and/or developing or reproducing the
48!! software by the user in light of its specific status of free software,
49!! that may mean  that it is complicated to manipulate,  and  that  also
50!! therefore means  that it is reserved for developers  and  experienced
51!! professionals having in-depth computer knowledge. Users are therefore
52!! encouraged to load and test the software's suitability as regards their
53!! requirements in conditions enabling the security of their systems and/or
54!! data to be ensured and,  more generally, to use and operate it in the
55!! same conditions as regards security.
56!!
57!! The fact that you are presently reading this means that you have had
58!! knowledge of the CeCILL license and that you accept its terms.
59!! =========================================================================
60
61
62
63SUBROUTINE INIT_CONST_LMDZ( &
64!   anneeref_l  , &
65!   dayref_l    , &
66!   iphysiq_l   , &
67!   daystep_l   , &
68   nday_l      , &
69   nbsrf_l     , &
70   is_oce_l    , &
71   is_sic_l    , &
72   is_ter_l    , &
73   is_lic_l    , &
74   calend_l    , &
75   config_inca_l) 
76
77  USE CONST_LMDZ
78  USE SPECIES_NAMES
79 
80  IMPLICIT NONE
81
82  INTEGER, INTENT(in)  :: nday_l
83  INTEGER, INTENT(in)  :: nbsrf_l
84  INTEGER, INTENT(in)  :: is_oce_l, is_sic_l,is_lic_l,is_ter_l
85  CHARACTER (len=10), INTENT(in) :: calend_l
86  CHARACTER(len=4), INTENT(in) :: config_inca_l
87
88  nday     = nday_l
89  nbsrf    = nbsrf_l
90  is_oce   = is_oce_l
91  is_sic   = is_sic_l
92  is_ter   = is_ter_l
93  is_lic   = is_lic_l
94  calend   = calend_l
95  config_inca = config_inca_l 
96
97END SUBROUTINE INIT_CONST_LMDZ
98
99SUBROUTINE Init_chem_inca_trac(nbtr) 
100  USE SPECIES_NAMES
101  INTEGER, INTENT(out) :: nbtr
102
103  nbtr = nbtrac 
104
105END SUBROUTINE Init_chem_inca_trac
106!
107!SUBROUTINE INIT_CONST_LMDZ( &
108!   anneeref_l  , &
109!   dayref_l    , &
110!   iphysiq_l   , &
111!   daystep_l   , &
112!   nday_l      , &
113!   nbsrf_l     , &
114!   is_oce_l    , &
115!   is_sic_l    , &
116!   is_ter_l    , &
117!   is_lic_l    , &
118!   calend_l    , &
119!   config_inca_l)
120!
121!  USE CONST_LMDZ
122!  USE SPECIES_NAMES
123
124!  IMPLICIT NONE
125!
126!  INTEGER, INTENT(in)  :: anneeref_l
127!  INTEGER, INTENT(in)  :: dayref_l
128!  INTEGER, INTENT(in)  :: iphysiq_l
129!  INTEGER, INTENT(in)  :: daystep_l
130!  INTEGER, INTENT(in)  :: nday_l
131!  INTEGER, INTENT(in)  :: nbsrf_l
132!  INTEGER, INTENT(in)  :: is_oce_l, is_sic_l,is_lic_l,is_ter_l
133!  CHARACTER (len=10), INTENT(in) :: calend_l
134!  CHARACTER(len=4), INTENT(in) :: config_inca_l
135!
136!
137!
138!  anneeref = anneeref_l
139!  dayref   = dayref_l 
140!  iphysiq  = iphysiq_l
141!  day_step = daystep_l
142!  nday     = nday_l
143!  nbsrf    = nbsrf_l
144!  is_oce   = is_oce_l
145!  is_sic   = is_sic_l
146!  is_ter   = is_ter_l
147!  is_lic   = is_lic_l
148!  calend   = calend_l
149!  config_inca = config_inca_l
150!
151!END SUBROUTINE INIT_CONST_LMDZ
152!
153!SUBROUTINE Init_chem_inca_trac(nbtr)
154!  USE SPECIES_NAMES
155!  INTEGER, INTENT(out) :: nbtr
156!
157!  nbtr = nbtrac
158!
159!END SUBROUTINE Init_chem_inca_trac
Note: See TracBrowser for help on using the repository browser.