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_lobster1.h90 in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/sms_lobster1.h90 @ 719

Last change on this file since 719 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.9 KB
Line 
1!!--------------------------------------------------------------------
2!!
3!!                         COMMON passivetrc.lobster1.h
4!!                      *******************************
5!!
6!!  purpose :
7!!  ---------
8!!     INCLUDE COMMON FILE for LOBSTER1 biological model (IF key_trc_lobster1)
9!!
10!!  modifications :
11!!   -------------
12!!      original    : 99-09 (M. Levy)
13!!      additions   : 00-12 (O. Aumont, E. Kestenare):
14!!                           add sediment parameters
15!!
16!!---------------------------------------------------------------------
17!!  TOP 1.0 , LOCEAN-IPSL (2005)
18   !! $Header$
19   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
20!!---------------------------------------------------------------------
21!!
22!!
23!!----------------------------------------------------------------------
24!!
25!!  biological parameters
26!! --------------------------------------------
27!!
28!!      apmin     : minimum phytoplancton concentration (NAMELIST)
29!!      azmin     : minimum zooplancton concentration (NAMELIST)
30!!      anmin     : minimum nutrients concentration (NAMELIST)
31!!      admin     : minimum detritus concentration (NAMELIST)
32!!      redf      : redfield ratio c:n (NAMELIST)
33!!      reddom    : redfield ratio c:n for DOM
34!!      slopet    : van t hoff coefficient (NAMELIST)
35!!      toptp     : optimal photosynthesis temperature (NAMELIST)
36!!      aknut     : half-saturation nutrient (NAMELIST)
37!!      akno3     : half-saturation for nitrate (NAMELIST)
38!!      aknh4     : half-saturation for ammonium (NAMELIST)
39!!      psinut    : inhibition of nitrate uptake by ammonium (NAMELIST)
40!!      rgamma    : phytoplankton exudation fraction (NAMELIST)
41!!      toptgz    : optimal temperature for zooplankton growth (NAMELIST)
42!!      tmaxgz    : maximal temperature for zooplankton growth (NAMELIST)
43!!      rgz       : widtht of zooplankton temperature FUNCTION (NAMELIST)
44!!      rppz      : zooplankton nominal preference for phytoplancton
45!!                  food, (NAMELIST)
46!!      taus      : maximum specific zooplankton grazing rate (NAMELIST)
47!!      aks       : half saturation constant for total zooplankton
48!! grazing (NAMELIST)
49!!      filmax    : maximum mass clearance rate for zooplankton (NAMELIST)
50!!      rpnaz     : non-assimilated phytoplankton by zooplancton (NAMELIST)
51!!      rdnaz     : non-assimilated detritus by zooplankton (NAMELIST)
52!!      eggzoo    : minimum for zooplankton concentration (NAMELIST)
53!!      tauzn     : zooplancton specific excretion rate (NAMELIST)
54!!      tmmaxp    : maximal phytoplancton mortality rate (NAMELIST)
55!!      tmminp    : minimal phytoplancton mortality rate (NAMELIST)
56!!      tmmaxz    : maximal zooplankton mortality rate (NAMELIST)
57!!      tmminz    : minimal zooplankton mortality rate (NAMELIST)
58!!      anumin    : nutrient threshold for phytoplankton mortality (NAMELIST)
59!!      afdmin    : food threshold for zooplankton mortality (NAMELIST)
60!!      taudn     : detrital breakdown rate (NAMELIST)
61!!      vsed      : sedimentation speed (NAMELIST)
62!!      tmumax    : maximal phytoplankton growth rate (NAMELIST)
63!!      aki       : light photosynthesis half saturation constant (NAMELIST)
64!!
65!!      tmaxr     : maximum coefficient for passive tracer damping (NAMELIST)
66!!      tminr     : minimum coefficient for passive tracer damping (NAMELIST)
67!!      remdmp()  : damping coefficient of passive tracers (depth dependant)
68!!      fdoml     : fraction of exsudation that goes to nh4 (should be labile dom)
69!!      taunn     : nitrification rate
70!!      taudomn   : slow remineralization rate of semi-labile dom to nh4
71!!      xhr       : coeff for Martin's remineralistion profile
72!!
73!!      added by asklod AS Kremeur 2005-03:
74!!      fphylab   : NH4 fraction of phytoplankton excretion
75!!      fzoolab   : NH4 fraction of zooplankton excretion
76!!      fdetlab   : NH4 fraction of detritus dissolution
77!!      fdbod     : zooplankton mortality fraction that goes to detritus
78
79      REAL apmin,azmin,anmin,admin,  &
80                    redf,reddom,slopet,toptp,aknut,psinut,akno3,aknh4,rcchl,  &
81                     rgamma,toptgz,tmaxgz,rgz,  &
82                     rppz,taus,aks,filmax,rpnaz,rdnaz,eggzoo,tauzn,  &
83                     tmmaxp,tmminp,tmmaxz,tmminz,anumin,afdmin,taudn,  &
84                     vsed,tmumax,aki,  &
85                     tmaxr,tminr,fdoml,taunn,taudomn,xhr,  &
86                     fphylab,fzoolab,fdetlab,fdbod
87      REAL remdmp(jpk,jptra)
88
89!!
90!!
91#    if defined key_trc_diabio
92!!
93!!----------------------------------------------------------------------
94!!
95!!  biological trends
96!! ------------------------------------------------------------------
97!!
98!!      ctrbio    : biological trends name (NAMELIST)
99!!      ctrbil    : biological trends long name (NAMELIST)
100!!      ctrbiu    : biological trends unit (NAMELIST)
101!!      trbio()   : biological trends
102!!
103      CHARACTER*8 ctrbio(jpdiabio)
104      CHARACTER*20 ctrbiu(jpdiabio)
105      CHARACTER*80 ctrbil(jpdiabio)
106      REAL trbio(jpi,jpj,jpk,jpdiabio)
107
108!!
109!!    netcdf files and index COMMON biological trends files
110!!
111!!      nwritebio: time step frequency for biological outputs (NAMELIST)
112! asklod 10-2005: oubli de cette partie dans l update:
113!!      nitb     : id for additional array output FILE
114!!      ndepitb  : id for depth mesh
115!!      nhoritb  : id for horizontal mesh
116!!
117      INTEGER nwritebio,nitb,ndepitb,nhoritb
118
119#    endif
120
121!!----------------------------------------------------------------------
122!!
123!!  optical parameters
124!! -----------------------------------
125!!
126!!      xze       : euphotic layer depth
127!!      xpar      : par (photosynthetic available radiation)
128!!      xkr0      : water coefficient absorption in red (NAMELIST)
129!!      xkg0      : water coefficient absorption in green (NAMELIST)
130!!      xkrp      : pigment coefficient absorption in red (NAMELIST)
131!!      xkgp      : pigment coefficient absorption in green (NAMELIST)
132!!      xlr       : exposant for pigment absorption in red (NAMELIST)
133!!      xlg       : exposant for pigment absorption in green (NAMELIST)
134!!      rpig      : chla/chla+phea ratio (NAMELIST)
135!!
136      REAL xkr0,xkg0,xkrp,xkgp,xlr,xlg,rpig
137
138      REAL xze(jpi,jpj)
139      REAL xpar(jpi,jpj,jpk)
140
141!!----------------------------------------------------------------------
142!!
143!!  sediment parameters
144!! --------------------------------------
145!!
146!!      sedlam : time coefficient of POC remineralization in sediments
147!!      dmin3  : fraction of sinking POC released at each level
148!!      dminl  : fraction of sinking POC released in sediments
149!! asklod add sedpocb, sedpocn, sedpoca 17 06 2005
150!!      sedpocb : mass of POC in sediments
151!!      sedpocn : mass of POC in sediments
152!!      sedpoca : mass of POC in sediments
153!!      fbod   : rapid sinking particles
154!!
155!!
156      REAL sedlam,sedlostpoc
157      REAL dmin3(jpi,jpj,jpk), dminl(jpi,jpj)
158      REAL sedpoca(jpi,jpj),sedpocb(jpi,jpj),sedpocn(jpi,jpj)
159      REAL fbod(jpi,jpj),cmask(jpi,jpj),areacot
160
Note: See TracBrowser for help on using the repository browser.