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/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/TOP_SRC/PISCES/P4Z – NEMO

source: branches/2016/dev_r6519_HPC_4/NEMOGCM/NEMO/TOP_SRC/PISCES/P4Z/p4zbio.F90 @ 7037

Last change on this file since 7037 was 7037, checked in by mocavero, 8 years ago

ORCA2_LIM_PISCES hybrid version update

File size: 5.0 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!$OMP PARALLEL
65!$OMP WORKSHARE
66      xdiss(:,:,:) = 1.
67!$OMP END WORKSHARE
68!!gm the use of nmld should be better here?
69!$OMP DO schedule(static) private(jk,jj,ji)
70      DO jk = 2, jpkm1
71         DO jj = 1, jpj
72            DO ji = 1, jpi
73!!gm  :  use nmln  and test on jk ...  less memory acces
74               IF( gdepw_n(ji,jj,jk+1) > hmld(ji,jj) )   xdiss(ji,jj,jk) = 0.01
75            END DO
76         END DO
77      END DO
78!$OMP END DO NOWAIT
79!$OMP END PARALLEL
80
81      CALL p4z_opt  ( kt, knt )     ! Optic: PAR in the water column
82      CALL p4z_sink ( kt, knt )     ! vertical flux of particulate organic matter
83      CALL p4z_fechem(kt, knt )     ! Iron chemistry/scavenging
84      CALL p4z_lim  ( kt, knt )     ! co-limitations by the various nutrients
85      CALL p4z_prod ( kt, knt )     ! phytoplankton growth rate over the global ocean.
86      !                             ! (for each element : C, Si, Fe, Chl )
87      CALL p4z_mort ( kt      )     ! phytoplankton mortality
88     !                             ! zooplankton sources/sinks routines
89      CALL p4z_micro( kt, knt )           ! microzooplankton
90      CALL p4z_meso ( kt, knt )           ! mesozooplankton
91      CALL p4z_rem  ( kt, knt )     ! remineralization terms of organic matter+scavenging of Fe
92      !                             ! test if tracers concentrations fall below 0.
93      !                                                             !
94      IF(ln_ctl)   THEN  ! print mean trends (used for debugging)
95         WRITE(charout, FMT="('bio ')")
96         CALL prt_ctl_trc_info(charout)
97         CALL prt_ctl_trc(tab4d=tra, mask=tmask, clinfo=ctrcnm)
98      ENDIF
99      !
100      IF( nn_timing == 1 )  CALL timing_stop('p4z_bio')
101      !
102   END SUBROUTINE p4z_bio
103
104#else
105   !!======================================================================
106   !!  Dummy module :                                   No PISCES bio-model
107   !!======================================================================
108CONTAINS
109   SUBROUTINE p4z_bio                         ! Empty routine
110   END SUBROUTINE p4z_bio
111#endif 
112
113   !!======================================================================
114END MODULE p4zbio
Note: See TracBrowser for help on using the repository browser.