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.
trdtrc.F90 in NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE/TRD – NEMO

source: NEMO/branches/2019/dev_r11078_OSMOSIS_IMMERSE_Nurser/src/OCE/TRD/trdtrc.F90 @ 12928

Last change on this file since 12928 was 12928, checked in by smueller, 4 years ago

Synchronizing with /NEMO/trunk@12925 (ticket #2170)

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1MODULE trdtrc
2   !!======================================================================
3   !!                       ***  MODULE trdtrc  ***
4   !!  Dummy module
5   !!======================================================================
6   !!----------------------------------------------------------------------
7   !!   Dummy module                                             NO TOP use
8   !!----------------------------------------------------------------------
9CONTAINS
10
11   SUBROUTINE trd_trc( ptrtrd, kjn, ktrd, kt, Kmm )
12      INTEGER ::   kt, kjn, ktrd   
13      INTEGER ::   Kmm            ! time level index
14      REAL    ::   ptrtrd(:,:,:) 
15      WRITE(*,*) 'trd_trc : You should not have seen this print! error?', ptrtrd(1,1,1)
16      WRITE(*,*) '  "      "      : You should not have seen this print! error?', kjn, ktrd, kt
17   END SUBROUTINE trd_trc
18
19   !!----------------------------------------------------------------------
20   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
21   !! $Id$
22   !! Software governed by the CeCILL license (see ./LICENSE)
23   !!======================================================================
24END MODULE trdtrc
Note: See TracBrowser for help on using the repository browser.