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

source: trunk/NEMO/TOP_SRC/SMS/trcbio.F @ 247

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

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1
2CCC $Header$ 
3CCC  TOP 1.0 , LOCEAN-IPSL (2005) 
4C This software is governed by CeCILL licence see modipsl/doc/NEMO_CeCILL.txt 
5C ---------------------------------------------------------------------------
6CCC $Header$
7CDIR$ LIST
8      SUBROUTINE trcbio(kt)
9CCC---------------------------------------------------------------------
10CCC
11CCC                       ROUTINE trcbio
12CCC                     *******************
13CCC
14CCC  PURPOSE :
15CCC  ---------
16CCC     compute the now trend due to biogeochemical processes
17CCC     and add it to the general trend of passive tracers equations.
18CCC
19CCC   Three options:
20CCC     Default option  : no biological trend
21CCC       If 'key_trc_npzd' : NPZD model
22CCC       IF 'key_trc_lobster1' : LOBSTER1 model
23CCC
24CC   METHOD :
25CC   -------
26CC      each now biological flux is calculated  in FUNCTION of now
27CC      concentrations of tracers.
28CC      depending on the tracer, these fluxes are sources or sinks.
29CC      the total of the sources and sinks for each tracer
30CC      is added to the general trend.
31CC
32CC    tra = tra + zf...tra - zftra...
33CC                             |         |
34CC                             |         |
35CC                          source      sink
36CC
37CC
38CC      IF 'key_trc_diabio' key is activated, the biogeochemical
39CC trends for passive tracers are saved for futher diagnostics.
40CC
41CC      multitasked on vertical slab (jj-loop)
42CC
43CCC   MODIFICATIONS:
44CC   --------------
45CC       original : 95-02 (M. Levy, NPZD model)
46CC                  99-07 (M. Levy, LOBSTER1 model)
47CCC---------------------------------------------------------------------
48CCC  OPA8, LODYC (15/11/96)
49CCC---------------------------------------------------------------------
50#if defined key_passivetrc 
51#  if defined key_trc_npzd 
52#    include "trcbio.npzd.h"
53#  elif defined key_trc_lobster1
54#    include "trcbio.lobster1.h"
55#  else
56C
57C    no biological model
58C
59#  endif
60#endif
61C
62C
63      RETURN
64      END
Note: See TracBrowser for help on using the repository browser.