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/trunk/src/OCE/TRD – NEMO

source: NEMO/trunk/src/OCE/TRD/trdtrc.F90 @ 11048

Last change on this file since 11048 was 10068, checked in by nicolasmartin, 6 years ago

First part of modifications to have a common default header : fix typos and SVN keywords properties

  • Property svn:keywords set to Id
File size: 1.1 KB
RevLine 
[4804]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 )
12      INTEGER ::   kt, kjn, ktrd   
13      REAL    ::   ptrtrd(:,:,:) 
14      WRITE(*,*) 'trd_trc : You should not have seen this print! error?', ptrtrd(1,1,1)
15      WRITE(*,*) '  "      "      : You should not have seen this print! error?', kjn, ktrd, kt
16   END SUBROUTINE trd_trc
17
18   !!----------------------------------------------------------------------
[9598]19   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
[5215]20   !! $Id$
[10068]21   !! Software governed by the CeCILL license (see ./LICENSE)
[4804]22   !!======================================================================
23END MODULE trdtrc
Note: See TracBrowser for help on using the repository browser.