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.
p4zbio.F90 in branches/2015/dev_r5836_NOC3_vvl_by_default/NEMOGCM/NEMO/TOP_SRC/PISCES/P4Z – NEMO

source: branches/2015/dev_r5836_NOC3_vvl_by_default/NEMOGCM/NEMO/TOP_SRC/PISCES/P4Z/p4zbio.F90 @ 6004

Last change on this file since 6004 was 6004, checked in by gm, 8 years ago

#1613: vvl by default, step III: Merge with the trunk (free surface simplification) (see wiki)

File size: 4.9 KB
Line 
1MODULE p4zbio
2   !!======================================================================
3   !!                         ***  MODULE p4zbio  ***
4   !! TOP :   PISCES bio-model
5   !!======================================================================
6   !! History :   1.0  !  2004     (O. Aumont) Original code
7   !!             2.0  !  2007-12  (C. Ethe, G. Madec)  F90
8   !!----------------------------------------------------------------------
9#if defined key_pisces
10   !!----------------------------------------------------------------------
11   !!   'key_pisces'                                       PISCES bio-model
12   !!----------------------------------------------------------------------
13   !!   p4z_bio        :   computes the interactions between the different
14   !!                      compartments of PISCES
15   !!----------------------------------------------------------------------
16   USE oce_trc         !  shared variables between ocean and passive tracers
17   USE trc             !  passive tracers common variables
18   USE sms_pisces      !  PISCES Source Minus Sink variables
19   USE p4zsink         !  vertical flux of particulate matter due to sinking
20   USE p4zopt          !  optical model
21   USE p4zlim          !  Co-limitations of differents nutrients
22   USE p4zprod         !  Growth rate of the 2 phyto groups
23   USE p4zmort         !  Mortality terms for phytoplankton
24   USE p4zmicro        !  Sources and sinks of microzooplankton
25   USE p4zmeso         !  Sources and sinks of mesozooplankton
26   USE p4zrem          !  Remineralisation of organic matter
27   USE p4zfechem
28   USE prtctl_trc      !  print control for debugging
29   USE iom             !  I/O manager
30 
31   IMPLICIT NONE
32   PRIVATE
33
34   PUBLIC  p4z_bio   
35
36   !!----------------------------------------------------------------------
37   !! NEMO/TOP 3.3 , NEMO Consortium (2010)
38   !! $Id: p4zbio.F90 3160 2011-11-20 14:27:18Z cetlod $
39   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
40   !!----------------------------------------------------------------------
41CONTAINS
42
43   SUBROUTINE p4z_bio ( kt, knt )
44      !!---------------------------------------------------------------------
45      !!                     ***  ROUTINE p4z_bio  ***
46      !!
47      !! ** Purpose :   Ecosystem model in the whole ocean: computes the
48      !!              different interactions between the different compartments
49      !!              of PISCES
50      !!
51      !! ** Method  : - ???
52      !!---------------------------------------------------------------------
53      INTEGER, INTENT(in) :: kt, knt
54      INTEGER             :: ji, jj, jk, jn
55      CHARACTER (len=25) :: charout
56
57      !!---------------------------------------------------------------------
58      !
59      IF( nn_timing == 1 )  CALL timing_start('p4z_bio')
60      !
61      !     ASSIGN THE SHEAR RATE THAT IS USED FOR AGGREGATION
62      !     OF PHYTOPLANKTON AND DETRITUS
63
64      xdiss(:,:,:) = 1.
65!!gm the use of nmld should be better here?
66      DO jk = 2, jpkm1
67         DO jj = 1, jpj
68            DO ji = 1, jpi
69!!gm  :  use nmln  and test on jk ...  less memory acces
70               IF( gdepw_n(ji,jj,jk+1) > hmld(ji,jj) )   xdiss(ji,jj,jk) = 0.01
71            END DO
72         END DO
73      END DO
74
75      CALL p4z_opt  ( kt, knt )     ! Optic: PAR in the water column
76      CALL p4z_sink ( kt, knt )     ! vertical flux of particulate organic matter
77      CALL p4z_fechem(kt, knt )     ! Iron chemistry/scavenging
78      CALL p4z_lim  ( kt, knt )     ! co-limitations by the various nutrients
79      CALL p4z_prod ( kt, knt )     ! phytoplankton growth rate over the global ocean.
80      !                             ! (for each element : C, Si, Fe, Chl )
81      CALL p4z_mort ( kt      )     ! phytoplankton mortality
82     !                             ! zooplankton sources/sinks routines
83      CALL p4z_micro( kt, knt )           ! microzooplankton
84      CALL p4z_meso ( kt, knt )           ! mesozooplankton
85      CALL p4z_rem  ( kt, knt )     ! remineralization terms of organic matter+scavenging of Fe
86      !                             ! test if tracers concentrations fall below 0.
87      !                                                             !
88      IF(ln_ctl)   THEN  ! print mean trends (used for debugging)
89         WRITE(charout, FMT="('bio ')")
90         CALL prt_ctl_trc_info(charout)
91         CALL prt_ctl_trc(tab4d=tra, mask=tmask, clinfo=ctrcnm)
92      ENDIF
93      !
94      IF( nn_timing == 1 )  CALL timing_stop('p4z_bio')
95      !
96   END SUBROUTINE p4z_bio
97
98#else
99   !!======================================================================
100   !!  Dummy module :                                   No PISCES bio-model
101   !!======================================================================
102CONTAINS
103   SUBROUTINE p4z_bio                         ! Empty routine
104   END SUBROUTINE p4z_bio
105#endif 
106
107   !!======================================================================
108END MODULE p4zbio
Note: See TracBrowser for help on using the repository browser.