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.
sedmodel.F90 in trunk/NEMOGCM/NEMO/TOP_SRC/PISCES/SED – NEMO

source: trunk/NEMOGCM/NEMO/TOP_SRC/PISCES/SED/sedmodel.F90 @ 7646

Last change on this file since 7646 was 7646, checked in by timgraham, 7 years ago

Merge of dev_merge_2016 into trunk. UPDATE TO ARCHFILES NEEDED for XIOS2.
LIM_SRC_s/limrhg.F90 to follow in next commit due to change of kind (I'm unable to do it in this commit).
Merged using the following steps:

1) svn merge --reintegrate svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/trunk .
2) Resolve minor conflicts in sette.sh and namelist_cfg for ORCA2LIM3 (due to a change in trunk after branch was created)
3) svn commit
4) svn switch svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/trunk
5) svn merge svn+ssh://forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/branches/2016/dev_merge_2016 .
6) At this stage I checked out a clean copy of the branch to compare against what is about to be committed to the trunk.
6) svn commit #Commit code to the trunk

In this commit I have also reverted a change to Fcheck_archfile.sh which was causing problems on the Paris machine.

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1MODULE sedmodel
2#if defined key_sed
3   !!======================================================================
4   !!                       ***  MODULE sedmodel   ***
5   !!   Sediment model : Main routine of sediment model
6   !!======================================================================
7   USE sed
8   USE sedini   ! sediment variables initialization
9   USE sedstp   ! time stepping
10
11   IMPLICIT NONE
12   PRIVATE
13
14   !! * Routine accessibility
15   PUBLIC sed_model  ! called by step.F90
16
17CONTAINS
18
19   SUBROUTINE sed_model ( kt )
20      !!---------------------------------------------------------------------
21      !!                  ***  ROUTINE sed_model  ***
22      !!
23      !! ** Purpose :   main routine of sediment model
24      !!
25      !!
26      !! ** Method  : - model general initialization
27      !!              - launch the time-stepping (stp routine)
28      !!
29      !!   History :
30      !!        !  07-02 (C. Ethe)  Original
31      !!----------------------------------------------------------------------
32      INTEGER, INTENT(in) ::   kt       ! number of iteration
33
34
35      IF( kt == nittrc000 ) CALL sed_init       ! Initialization of sediment model
36
37                         CALL sed_stp( kt )  ! Time stepping of Sediment model
38
39
40   END SUBROUTINE sed_model
41
42#else
43   !!======================================================================
44   !! MODULE sedmodel  :   Dummy module
45   !!======================================================================
46CONTAINS
47   SUBROUTINE sed_model( kt )         ! Empty routine
48      INTEGER, INTENT(in) :: kt
49      WRITE(*,*) 'sed_stp: You should not have seen this print! error?', kt
50   END SUBROUTINE sed_model
51#endif
52
53END MODULE sedmodel
Note: See TracBrowser for help on using the repository browser.