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.
dynldf.F90 in NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/OCE/DYN – NEMO

source: NEMO/branches/2021/dev_r14116_HPC-10_mcastril_Mixed_Precision_implementation/src/OCE/DYN/dynldf.F90 @ 15540

Last change on this file since 15540 was 15540, checked in by sparonuz, 3 years ago

Mixed precision version, tested up to 30 years on ORCA2.

  • Property svn:keywords set to Id
File size: 5.9 KB
Line 
1MODULE dynldf
2   !!======================================================================
3   !!                       ***  MODULE  dynldf  ***
4   !! Ocean physics:  lateral diffusivity trends
5   !!=====================================================================
6   !! History :  2.0  ! 2005-11  (G. Madec)  Original code (new step architecture)
7   !!            3.7  ! 2014-01  (F. Lemarie, G. Madec)  restructuration/simplification of ahm specification,
8   !!                 !                                  add velocity dependent coefficient and optional read in file
9   !!----------------------------------------------------------------------
10
11   !!----------------------------------------------------------------------
12   !!   dyn_ldf      : update the dynamics trend with the lateral diffusion
13   !!   dyn_ldf_init : initialization, namelist read, and parameters control
14   !!----------------------------------------------------------------------
15   USE oce            ! ocean dynamics and tracers
16   USE dom_oce        ! ocean space and time domain
17   USE phycst         ! physical constants
18   USE ldfdyn         ! lateral diffusion: eddy viscosity coef.
19   USE dynldf_lap_blp ! lateral mixing   (dyn_ldf_lap & dyn_ldf_blp routines)
20   USE dynldf_iso     ! lateral mixing                 (dyn_ldf_iso routine )
21   USE trd_oce        ! trends: ocean variables
22   USE trddyn         ! trend manager: dynamics   (trd_dyn      routine)
23   !
24   USE prtctl         ! Print control
25   USE in_out_manager ! I/O manager
26   USE lib_mpp        ! distribued memory computing library
27   USE lbclnk         ! ocean lateral boundary conditions (or mpp link)
28   USE timing         ! Timing
29
30   IMPLICIT NONE
31   PRIVATE
32
33   PUBLIC   dyn_ldf       ! called by step module
34   PUBLIC   dyn_ldf_init  ! called by opa  module
35
36#  include "single_precision_substitute.h90"
37   !!----------------------------------------------------------------------
38   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
39   !! $Id$
40   !! Software governed by the CeCILL license (see ./LICENSE)
41   !!----------------------------------------------------------------------
42CONTAINS
43
44   SUBROUTINE dyn_ldf( kt, Kbb, Kmm, puu, pvv, Krhs )
45      !!----------------------------------------------------------------------
46      !!                  ***  ROUTINE dyn_ldf  ***
47      !!
48      !! ** Purpose :   compute the lateral ocean dynamics physics.
49      !!----------------------------------------------------------------------
50      INTEGER                             , INTENT( in )  ::  kt               ! ocean time-step index
51      INTEGER                             , INTENT( in )  ::  Kbb, Kmm, Krhs   ! ocean time level indices
52      REAL(dp), DIMENSION(jpi,jpj,jpk,jpt), INTENT(inout) ::  puu, pvv         ! ocean velocities and RHS of momentum equation
53      !
54      REAL(dp), ALLOCATABLE, DIMENSION(:,:,:) ::   ztrdu, ztrdv
55      !!----------------------------------------------------------------------
56      !
57      IF( ln_timing )   CALL timing_start('dyn_ldf')
58      !
59      IF( l_trddyn )   THEN                      ! temporary save of momentum trends
60         ALLOCATE( ztrdu(jpi,jpj,jpk) , ztrdv(jpi,jpj,jpk) )
61         ztrdu(:,:,:) = puu(:,:,:,Krhs) 
62         ztrdv(:,:,:) = pvv(:,:,:,Krhs) 
63      ENDIF
64
65      SELECT CASE ( nldf_dyn )                   ! compute lateral mixing trend and add it to the general trend
66      !
67      CASE ( np_lap   ) 
68      CALL dyn_ldf_lap( kt, Kbb, Kmm, puu(:,:,:,Kbb), pvv(:,:,:,Kbb), puu(:,:,:,Krhs), pvv(:,:,:,Krhs), 1 )
69      CASE ( np_lap_i ) 
70         CALL dyn_ldf_iso( kt, Kbb, Kmm, puu, pvv, Krhs    )                                                   ! rotated      laplacian
71      CASE ( np_blp   ) 
72      CALL dyn_ldf_blp( kt, Kbb, Kmm, puu(:,:,:,Kbb), pvv(:,:,:,Kbb), puu(:,:,:,Krhs), pvv(:,:,:,Krhs)    )
73      !
74      END SELECT
75
76      IF( l_trddyn ) THEN                        ! save the horizontal diffusive trends for further diagnostics
77         ztrdu(:,:,:) = puu(:,:,:,Krhs) - ztrdu(:,:,:)
78         ztrdv(:,:,:) = pvv(:,:,:,Krhs) - ztrdv(:,:,:)
79         CALL trd_dyn( ztrdu, ztrdv, jpdyn_ldf, kt, Kmm )
80         DEALLOCATE ( ztrdu , ztrdv )
81      ENDIF
82      !                                          ! print sum trends (used for debugging)
83      IF(sn_cfctl%l_prtctl)   CALL prt_ctl( tab3d_1=puu(:,:,:,Krhs), clinfo1=' ldf  - Ua: ', mask1=umask,   &
84         &                                  tab3d_2=pvv(:,:,:,Krhs), clinfo2=       ' Va: ', mask2=vmask, clinfo3='dyn' )
85      !
86      IF( ln_timing )   CALL timing_stop('dyn_ldf')
87      !
88   END SUBROUTINE dyn_ldf
89
90
91   SUBROUTINE dyn_ldf_init
92      !!----------------------------------------------------------------------
93      !!                  ***  ROUTINE dyn_ldf_init  ***
94      !!
95      !! ** Purpose :   initializations of the horizontal ocean dynamics physics
96      !!----------------------------------------------------------------------
97      !
98      IF(lwp) THEN                     !==  Namelist print  ==!
99         WRITE(numout,*)
100         WRITE(numout,*) 'dyn_ldf_init : Choice of the lateral diffusive operator on dynamics'
101         WRITE(numout,*) '~~~~~~~~~~~~'
102         WRITE(numout,*) '   Namelist namdyn_ldf: already read in ldfdyn module'
103         WRITE(numout,*) '      see ldf_dyn_init report for lateral mixing parameters'
104         WRITE(numout,*)
105         !
106         SELECT CASE( nldf_dyn )             ! print the choice of operator
107         CASE( np_no_ldf )   ;   WRITE(numout,*) '   ==>>>   NO lateral viscosity'
108         CASE( np_lap    )   ;   WRITE(numout,*) '   ==>>>   iso-level laplacian operator'
109         CASE( np_lap_i  )   ;   WRITE(numout,*) '   ==>>>   rotated laplacian operator with iso-level background'
110         CASE( np_blp    )   ;   WRITE(numout,*) '   ==>>>   iso-level bi-laplacian operator'
111         END SELECT
112      ENDIF
113      !
114   END SUBROUTINE dyn_ldf_init
115
116   !!======================================================================
117END MODULE dynldf
Note: See TracBrowser for help on using the repository browser.