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.
dom_oce.F90 in NEMO/branches/2020/dev_r14116_HPC-04_mcastril_Mixed_Precision_implementation_final/src/OCE/DOM – NEMO

source: NEMO/branches/2020/dev_r14116_HPC-04_mcastril_Mixed_Precision_implementation_final/src/OCE/DOM/dom_oce.F90 @ 14644

Last change on this file since 14644 was 14644, checked in by sparonuz, 3 years ago

Merge trunk -r14642:HEAD

  • Property svn:keywords set to Id
File size: 23.0 KB
RevLine 
[3]1MODULE dom_oce
[1601]2   !!======================================================================
[3]3   !!                       ***  MODULE dom_oce  ***
4   !! ** Purpose :   Define in memory all the ocean space domain variables
[1601]5   !!======================================================================
[14072]6   !! History :  1.0  ! 2005-10  (A. Beckmann, G. Madec)  reactivate s-coordinate
[2528]7   !!            3.3  ! 2010-11  (G. Madec) add mbk. arrays associated to the deepest ocean level
[5836]8   !!            3.4  ! 2011-01  (A. R. Porter, STFC Daresbury) dynamical allocation
[3680]9   !!            3.5  ! 2012     (S. Mocavero, I. Epicoco) Add arrays associated
10   !!                             to the optimization of BDY communications
[5836]11   !!            3.7  ! 2015-11  (G. Madec) introduce surface and scale factor ratio
[6140]12   !!             -   ! 2015-11  (G. Madec, A. Coward)  time varying zgr by default
[12377]13   !!            4.1  ! 2019-08  (A. Coward, D. Storkey) rename prognostic variables in preparation for new time scheme.
[13237]14   !!            4.x  ! 2020-02  (G. Madec, S. Techene) introduce ssh to h0 ratio
[3]15   !!----------------------------------------------------------------------
16
[2715]17   !!----------------------------------------------------------------------
18   !!   Agrif_Root    : dummy function used when lk_agrif=F
[12933]19   !!   Agrif_Fixed   : dummy function used when lk_agrif=F
[2715]20   !!   Agrif_CFixed  : dummy function used when lk_agrif=F
21   !!   dom_oce_alloc : dynamical allocation of dom_oce arrays
22   !!----------------------------------------------------------------------
23   USE par_oce        ! ocean parameters
24
[3]25   IMPLICIT NONE
[5836]26   PUBLIC             ! allows the acces to par_oce when dom_oce is used (exception to coding rules)
[3]27
[2715]28   PUBLIC dom_oce_alloc  ! Called from nemogcm.F90
29
[3]30   !!----------------------------------------------------------------------
[1601]31   !! time & space domain namelist
32   !! ----------------------------
[7646]33   !                                   !!* Namelist namdom : time & space domain *
34   LOGICAL , PUBLIC ::   ln_linssh      !: =T  linear free surface ==>> model level are fixed in time
[9169]35   LOGICAL , PUBLIC ::   ln_meshmask    !: =T  create a mesh-mask file (mesh_mask.nc)
[14219]36   REAL(dp), PUBLIC ::   rn_Dt          !: time step for the dynamics and tracer
37   REAL(dp), PUBLIC ::   rn_atfp        !: asselin time filter parameter
[12489]38   LOGICAL , PUBLIC ::   ln_1st_euler   !: =T start with forward time step or not (=F)
[7646]39   LOGICAL , PUBLIC ::   ln_crs         !: Apply grid coarsening to dynamical model output or online passive tracers
[4154]40
[5930]41   !! Free surface parameters
42   !! =======================
[7646]43   LOGICAL , PUBLIC :: ln_dynspg_exp    !: Explicit free surface flag
44   LOGICAL , PUBLIC :: ln_dynspg_ts     !: Split-Explicit free surface flag
[5930]45
[4370]46   !! Time splitting parameters
47   !! =========================
[7646]48   LOGICAL,  PUBLIC :: ln_bt_fw         !: Forward integration of barotropic sub-stepping
49   LOGICAL,  PUBLIC :: ln_bt_av         !: Time averaging of barotropic variables
50   LOGICAL,  PUBLIC :: ln_bt_auto       !: Set number of barotropic iterations automatically
51   INTEGER,  PUBLIC :: nn_bt_flt        !: Filter choice
[12489]52   INTEGER,  PUBLIC :: nn_e          !: Number of barotropic iterations during one baroclinic step (rn_Dt)
[7646]53   REAL(wp), PUBLIC :: rn_bt_cmax       !: Maximum allowed courant number (used if ln_bt_auto=T)
[9023]54   REAL(wp), PUBLIC :: rn_bt_alpha      !: Time stepping diffusion parameter
[4370]55
[3]56
[7646]57   !                                   !!! associated variables
[12489]58   LOGICAL , PUBLIC ::   l_1st_euler    !: Euler 1st time-step flag (=T if ln_restart=F or ln_1st_euler=T)
59   REAL(wp), PUBLIC ::   rDt, r1_Dt     !: Current model timestep and reciprocal
60                                        !: rDt = 2 * rn_Dt if leapfrog and l_1st_euler = F
61                                        !:     =     rn_Dt if leapfrog and l_1st_euler = T
62                                        !:     =     rn_Dt if RK3
[4147]63
[3]64   !!----------------------------------------------------------------------
[1601]65   !! space domain parameters
[1715]66   !!----------------------------------------------------------------------
[14644]67   LOGICAL         , PUBLIC ::   l_Iperio, l_Jperio   ! i- j-periodicity
68   LOGICAL         , PUBLIC ::   l_NFold              ! North Pole folding
69   CHARACTER(len=1), PUBLIC ::   c_NFtype             ! type of North pole Folding: T or F point
[1601]70
[13982]71   ! Tiling namelist
72   LOGICAL, PUBLIC ::   ln_tile
73   INTEGER         ::   nn_ltile_i, nn_ltile_j
74
75   ! Domain tiling (all tiles)
76   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   ntsi_a       !: start of internal part of tile domain
77   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   ntsj_a       !
78   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   ntei_a       !: end of internal part of tile domain
79   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   ntej_a       !
80
[13237]81   !                             !: domain MPP decomposition parameters
[14644]82   INTEGER              , PUBLIC ::   nimpp, njmpp     !: i- & j-indexes for mpp-subdomain left bottom
83   INTEGER              , PUBLIC ::   narea            !: number for local area (starting at 1) = MPI rank + 1
84   INTEGER,               PUBLIC ::   nidom      !: IOIPSL things...
[3680]85
[13286]86   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mig        !: local ==> global domain, including halos (jpiglo), i-index
87   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mjg        !: local ==> global domain, including halos (jpjglo), j-index
88   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mig0       !: local ==> global domain, excluding halos (Ni0glo), i-index
89   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mjg0       !: local ==> global domain, excluding halos (Nj0glo), j-index
90   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mi0, mi1   !: global, including halos (jpiglo) ==> local domain i-index
91   !                                                                !:    (mi0=1 and mi1=0 if global index not in local domain)
92   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   mj0, mj1   !: global, including halos (jpjglo) ==> local domain j-index
93   !                                                                !:    (mj0=1 and mj1=0 if global index not in local domain)
94   INTEGER, PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:) ::   nfimpp, nfproc, nfjpi
[1601]95
96   !!----------------------------------------------------------------------
[3]97   !! horizontal curvilinear coordinate and scale factors
98   !! ---------------------------------------------------------------------
[14219]99   REAL(dp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   glamt , glamf
100   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   glamu , glamv     !: longitude at t, u, v, f-points [degree]
101   REAL(dp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   gphit , gphif
102   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   gphiu , gphiv     !: latitude  at t, u, v, f-points [degree]
103   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e1t   , e2t
104   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   r1_e1t, r1_e2t   !: t-point horizontal scale factors    [m]
105   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e1u
106   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e2u  , r1_e1u, r1_e2u   !: horizontal scale factors at u-point [m]
107   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e2v
108   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e1v   , r1_e1v, r1_e2v   !: horizontal scale factors at v-point [m]
109   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e1f
110   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   e2f
111   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, TARGET, DIMENSION(:,:) ::   r1_e1f, r1_e2f   !: horizontal scale factors at f-point [m]
[5836]112   !
[14219]113   REAL(dp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   e1e2t
114   REAL(dp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   r1_e1e2t                !: associated metrics at t-point
115   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   e1e2u , e2_e1u, r1_e1e2u        !: associated metrics at u-point
116   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   e1e2v , e1_e2v, r1_e1e2v        !: associated metrics at v-point
[7646]117   REAL(wp), PUBLIC, ALLOCATABLE, SAVE        , DIMENSION(:,:) ::   e1e2f , r1_e1e2f                !: associated metrics at f-point
[5836]118   !
[12377]119   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   ff_f  , ff_t                    !: Coriolis factor at f- & t-points  [1/s]
[14200]120   
[3]121   !!----------------------------------------------------------------------
122   !! vertical coordinate and scale factors
[1715]123   !! ---------------------------------------------------------------------
[14200]124#if defined key_qco
125   LOGICAL, PUBLIC, PARAMETER ::   lk_qco    = .TRUE.   !: qco key flag
126#else
127   LOGICAL, PUBLIC, PARAMETER ::   lk_qco    = .FALSE.  !: qco key flag
128#endif
129#if defined key_linssh
130   LOGICAL, PUBLIC, PARAMETER ::   lk_linssh = .TRUE.   !: linssh key flag
131#else
132   LOGICAL, PUBLIC, PARAMETER ::   lk_linssh = .FALSE.  !: linssh key flag
133#endif
[6140]134   LOGICAL, PUBLIC ::   ln_zco       !: z-coordinate - full step
135   LOGICAL, PUBLIC ::   ln_zps       !: z-coordinate - partial step
136   LOGICAL, PUBLIC ::   ln_sco       !: s-coordinate or hybrid z-s coordinate
[14072]137   LOGICAL, PUBLIC ::   ln_isfcav    !: presence of ISF
[12377]138   !                                                        !  reference scale factors
[14219]139   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::     e3t_0   !: t- vert. scale factor [m]
[12377]140   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::     e3u_0   !: u- vert. scale factor [m]
141   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::     e3v_0   !: v- vert. scale factor [m]
142   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::     e3f_0   !: f- vert. scale factor [m]
143   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::     e3w_0   !: w- vert. scale factor [m]
144   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::    e3uw_0   !: uw-vert. scale factor [m]
145   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::    e3vw_0   !: vw-vert. scale factor [m]
[14219]146   !                                                        !  time-dependent scale factors
147   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:,:) ::   e3t
148   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:,:) ::   e3u, e3v, e3w, e3uw, e3vw  !: vert. scale factor [m]
[12377]149   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   e3f                             !: F-point vert. scale factor [m]
[14200]150
151   !                                                        !  time-dependent ratio ssh / h_0   (domqco)
[13237]152   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   r3t, r3u, r3v                   !: time-dependent    ratio at t-, u- and v-point [-]
153   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   r3f                             !: mid-time-level    ratio at f-point            [-]
154   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   r3t_f, r3u_f, r3v_f             !: now time-filtered ratio at t-, u- and v-point [-]
[1601]155
[12377]156   !                                                        !  reference depths of cells
[14219]157   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   gdept_0  !: t- depth              [m]
158   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   gdepw_0  !: w- depth              [m]
159   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) ::   gde3w_0  !: w- depth (sum of e3w) [m]
160   !                                                        !  time-dependent depths of cells
161   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:,:) ::  gdept
162   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:,:) ::  gdepw 
163   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::  gde3w 
[14200]164   
[13237]165   !                                                        !  reference heights of ocean water column and its inverse
[14219]166   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   ht_0
167   REAL(dp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   r1_ht_0   !: t-depth        [m] and [1/m]
[13237]168   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   hu_0, r1_hu_0   !: u-depth        [m] and [1/m]
169   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   hv_0, r1_hv_0   !: v-depth        [m] and [1/m]
170   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   hf_0, r1_hf_0   !: f-depth        [m] and [1/m]
[14200]171   
172   !                                                        ! time-dependent heights of ocean water column   (domvvl)
[13237]173   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)     ::   ht          !: t-points           [m]
174   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   hu, r1_hu   !: u-depth            [m] and [1/m]
175   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:)   ::   hv, r1_hv   !: v-depth            [m] and [1/m]
[3]176
[1601]177   INTEGER, PUBLIC ::   nla10              !: deepest    W level Above  ~10m (nlb10 - 1)
[14072]178   INTEGER, PUBLIC ::   nlb10              !: shallowest W level Bellow ~10m (nla10 + 1)
[1577]179
[6140]180   !! 1D reference  vertical coordinate
[454]181   !! =-----------------====------
[4292]182   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:)   ::   gdept_1d, gdepw_1d !: reference depth of t- and w-points (m)
183   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:)   ::   e3t_1d  , e3w_1d   !: reference vertical scale factors at T- and W-pts (m)
[454]184
[12377]185   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   risfdep, bathy
[3]186
187   !!----------------------------------------------------------------------
[7646]188   !! masks, top and bottom ocean point position
[1715]189   !! ---------------------------------------------------------------------
[7646]190!!gm Proposition of new name for top/bottom vertical indices
[13237]191!   INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   mtk_t, mtk_u, mtk_v   !: top    first wet T-, U-, and V-level (ISF)
192!   INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   mbk_t, mbk_u, mbk_v   !: bottom last  wet T-, U-, and V-level
[7646]193!!gm
194   INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   mbkt, mbku, mbkv   !: bottom last wet T-, U- and V-level
[6140]195   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   tmask_i            !: interior domain T-point mask
196   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   tmask_h            !: internal domain T-point mask (Figure 8.5 NEMO book)
[3]197
[13286]198   INTEGER , PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   mikt, miku, mikv, mikf   !: top first wet T-, U-, V-, F-level           (ISF)
[4990]199
[13237]200   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:)           ::   ssmask, ssumask, ssvmask, ssfmask   !: surface mask at T-,U-, V- and F-pts
[14053]201   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:), TARGET ::   tmask, umask, vmask, wmask, fmask   !: land/ocean mask at T-, U-, V-, W- and F-pts
202   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:), TARGET ::   wumask, wvmask                      !: land/ocean mask at WU- and WV-pts
[14200]203   REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:), TARGET ::   fe3mask                             !: land/ocean mask at F-pts (qco only)
204
[3]205   !!----------------------------------------------------------------------
[1715]206   !! calendar variables
207   !! ---------------------------------------------------------------------
[2528]208   INTEGER , PUBLIC ::   nyear         !: current year
209   INTEGER , PUBLIC ::   nmonth        !: current month
210   INTEGER , PUBLIC ::   nday          !: current day of the month
[6140]211   INTEGER , PUBLIC ::   nhour         !: current hour
212   INTEGER , PUBLIC ::   nminute       !: current minute
[2528]213   INTEGER , PUBLIC ::   ndastp        !: time step date in yyyymmdd format
214   INTEGER , PUBLIC ::   nday_year     !: current day counted from jan 1st of the current year
[12377]215   INTEGER , PUBLIC ::   nsec_year     !: seconds between 00h jan 1st of the current  year and half of the current time step
216   INTEGER , PUBLIC ::   nsec_month    !: seconds between 00h 1st day of the current month and half of the current time step
217   INTEGER , PUBLIC ::   nsec_monday   !: seconds between 00h         of the last Monday   and half of the current time step
218   INTEGER , PUBLIC ::   nsec_day      !: seconds between 00h         of the current   day and half of the current time step
[14286]219   REAL(dp), PUBLIC ::   fjulday       !: current julian day
[14219]220   REAL(dp), PUBLIC ::   fjulstartyear !: first day of the current year in julian days
[2528]221   REAL(wp), PUBLIC ::   adatrj        !: number of elapsed days since the begining of the whole simulation
222   !                                   !: (cumulative duration of previous runs that may have used different time-step size)
[12377]223   INTEGER , PUBLIC, DIMENSION(  0: 2) ::   nyear_len     !: length in days of the previous/current/next year
224   INTEGER , PUBLIC, DIMENSION(-11:25) ::   nmonth_len    !: length in days of the months of the current year
225   INTEGER , PUBLIC, DIMENSION(-11:25) ::   nmonth_beg    !: second since Jan 1st 0h of the current year and the half of the months
226   INTEGER , PUBLIC                  ::   nsec1jan000     !: second since Jan 1st 0h of nit000 year and Jan 1st 0h the current year
227   INTEGER , PUBLIC                  ::   nsec000_1jan000   !: second since Jan 1st 0h of nit000 year and nit000
228   INTEGER , PUBLIC                  ::   nsecend_1jan000   !: second since Jan 1st 0h of nit000 year and nitend
[1715]229
230   !!----------------------------------------------------------------------
[13557]231   !! variable defined here to avoid circular dependencies...
232   !! ---------------------------------------------------------------------
233   INTEGER, PUBLIC ::   nbasin         ! number of basin to be considered in diaprt (glo, atl, pac, ind, ipc)
234
235   !!----------------------------------------------------------------------
[1200]236   !! agrif domain
237   !!----------------------------------------------------------------------
238#if defined key_agrif
239   LOGICAL, PUBLIC, PARAMETER ::   lk_agrif = .TRUE.    !: agrif flag
[13216]240   LOGICAL, PUBLIC            ::   lk_south, lk_north, lk_west, lk_east !: Child grid boundaries (interpolation or not)
[1200]241#else
242   LOGICAL, PUBLIC, PARAMETER ::   lk_agrif = .FALSE.   !: agrif flag
[2715]243#endif
[1886]244
[2715]245   !!----------------------------------------------------------------------
[9598]246   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
[14072]247   !! $Id$
[10068]248   !! Software governed by the CeCILL license (see ./LICENSE)
[2715]249   !!----------------------------------------------------------------------
[1886]250CONTAINS
[2715]251
252#if ! defined key_agrif
253   !!----------------------------------------------------------------------
254   !! NOT 'key_agrif'      dummy function                     No AGRIF zoom
255   !!----------------------------------------------------------------------
[1886]256   LOGICAL FUNCTION Agrif_Root()
257      Agrif_Root = .TRUE.
258   END FUNCTION Agrif_Root
259
[12933]260   INTEGER FUNCTION Agrif_Fixed()
261      Agrif_Fixed = 0
262   END FUNCTION Agrif_Fixed
263
[1886]264   CHARACTER(len=3) FUNCTION Agrif_CFixed()
[14072]265      Agrif_CFixed = '0'
[1886]266   END FUNCTION Agrif_CFixed
[1200]267#endif
[2715]268
269   INTEGER FUNCTION dom_oce_alloc()
270      !!----------------------------------------------------------------------
[13237]271      INTEGER                ::   ii
272      INTEGER, DIMENSION(30) :: ierr
[2715]273      !!----------------------------------------------------------------------
[13237]274      ii = 0   ;   ierr(:) = 0
[2715]275      !
[13237]276      ii = ii+1
[14644]277      ALLOCATE( mig(jpi), mjg(jpj), mig0(jpi), mjg0(jpj), STAT=ierr(ii) )
[2715]278         !
[13237]279      ii = ii+1
[13286]280      ALLOCATE( mi0(jpiglo), mi1(jpiglo), mj0(jpjglo), mj1(jpjglo), STAT=ierr(ii) )
[2715]281         !
[13237]282      ii = ii+1
[5836]283      ALLOCATE( glamt(jpi,jpj) ,    glamu(jpi,jpj) ,  glamv(jpi,jpj) ,  glamf(jpi,jpj) ,     &
284         &      gphit(jpi,jpj) ,    gphiu(jpi,jpj) ,  gphiv(jpi,jpj) ,  gphif(jpi,jpj) ,     &
285         &       e1t (jpi,jpj) ,     e2t (jpi,jpj) , r1_e1t(jpi,jpj) , r1_e2t(jpi,jpj) ,     &
286         &       e1u (jpi,jpj) ,     e2u (jpi,jpj) , r1_e1u(jpi,jpj) , r1_e2u(jpi,jpj) ,     &
287         &       e1v (jpi,jpj) ,     e2v (jpi,jpj) , r1_e1v(jpi,jpj) , r1_e2v(jpi,jpj) ,     &
288         &       e1f (jpi,jpj) ,     e2f (jpi,jpj) , r1_e1f(jpi,jpj) , r1_e2f(jpi,jpj) ,     &
289         &      e1e2t(jpi,jpj) , r1_e1e2t(jpi,jpj)                                     ,     &
290         &      e1e2u(jpi,jpj) , r1_e1e2u(jpi,jpj) , e2_e1u(jpi,jpj)                   ,     &
291         &      e1e2v(jpi,jpj) , r1_e1e2v(jpi,jpj) , e1_e2v(jpi,jpj)                   ,     &
292         &      e1e2f(jpi,jpj) , r1_e1e2f(jpi,jpj)                                     ,     &
[13237]293         &      ff_f (jpi,jpj) ,    ff_t (jpi,jpj)                                     , STAT=ierr(ii) )
[2715]294         !
[13237]295      ii = ii+1
[14200]296      ALLOCATE( gdept_0 (jpi,jpj,jpk) , gdepw_0 (jpi,jpj,jpk) , gde3w_0(jpi,jpj,jpk) ,     &
297         &      gdept_1d(        jpk) , gdepw_1d(        jpk)                        , STAT=ierr(ii) )
[2715]298         !
[13237]299      ii = ii+1
[14200]300      ALLOCATE(  e3t_0 (jpi,jpj,jpk) , e3u_0 (jpi,jpj,jpk) , e3v_0 (jpi,jpj,jpk) , e3f_0(jpi,jpj,jpk) ,     &
301         &       e3w_0 (jpi,jpj,jpk) , e3uw_0(jpi,jpj,jpk) , e3vw_0(jpi,jpj,jpk)                      ,     &
302         &       e3t_1d(        jpk) , e3w_1d(        jpk)                                            , STAT=ierr(ii) )
[2715]303         !
[14200]304      ii = ii+1
305      ALLOCATE( ht_0(jpi,jpj) ,    hu_0(jpi,jpj)    ,    hv_0(jpi,jpj)     , hf_0(jpi,jpj) ,       &
306         &   r1_ht_0(jpi,jpj) , r1_hu_0(jpi,jpj) ,    r1_hv_0(jpi,jpj),   r1_hf_0(jpi,jpj) ,   STAT=ierr(ii)  )
307         !
[14053]308#if defined key_qco
[14200]309         ! qco : ssh to h ratio and specific fmask
[13237]310      ii = ii+1
[14200]311      ALLOCATE( r3t  (jpi,jpj,jpt) , r3u  (jpi,jpj,jpt) , r3v  (jpi,jpj,jpt) , r3f  (jpi,jpj) ,      &
312         &      r3t_f(jpi,jpj)     , r3u_f(jpi,jpj)     , r3v_f(jpi,jpj)                      ,  STAT=ierr(ii) )
313         !
314      ii = ii+1
315      ALLOCATE( fe3mask(jpi,jpj,jpk) , STAT=ierr(ii) )
316         !
317#elif defined key_linssh
318         ! linear ssh no time varying coordinate arrays
[14053]319#else
[14200]320         ! vvl : time varation for all vertical coordinate variables
[14053]321      ii = ii+1
[14200]322      ALLOCATE( gdept  (jpi,jpj,jpk,jpt) , gdepw  (jpi,jpj,jpk,jpt) , gde3w  (jpi,jpj,jpk) , STAT=ierr(ii) )
323         !
324      ii = ii+1
[13237]325      ALLOCATE( e3t(jpi,jpj,jpk,jpt) , e3u (jpi,jpj,jpk,jpt) , e3v (jpi,jpj,jpk,jpt) , e3f(jpi,jpj,jpk) ,      &
326         &      e3w(jpi,jpj,jpk,jpt) , e3uw(jpi,jpj,jpk,jpt) , e3vw(jpi,jpj,jpk,jpt)                    ,  STAT=ierr(ii) )
[2715]327         !
[13237]328      ii = ii+1
[14200]329      ALLOCATE( ht  (jpi,jpj) ,    hu  (jpi,jpj,jpt),    hv  (jpi,jpj,jpt) ,       &
330         &                      r1_hu  (jpi,jpj,jpt), r1_hv  (jpi,jpj,jpt) ,   STAT=ierr(ii)  )
[13237]331#endif
332         !
333      ii = ii+1
[13982]334      ALLOCATE( risfdep(jpi,jpj) , bathy(jpi,jpj) , STAT=ierr(ii)  )
[13237]335         !
336      ii = ii+1
[14200]337      ALLOCATE( tmask_i(jpi,jpj) , tmask_h(jpi,jpj) ,                                           &
[13237]338         &      ssmask (jpi,jpj) , ssumask(jpi,jpj) , ssvmask(jpi,jpj) , ssfmask(jpi,jpj) ,     &
[14200]339         &      mbkt   (jpi,jpj) , mbku   (jpi,jpj) , mbkv   (jpi,jpj)                    , STAT=ierr(ii) )
[7646]340         !
[13237]341      ii = ii+1
342      ALLOCATE( mikt(jpi,jpj), miku(jpi,jpj), mikv(jpi,jpj), mikf(jpi,jpj), STAT=ierr(ii) )
[7646]343         !
[13237]344      ii = ii+1
[13982]345      ALLOCATE( tmask(jpi,jpj,jpk) , umask(jpi,jpj,jpk) ,     &
[13237]346         &      vmask(jpi,jpj,jpk) , fmask(jpi,jpj,jpk) , STAT=ierr(ii) )
[7646]347         !
[13237]348      ii = ii+1
349      ALLOCATE( wmask(jpi,jpj,jpk) , wumask(jpi,jpj,jpk), wvmask(jpi,jpj,jpk) , STAT=ierr(ii) )
[2715]350      !
351      dom_oce_alloc = MAXVAL(ierr)
352      !
353   END FUNCTION dom_oce_alloc
354
[1601]355   !!======================================================================
[3]356END MODULE dom_oce
Note: See TracBrowser for help on using the repository browser.