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.
dynspg.F90 in trunk/NEMOGCM/NEMO/OPA_SRC/DYN – NEMO

source: trunk/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg.F90 @ 3322

Last change on this file since 3322 was 3322, checked in by rfurner, 12 years ago

very small and obvious bug fix in dynspg

  • Property svn:keywords set to Id
File size: 11.4 KB
RevLine 
[358]1MODULE dynspg
2   !!======================================================================
3   !!                       ***  MODULE  dynspg  ***
4   !! Ocean dynamics:  surface pressure gradient control
5   !!======================================================================
[1566]6   !! History :  1.0  ! 2005-12  (C. Talandier, G. Madec, V. Garnier)  Original code
7   !!            3.2  ! 2009-07  (R. Benshila)  Suppression of rigid-lid option
[503]8   !!----------------------------------------------------------------------
[358]9
10   !!----------------------------------------------------------------------
11   !!   dyn_spg     : update the dynamics trend with the lateral diffusion
12   !!   dyn_spg_ctl : initialization, namelist read, and parameters control
13   !!----------------------------------------------------------------------
14   USE oce            ! ocean dynamics and tracers variables
15   USE dom_oce        ! ocean space and time domain variables
[2715]16   USE phycst         ! physical constants
[2528]17   USE sbc_oce        ! surface boundary condition: ocean
18   USE sbcapr         ! surface boundary condition: atmospheric pressure
[367]19   USE dynspg_oce     ! surface pressure gradient variables
[358]20   USE dynspg_exp     ! surface pressure gradient     (dyn_spg_exp routine)
21   USE dynspg_ts      ! surface pressure gradient     (dyn_spg_ts  routine)
22   USE dynspg_flt     ! surface pressure gradient     (dyn_spg_flt routine)
[2528]23   USE dynadv         ! dynamics: vector invariant versus flux form
[358]24   USE trdmod         ! ocean dynamics trends
25   USE trdmod_oce     ! ocean variables trends
26   USE prtctl         ! Print control                     (prt_ctl routine)
27   USE in_out_manager ! I/O manager
[2715]28   USE lib_mpp        ! MPP library
29   USE solver          ! solver initialization
[3294]30   USE wrk_nemo        ! Memory Allocation
31   USE timing          ! Timing
[358]32
[3294]33
[358]34   IMPLICIT NONE
35   PRIVATE
36
[2528]37   PUBLIC   dyn_spg        ! routine called by step module
38   PUBLIC   dyn_spg_init   ! routine called by opa module
[358]39
[503]40   INTEGER ::   nspg = 0   ! type of surface pressure gradient scheme defined from lk_dynspg_...
[358]41
42   !! * Substitutions
43#  include "domzgr_substitute.h90"
44#  include "vectopt_loop_substitute.h90"
45   !!----------------------------------------------------------------------
[1566]46   !! NEMO/OPA 3.2 , LODYC-IPSL  (2009)
[1152]47   !! $Id$
[2715]48   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
[358]49   !!----------------------------------------------------------------------
50CONTAINS
51
52   SUBROUTINE dyn_spg( kt, kindic )
53      !!----------------------------------------------------------------------
54      !!                  ***  ROUTINE dyn_spg  ***
55      !!
[1566]56      !! ** Purpose :   achieve the momentum time stepping by computing the
[2528]57      !!              last trend, the surface pressure gradient including the
58      !!              atmospheric pressure forcing (ln_apr_dyn=T), and performing
[1566]59      !!              the Leap-Frog integration.
60      !!gm              In the current version only the filtered solution provide
61      !!gm            the after velocity, in the 2 other (ua,va) are still the trends
62      !!
63      !! ** Method  :   Three schemes:
64      !!              - explicit computation      : the spg is evaluated at now
65      !!              - filtered computation      : the Roulet & madec (2000) technique is used
66      !!              - split-explicit computation: a time splitting technique is used
67      !!
[2528]68      !!              ln_apr_dyn=T : the atmospheric pressure forcing is applied
69      !!             as the gradient of the inverse barometer ssh:
70      !!                apgu = - 1/rau0 di[apr] = 0.5*grav di[ssh_ib+ssh_ibb]
71      !!                apgv = - 1/rau0 dj[apr] = 0.5*grav dj[ssh_ib+ssh_ibb]
72      !!             Note that as all external forcing a time averaging over a two rdt
73      !!             period is used to prevent the divergence of odd and even time step.
74      !!
[1566]75      !! N.B. : When key_esopa is used all the scheme are tested, regardless
76      !!        of the physical meaning of the results.
[358]77      !!----------------------------------------------------------------------
[2715]78      !
[1566]79      INTEGER, INTENT(in   ) ::   kt       ! ocean time-step index
80      INTEGER, INTENT(  out) ::   kindic   ! solver flag
[2715]81      !
[2528]82      INTEGER  ::   ji, jj, jk                             ! dummy loop indices
83      REAL(wp) ::   z2dt, zg_2                             ! temporary scalar
[3294]84      REAL(wp), POINTER, DIMENSION(:,:,:) ::  ztrdu, ztrdv
[358]85      !!----------------------------------------------------------------------
[3294]86      !
87      IF( nn_timing == 1 )  CALL timing_start('dyn_spg')
88      !
[358]89
[1566]90!!gm NOTA BENE : the dynspg_exp and dynspg_ts should be modified so that
91!!gm             they return the after velocity, not the trends (as in trazdf_imp...)
92!!gm             In this case, change/simplify dynnxt
93
94
[358]95      IF( l_trddyn )   THEN                      ! temporary save of ta and sa trends
[3294]96         CALL wrk_alloc( jpi, jpj, jpk, ztrdu, ztrdv ) 
[358]97         ztrdu(:,:,:) = ua(:,:,:)
98         ztrdv(:,:,:) = va(:,:,:)
99      ENDIF
100
[2528]101      IF( ln_apr_dyn ) THEN                   !==  Atmospheric pressure gradient  ==!
102         zg_2 = grav * 0.5
103         DO jj = 2, jpjm1                          ! gradient of Patm using inverse barometer ssh
104            DO ji = fs_2, fs_jpim1   ! vector opt.
105               spgu(ji,jj) =  zg_2 * (  ssh_ib (ji+1,jj) - ssh_ib (ji,jj)    &
106                  &                   + ssh_ibb(ji+1,jj) - ssh_ibb(ji,jj)  ) /e1u(ji,jj)
107               spgv(ji,jj) =  zg_2 * (  ssh_ib (ji,jj+1) - ssh_ib (ji,jj)    &
[3322]108                  &                   + ssh_ibb(ji,jj+1) - ssh_ibb(ji,jj)  ) /e2v(ji,jj)
[2528]109            END DO
110         END DO
111         DO jk = 1, jpkm1                          ! Add the apg to the general trend
112            DO jj = 2, jpjm1
113               DO ji = fs_2, fs_jpim1   ! vector opt.
114                  ua(ji,jj,jk) = ua(ji,jj,jk) + spgu(ji,jj)
115                  va(ji,jj,jk) = va(ji,jj,jk) + spgv(ji,jj)
116               END DO
117            END DO
118         END DO
119      ENDIF
120
121
[358]122      SELECT CASE ( nspg )                       ! compute surf. pressure gradient trend and add it to the general trend
[789]123      !                                                     
[1566]124      CASE (  0 )   ;   CALL dyn_spg_exp( kt )              ! explicit
125      CASE (  1 )   ;   CALL dyn_spg_ts ( kt )              ! time-splitting
126      CASE (  2 )   ;   CALL dyn_spg_flt( kt, kindic )      ! filtered
[789]127      !                                                   
[1566]128      CASE ( -1 )                                ! esopa: test all possibility with control print
129                        CALL dyn_spg_exp( kt )
130                        CALL prt_ctl( tab3d_1=ua, clinfo1=' spg0 - Ua: ', mask1=umask, &
131         &                            tab3d_2=va, clinfo2=       ' Va: ', mask2=vmask, clinfo3='dyn' )
132                        CALL dyn_spg_ts ( kt )
133                        CALL prt_ctl( tab3d_1=ua, clinfo1=' spg1 - Ua: ', mask1=umask, &
134         &                           tab3d_2=va, clinfo2=       ' Va: ', mask2=vmask, clinfo3='dyn' )
135                        CALL dyn_spg_flt( kt, kindic )
136                        CALL prt_ctl( tab3d_1=ua, clinfo1=' spg2 - Ua: ', mask1=umask, &
137         &                            tab3d_2=va, clinfo2=       ' Va: ', mask2=vmask, clinfo3='dyn' )
[358]138      END SELECT
[503]139      !                   
[1566]140      IF( l_trddyn )   THEN                      ! save the surface pressure gradient trends for further diagnostics
[358]141         SELECT CASE ( nspg )
[1528]142         CASE ( 0, 1 )
[358]143            ztrdu(:,:,:) = ua(:,:,:) - ztrdu(:,:,:)
144            ztrdv(:,:,:) = va(:,:,:) - ztrdv(:,:,:)
[1528]145         CASE( 2 )
[358]146            z2dt = 2. * rdt
147            IF( neuler == 0 .AND. kt == nit000 ) z2dt = rdt
148            ztrdu(:,:,:) = ( ua(:,:,:) - ub(:,:,:) ) / z2dt - ztrdu(:,:,:)
149            ztrdv(:,:,:) = ( va(:,:,:) - vb(:,:,:) ) / z2dt - ztrdv(:,:,:)
150         END SELECT
[503]151         CALL trd_mod( ztrdu, ztrdv, jpdyn_trd_spg, 'DYN', kt )
[3294]152         !
153         CALL wrk_dealloc( jpi, jpj, jpk, ztrdu, ztrdv ) 
[358]154      ENDIF
155      !                                          ! print mean trends (used for debugging)
156      IF(ln_ctl)   CALL prt_ctl( tab3d_1=ua, clinfo1=' spg  - Ua: ', mask1=umask, &
157         &                       tab3d_2=va, clinfo2=       ' Va: ', mask2=vmask, clinfo3='dyn' )
[503]158      !
[3294]159      IF( nn_timing == 1 )  CALL timing_stop('dyn_spg')
[2715]160      !
[358]161   END SUBROUTINE dyn_spg
162
163
[2528]164   SUBROUTINE dyn_spg_init
[358]165      !!---------------------------------------------------------------------
[2528]166      !!                  ***  ROUTINE dyn_spg_init  ***
[358]167      !!               
168      !! ** Purpose :   Control the consistency between cpp options for
[1566]169      !!              surface pressure gradient schemes
[358]170      !!----------------------------------------------------------------------
171      INTEGER ::   ioptio
172      !!----------------------------------------------------------------------
[3294]173      !
174      IF( nn_timing == 1 )  CALL timing_start('dyn_spg_init')
175      !
[1566]176      IF(lwp) THEN             ! Control print
[358]177         WRITE(numout,*)
[2528]178         WRITE(numout,*) 'dyn_spg_init : choice of the surface pressure gradient scheme'
[358]179         WRITE(numout,*) '~~~~~~~~~~~'
180         WRITE(numout,*) '     Explicit free surface                  lk_dynspg_exp = ', lk_dynspg_exp
181         WRITE(numout,*) '     Free surface with time splitting       lk_dynspg_ts  = ', lk_dynspg_ts
182         WRITE(numout,*) '     Filtered free surface cst volume       lk_dynspg_flt = ', lk_dynspg_flt
183      ENDIF
184
[2715]185      !                        ! allocate dyn_spg arrays
186      IF( lk_dynspg_ts ) THEN
187         IF( dynspg_oce_alloc() /= 0 )   CALL ctl_stop('STOP', 'dyn_spg_init: failed to allocate dynspg_oce arrays')
188         IF( dyn_spg_ts_alloc() /= 0 )   CALL ctl_stop('STOP', 'dyn_spg_init: failed to allocate dynspg_ts  arrays')
189      ENDIF
190
[1566]191      !                        ! Control of surface pressure gradient scheme options
[358]192      ioptio = 0
193      IF(lk_dynspg_exp)   ioptio = ioptio + 1
194      IF(lk_dynspg_ts )   ioptio = ioptio + 1
195      IF(lk_dynspg_flt)   ioptio = ioptio + 1
[1566]196      !
[474]197      IF( ( ioptio > 1 .AND. .NOT. lk_esopa ) .OR. ioptio == 0 )   &
198           &   CALL ctl_stop( ' Choose only one surface pressure gradient scheme with a key cpp' )
[1566]199      !
[358]200      IF( lk_esopa     )   nspg = -1
201      IF( lk_dynspg_exp)   nspg =  0
202      IF( lk_dynspg_ts )   nspg =  1
203      IF( lk_dynspg_flt)   nspg =  2
[1566]204      !
[372]205      IF( lk_esopa     )   nspg = -1
[1566]206      !
207      IF(lwp) THEN
[358]208         WRITE(numout,*)
[1528]209         IF( nspg == -1 )   WRITE(numout,*) '     ESOPA test All scheme used'
[372]210         IF( nspg ==  0 )   WRITE(numout,*) '     explicit free surface'
211         IF( nspg ==  1 )   WRITE(numout,*) '     free surface with time splitting scheme'
212         IF( nspg ==  2 )   WRITE(numout,*) '     filtered free surface'
[358]213      ENDIF
214
[2715]215#if defined key_dynspg_flt || defined key_esopa
216      CALL solver_init( nit000 )   ! Elliptic solver initialisation
217#endif
218
[1566]219      !                        ! Control of timestep choice
[1241]220      IF( lk_dynspg_ts .OR. lk_dynspg_exp ) THEN
[2528]221         IF( nn_cla == 1 )   CALL ctl_stop( 'Crossland advection not implemented for this free surface formulation' )
[358]222      ENDIF
223
[2528]224      !                        ! Control of momentum formulation
225      IF( lk_dynspg_ts .AND. lk_vvl ) THEN
226         IF( .NOT.ln_dynadv_vec )   CALL ctl_stop( 'Flux form not implemented for this free surface formulation' )
227      ENDIF
[1566]228      !
[3294]229      IF( nn_timing == 1 )  CALL timing_stop('dyn_spg_init')
230      !
[2528]231   END SUBROUTINE dyn_spg_init
[358]232
233  !!======================================================================
234END MODULE dynspg
Note: See TracBrowser for help on using the repository browser.