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.
seddiff.F90 in NEMO/trunk/src/TOP/PISCES/SED – NEMO

source: NEMO/trunk/src/TOP/PISCES/SED/seddiff.F90

Last change on this file was 15450, checked in by cetlod, 2 years ago

Some updates to make the PISCES/SED module usable. Totally orthogonal with no effect on other parts of the code

File size: 1.6 KB
Line 
1MODULE seddiff
2   !!======================================================================
3   !!              ***  MODULE  seddsr  ***
4   !!    Sediment : dissolution and reaction in pore water related
5   !!    related to organic matter
6   !!=====================================================================
7   !! * Modules used
8   USE sed     ! sediment global variable
9   USE sedmat  ! linear system of equations
10   USE sedini
11   USE lib_mpp         ! distribued memory computing library
12   USE lib_fortran
13
14   IMPLICIT NONE
15   PRIVATE
16
17   PUBLIC sed_diff
18
19   !! * Module variables
20
21   !! $Id: seddsr.F90 5215 2015-04-15 16:11:56Z nicolasmartin $
22CONTAINS
23   
24   SUBROUTINE sed_diff( kt, knt ) 
25      !!----------------------------------------------------------------------
26      !!                   ***  ROUTINE sed_diff  ***
27      !!
28      !!  ** Purpose :  computes pore water diffusion
29      !!
30      !!  ** Methode :  implicit computation of undersaturation
31      !!               resulting from diffusive pore water transport.
32      !!
33      !!  ** Remarks :
34      !!              - undersaturation : deviation from saturation concentration
35      !!   History :
36      !!        !  98-08 (E. Maier-Reimer, Christoph Heinze )  Original code
37      !!        !  04-10 (N. Emprin, M. Gehlen ) f90
38      !!        !  06-04 (C. Ethe)  Re-organization
39      !!        !  19-08 (O. Aumont) Debugging and improvement of the model
40      !!----------------------------------------------------------------------
41      !! Arguments
42      INTEGER, INTENT(in) ::   kt, knt       ! number of iteration
43!     
44
45   END SUBROUTINE sed_diff
46
47END MODULE seddiff
Note: See TracBrowser for help on using the repository browser.