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/2020/dev_r12512_HPC-04_mcastril_Mixed_Precision_implementation/src/OCE/TRD – NEMO

source: NEMO/branches/2020/dev_r12512_HPC-04_mcastril_Mixed_Precision_implementation/src/OCE/TRD/trdtrc.F90 @ 12546

Last change on this file since 12546 was 12546, checked in by orioltp, 4 years ago

Adding precision specification in hardcoded reals and other modifications to allow compilation without forcing reals without precision specification to a certain value through compiler flags

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