New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
sms_cfc.h90 in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/sms_cfc.h90 @ 186

Last change on this file since 186 was 186, checked in by opalod, 19 years ago

CL + CE : NEMO TRC_SRC start

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1#if defined key_cfc
2      integer it
3!!
4!!     tracer background: xinitri
5!!     --------------------------
6        real xinitri
7       common/cxinitri/xinitri
8!!
9!! boundary condition function for cfc 11 and 12
10!!----------------------------------------------------------------
11#if defined key_ocmip
12!!
13!!    common pour le coefficient d''echange de gaz
14!!    -------------------------------------------
15!!      INTEGER      nvak, npdtanak, npdtmoak, nmanak, ndemiak
16!!      INTEGER      ntrak1, ntrak2, iak
17!!      REAL         ak0 (jpi,jpj,12)
18!!      REAL         ak   (jpi,jpj)
19
20
21!!      COMMON/cak/ nvak, npdtanak, npdtmoak, nmanak, ndemiak &
22!!                , ak0, ak  &
23!!                , iak, ntrak1, ntrak2
24#else
25!!       real wspd(jpi,jpj) !wind speed - change to vatm (sea ice model)
26!!      common/cak/wspd
27#endif
28#if defined key_patm
29!!
30!!    common pour la pression partielle atmospherique
31!!    -------------------------------------------------
32      INTEGER      nvpatm, npdtanpatm, npdtmopatm, nmanpatm, ndemipatm
33      INTEGER      ntrpatm1, ntrpatm2, ipatm
34      REAL         patm0 (jpi,jpj,12)
35      REAL         patm   (jpi,jpj)
36
37      COMMON/cpatm/ nvpatm, npdtanpatm, npdtmopatm, nmanpatm, ndemipatm &
38                , patm0, patm &
39                , ipatm, ntrpatm1, ntrpatm2
40#endif
41
42!!#if defined key_seaice
43!!
44!!   common pour glace de mer
45!!   ------------------------
46!!#include "common.seaice.h"
47!!#endif
48!!
49!!     concentration atmospherique de cfc
50!!     ----------------------------------                   
51!!      p11: pression partielle hemispherique de CFC11
52!!      p12: pression partielle hemispherique de CFC12
53!!      xphem: facteur d'interpolation spatial
54!!             de la pression partielle atmospherique
55!!
56        real p11(jpyear,jphem),p12(jpyear,jphem),xphem(jpi,jpj)
57!!
58!!       interpolation temporelle des concentrations atmospheriques
59!!       -----------------------------------------------------------
60        integer iandebf,ianfinf,imoisf,i1,i2
61        real patm11(jphem),patm12(jphem),pp11(jpi,jpj),pp12(jpi,jpj)
62!!
63!!       solubilite
64!!       -----------
65        real sol(jpi,jpj,jptra)
66
67!!       nombre de schmidt
68!!       ------------------
69        real sc_cfc(jpi,jpj,jptra)
70
71!!       concentration a l'equilibre
72!!       ----------------------------
73        real ca11(jpi,jpj),ca12(jpi,jpj)
74
75!!       coefficients de transfert * nb de schmidt
76!!      ------------------------------------------
77        real ak11(jpi,jpj),ak12(jpi,jpj)
78!!
79        common/cocfc_cl/i1,i2,iandebf,ianfinf,p11,p12,xphem, &
80             patm11,patm12,pp11,pp12,sc_cfc,sol,ca11, &
81             ca12,ak11,ak12
82!!
83!!   common pour flux et bilan
84!!   -------------------------
85        real erreur
86        real qint0(jptra),qcumul(jptra),tdepart(jptra),tcumul(jptra)
87        real qtr(jpi,jpj,jptra),qint(jpi,jpj,jptra)
88        real bt(jpi,jpj,jpk)
89        common/cocfc_bil/erreur,qint0,qcumul,tdepart,tcumul,qtr,qint,bt
90!!
91!!    common pour les sorties
92!!    ------------------------
93      real XIMT(8),xsort(7),SORSEL(jpi,jpj,nsort),XATM(nsatm)
94      real trfi(jpi,jpj,jpk,jptra)
95      common/cfcfc_sor/XIMT,xsort,SORSEL,XATM,trfi
96#if defined key_cfcmean
97      integer nmoytra
98      real qtram(jpi,jpj,jptra),tsurfm(jpi,jpj),ssurfm(jpi,jpj)
99      common/cfc_sorm/nmoytra,qtram,tsurfm,ssurfm
100#endif
101#endif
102
103
Note: See TracBrowser for help on using the repository browser.