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.
oce_sed.F90 in NEMO/branches/2018/dev_r10164_HPC09_ESIWACE_PREP_MERGE/src/TOP/PISCES/SED – NEMO

source: NEMO/branches/2018/dev_r10164_HPC09_ESIWACE_PREP_MERGE/src/TOP/PISCES/SED/oce_sed.F90 @ 10345

Last change on this file since 10345 was 10345, checked in by smasson, 5 years ago

dev_r10164_HPC09_ESIWACE_PREP_MERGE: merge with trunk@10344, see #2133

File size: 3.9 KB
Line 
1MODULE oce_sed
2   !!======================================================================
3   !!                        ***  sed  ***
4   !! Sediment :   set sediment global variables
5   !!======================================================================
6   !! History :
7   !!        !  06-12  (C. Ethe)  Orignal
8   !!----------------------------------------------------------------------
9   USE par_sed
10   USE timing
11   USE par_trc
12
13   USE dom_oce , ONLY :   nidom     =>   nidom          !:
14   USE dom_oce , ONLY :   glamt     =>   glamt          !: longitude of t-point (degre)
15   USE dom_oce , ONLY :   gphit     =>   gphit          !: latitude  of t-point (degre)
16   USE dom_oce , ONLY :   e3t_n     =>   e3t_n          !: latitude  of t-point (degre)
17   USE dom_oce , ONLY :   e3t_1d    =>   e3t_1d         !: reference depth of t-points (m)
18   USE dom_oce , ONLY :   gdepw_0   =>   gdepw_0        !: reference depth of t-points (m)
19   USE dom_oce , ONLY :   mbkt      =>   mbkt           !: vertical index of the bottom last T- ocean level
20   USE dom_oce , ONLY :   tmask     =>   tmask          !: land/ocean mask at t-points
21   USE dom_oce , ONLY :   rdt       =>   rdt            !: time step for the dynamics
22   USE dom_oce , ONLY :   nyear     =>   nyear          !: Current year
23   USE dom_oce , ONLY :   nmonth    =>   nmonth         !: Current month
24   USE dom_oce , ONLY :   nday      =>   nday           !: Current day
25   USE dom_oce , ONLY :   ndastp    =>   ndastp         !: time step date in year/month/day aammjj
26   USE dom_oce , ONLY :   nday_year =>   nday_year      !: curent day counted from jan 1st of the current year
27   USE dom_oce , ONLY :   adatrj    =>   adatrj         !: number of elapsed days since the begining of the run
28   USE trc     , ONLY :  nittrc000  =>   nittrc000
29   !                                !: it is the accumulated duration of previous runs
30   !                                !: that may have been run with different time steps.
31
32   USE oce     , ONLY :  tsn        =>   tsn             !: pot. temperature (celsius) and salinity (psu)
33   USE trc     , ONLY :  trb        =>   trb             !: pot. temperature (celsius) and salinity (psu)
34
35   USE sms_pisces, ONLY : wsbio4    =>   wsbio4          !: sinking flux for POC
36   USE sms_pisces, ONLY : wsbio3    =>   wsbio3          !: sinking flux for GOC
37   USE sms_pisces, ONLY : wscal     =>   wscal           !: sinking flux for calcite
38   USE sms_pisces, ONLY : wsbio2    =>   wsbio2           !: sinking flux for calcite
39   USE sms_pisces, ONLY : wsbio     =>   wsbio           !: sinking flux for calcite
40   USE p4zche, ONLY     : akb3      =>   akb3            !: Chemical constants 
41   USE sms_pisces, ONLY : ak13      =>   ak13            !: Chemical constants 
42   USE sms_pisces, ONLY : ak23      =>   ak23            !: Chemical constants 
43   USE p4zche, ONLY     : akw3      =>   akw3            !: Chemical constants 
44   USE sms_pisces, ONLY : aksp      =>   aksp            !: Chemical constants 
45   USE p4zche, ONLY     : borat     =>   borat           !: Chemical constants ( borat )
46   USE p4zche, ONLY     : ak1p3     =>   ak1p3           !: Chemical constants 
47   USE p4zche, ONLY     : ak2p3     =>   ak2p3           !: Chemical constants 
48   USE p4zche, ONLY     : ak3p3     =>   ak3p3           !: Chemical constants 
49   USE p4zche, ONLY     : aksi3     =>   aksi3           !: Chemical constants 
50   USE p4zche, ONLY     : aks3      =>   aks3            !: Chemical constants 
51   USE p4zche, ONLY     : akf3      =>   akf3            !: Chemical constants 
52   USE p4zche, ONLY     : fluorid   =>   fluorid         !: Chemical constants 
53   USE p4zche, ONLY     : sulfat    =>   sulfat          !: Chemical constants 
54   USE p4zche, ONLY     : sio3eq    =>   sio3eq          !: Chemical constants 
55   USE p4zsbc, ONLY     : dust      =>   dust
56   USE trc       , ONLY : r2dttrc   =>   r2dttrc
57
58END MODULE oce_sed
59
60
Note: See TracBrowser for help on using the repository browser.