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.
par_oce.F90 in branches/2017/dev_r7881_ENHANCE09_RK3/NEMOGCM/CONFIG/TEST_CASES/SAS_BIPER/MY_SRC – NEMO

source: branches/2017/dev_r7881_ENHANCE09_RK3/NEMOGCM/CONFIG/TEST_CASES/SAS_BIPER/MY_SRC/par_oce.F90 @ 8725

Last change on this file since 8725 was 8725, checked in by clem, 6 years ago

change sasbiper test case ==> advection of an ice patch with a constant ice-atm stress, thus at a velocity defined by ice rheology (variable) + use 3 ghost cells (defined in par_oce.F90)

File size: 5.5 KB
Line 
1MODULE par_oce
2   !!======================================================================
3   !!                        ***  par_oce  ***
4   !! Ocean :   set the ocean parameters
5   !!======================================================================
6   !! History :  OPA  !  1991     (Imbard, Levy, Madec)  Original code
7   !!   NEMO     1.0  !  2004-01  (G. Madec, J.-M. Molines)  Free form and module
8   !!            3.3  !  2010-09  (C. Ethe) TRA-TRC merge: add jpts, jp_tem & jp_sal
9   !!----------------------------------------------------------------------
10   USE par_kind          ! kind parameters
11
12   IMPLICIT NONE
13   PUBLIC
14
15   !!----------------------------------------------------------------------
16   !!                   namcfg namelist parameters
17   !!----------------------------------------------------------------------
18   LOGICAL       ::   ln_read_cfg      !: (=T) read the domain configuration file or (=F) not
19   CHARACTER(lc) ::      cn_domcfg        !: filename the configuration file to be read
20   LOGICAL       ::   ln_write_cfg     !: (=T) create the domain configuration file
21   CHARACTER(lc) ::      cn_domcfg_out    !: filename the configuration file to be read
22   !
23   LOGICAL       ::   ln_use_jattr     !: input file read offset
24   !                                   !  Use file global attribute: open_ocean_jstart to determine start j-row
25   !                                   !  when reading input from those netcdf files that have the
26   !                                   !  attribute defined. This is designed to enable input files associated
27   !                                   !  with the extended grids used in the under ice shelf configurations to
28   !                                   !  be used without redundant rows when the ice shelves are not in use.
29   !
30
31   !!---------------------------------------------------------------------
32   !! Domain Matrix size
33   !!---------------------------------------------------------------------
34   ! configuration name & resolution   (required only in ORCA family case)
35   CHARACTER(lc) ::   cn_cfg           !: name of the configuration
36   INTEGER       ::   nn_cfg           !: resolution of the configuration
37
38   ! global domain size               !!! * total computational domain *
39   INTEGER       ::   jpiglo           !: 1st dimension of global domain --> i-direction
40   INTEGER       ::   jpjglo           !: 2nd    -                  -    --> j-direction
41   INTEGER       ::   jpkglo           !: 3nd    -                  -    --> k levels
42
43#if defined key_agrif
44
45!!gm  BUG ?   I'm surprised by the calculation below of nbcellsx and nbcellsy before jpiglo,jpjglo
46!!gm                           has been assigned to a value....
47!!gm
48
49   ! global domain size for AGRIF     !!! * total AGRIF computational domain *
50   INTEGER, PUBLIC, PARAMETER ::   nbghostcells = 3                             !: number of ghost cells
51   INTEGER, PUBLIC            ::   nbcellsx     = jpiglo - 2 - 2*nbghostcells   !: number of cells in i-direction
52   INTEGER, PUBLIC            ::   nbcellsy     = jpjglo - 2 - 2*nbghostcells   !: number of cells in j-direction
53#endif
54
55   ! local domain size                !!! * local computational domain *
56   INTEGER, PUBLIC ::   jpi   ! = ( jpiglo-2*jpreci + (jpni-1) ) / jpni + 2*jpreci   !: first  dimension
57   INTEGER, PUBLIC ::   jpj   ! = ( jpjglo-2*jprecj + (jpnj-1) ) / jpnj + 2*jprecj   !: second dimension
58   INTEGER, PUBLIC ::   jpk   ! = jpkglo
59   INTEGER, PUBLIC ::   jpim1 ! = jpi-1                                            !: inner domain indices
60   INTEGER, PUBLIC ::   jpjm1 ! = jpj-1                                            !:   -     -      -
61   INTEGER, PUBLIC ::   jpkm1 ! = jpk-1                                            !:   -     -      -
62   INTEGER, PUBLIC ::   jpij  ! = jpi*jpj                                          !:  jpi x jpj
63
64   !!---------------------------------------------------------------------
65   !! Active tracer parameters
66   !!---------------------------------------------------------------------
67   INTEGER, PUBLIC, PARAMETER ::   jpts   = 2    !: Number of active tracers (=2, i.e. T & S )
68   INTEGER, PUBLIC, PARAMETER ::   jp_tem = 1    !: indice for temperature
69   INTEGER, PUBLIC, PARAMETER ::   jp_sal = 2    !: indice for salinity
70
71   !!----------------------------------------------------------------------
72   !!   Domain decomposition
73   !!----------------------------------------------------------------------
74   !! if we dont use massively parallel computer (parameters jpni=jpnj=1) so jpiglo=jpi and jpjglo=jpj
75   INTEGER, PUBLIC            ::   jpni         !: number of processors following i
76   INTEGER, PUBLIC            ::   jpnj         !: number of processors following j
77   INTEGER, PUBLIC            ::   jpnij        !: nb of local domain = nb of processors ( <= jpni x jpnj )
78   INTEGER, PUBLIC, PARAMETER ::   jpr2di = 0   !: number of columns for extra outer halo
79   INTEGER, PUBLIC, PARAMETER ::   jpr2dj = 0   !: number of rows    for extra outer halo
80   INTEGER, PUBLIC, PARAMETER ::   jpreci = 1   !: number of columns for overlap
81   INTEGER, PUBLIC, PARAMETER ::   jprecj = 1   !: number of rows    for overlap
82
83   !!----------------------------------------------------------------------
84   !! NEMO/OPA 4.0 , NEMO Consortium (2016)
85   !! $Id: par_oce.F90 7646 2017-02-06 09:25:03Z timgraham $
86   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
87   !!======================================================================
88END MODULE par_oce
Note: See TracBrowser for help on using the repository browser.