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.
stpctl.F90 in NEMO/releases/r4.0/r4.0-HEAD/src/SAS – NEMO

source: NEMO/releases/r4.0/r4.0-HEAD/src/SAS/stpctl.F90 @ 12859

Last change on this file since 12859 was 12859, checked in by smasson, 4 years ago

r4-HEAD: stpctl bugfix, see #2456

  • Property svn:keywords set to Id
File size: 5.7 KB
Line 
1MODULE stpctl
2   !!======================================================================
3   !!                       ***  MODULE  stpctl  ***
4   !! Ocean run control :  gross check of the ocean time stepping
5   !!                      version for standalone surface scheme
6   !!======================================================================
7   !! History :  OPA  ! 1991-03  (G. Madec) Original code
8   !!            6.0  ! 1992-06  (M. Imbard)
9   !!            8.0  ! 1997-06  (A.M. Treguier)
10   !!   NEMO     1.0  ! 2002-06  (G. Madec)  F90: Free form and module
11   !!            2.0  ! 2009-07  (G. Madec)  Add statistic for time-spliting
12   !!            3.5  ! 2012-03  (S. Alderson)
13   !!            4.0  ! 2017-04  (G. Madec)  regroup global communications
14   !!----------------------------------------------------------------------
15
16   !!----------------------------------------------------------------------
17   !!   stp_ctl      : Control the run
18   !!----------------------------------------------------------------------
19   USE oce             ! ocean dynamics and tracers variables
20   USE dom_oce         ! ocean space and time domain variables
21   USE ice      , ONLY : vt_i, u_ice, tm_i
22   !
23   USE in_out_manager  ! I/O manager
24   USE lbclnk          ! ocean lateral boundary conditions (or mpp link)
25   USE lib_mpp         ! distributed memory computing
26
27   USE netcdf          ! NetCDF library
28   IMPLICIT NONE
29   PRIVATE
30
31   PUBLIC stp_ctl           ! routine called by step.F90
32
33   INTEGER  ::   idrun, idtime, idssh, idu, ids, istatus
34   !!----------------------------------------------------------------------
35   !! NEMO/SAS 4.0 , NEMO Consortium (2018)
36   !! $Id$
37   !! Software governed by the CeCILL license (see ./LICENSE)
38   !!----------------------------------------------------------------------
39
40CONTAINS
41
42   SUBROUTINE stp_ctl( kt, kindic )
43      !!----------------------------------------------------------------------
44      !!                    ***  ROUTINE stp_ctl  ***
45      !!                     
46      !! ** Purpose :   Control the run
47      !!
48      !! ** Method  : - Save the time step in numstp
49      !!              - Print it each 50 time steps
50      !!
51      !! ** Actions :   "time.step" file = last ocean time-step
52      !!                "run.stat"  file = run statistics
53      !!               
54      !!----------------------------------------------------------------------
55      INTEGER, INTENT( in    ) ::   kt       ! ocean time-step index
56      INTEGER, INTENT( inout ) ::   kindic   ! indicator of solver convergence
57      !!
58      REAL(wp), DIMENSION(3) ::   zmax
59      LOGICAL                ::   ll_wrtstp, ll_colruns, ll_wrtruns
60      CHARACTER(len=20) :: clname
61      !!----------------------------------------------------------------------
62      !
63      ll_wrtstp  = ( MOD( kt-nit000, sn_cfctl%ptimincr ) == 0 ) .OR. ( kt == nitend )
64      ll_colruns = ll_wrtstp .AND. sn_cfctl%l_runstat .AND. jpnij > 1 
65      ll_wrtruns = ( ll_colruns .OR. jpnij == 1 ) .AND. lwm
66      !
67      IF( kt == nit000 ) THEN
68         !
69         IF( lwp ) THEN
70            WRITE(numout,*)
71            WRITE(numout,*) 'stp_ctl : time-stepping control'
72            WRITE(numout,*) '~~~~~~~'
73         ENDIF
74         !                                ! open time.step file
75         IF( lwm ) CALL ctl_opn( numstp, 'time.step', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp, narea )
76         !                                ! open run.stat file(s) at start whatever
77         !                                ! the value of sn_cfctl%ptimincr
78         IF( ll_wrtruns ) THEN
79            CALL ctl_opn( numrun, 'run.stat', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp, narea )
80            clname = 'run.stat.nc'
81            IF( .NOT. Agrif_Root() )   clname = TRIM(Agrif_CFixed())//"_"//TRIM(clname)
82            istatus = NF90_CREATE( 'run.stat.nc', NF90_CLOBBER, idrun )
83            istatus = NF90_DEF_DIM( idrun, 'time'     , NF90_UNLIMITED, idtime )
84            istatus = NF90_DEF_VAR( idrun, 'vt_i_max' , NF90_DOUBLE, (/ idtime /), idssh )
85            istatus = NF90_DEF_VAR( idrun, 'abs_u_max', NF90_DOUBLE, (/ idtime /), idu )
86            istatus = NF90_DEF_VAR( idrun, 'tm_i_min' , NF90_DOUBLE, (/ idtime /), ids )
87            istatus = NF90_ENDDEF(idrun)
88         ENDIF
89      ENDIF
90      !
91      IF(lwm .AND. ll_wrtstp) THEN        !==  current time step  ==!   ("time.step" file)
92         WRITE ( numstp, '(1x, i8)' )   kt
93         REWIND( numstp )
94      ENDIF
95      !                                   !==  test of extrema  ==!
96      IF( ll_colruns .OR. jpnij == 1 ) THEN
97         zmax(1) = MAXVAL(      vt_i (:,:) )                                           ! max ice thickness
98         zmax(2) = MAXVAL( ABS( u_ice(:,:) ) )                                         ! max ice velocity (zonal only)
99         zmax(3) = MAXVAL(     -tm_i (:,:)+273.15_wp , mask = ssmask(:,:) == 1._wp )   ! min ice temperature
100         IF( ll_colruns )   CALL mpp_max( "stpctl", zmax )                             ! max over the global domain
101      END IF
102      !                                            !==  run statistics  ==!   ("run.stat" file)
103      IF( ll_wrtruns ) THEN
104         WRITE(numrun,9500) kt, zmax(1), zmax(2), - zmax(3)
105         istatus = NF90_PUT_VAR( idrun, idssh, (/ zmax(1)/), (/kt/), (/1/) )
106         istatus = NF90_PUT_VAR( idrun,   idu, (/ zmax(2)/), (/kt/), (/1/) )
107         istatus = NF90_PUT_VAR( idrun,   ids, (/-zmax(3)/), (/kt/), (/1/) )
108         IF( MOD( kt , 100 ) == 0 ) istatus = NF90_SYNC(idrun)
109         IF( kt == nitend         ) istatus = NF90_CLOSE(idrun)
110      END IF
111      !
1129500  FORMAT(' it :', i8, '    vt_i_max: ', D23.16, ' |u|_max: ', D23.16,' tm_i_min: ', D23.16)
113      !
114   END SUBROUTINE stp_ctl
115
116   !!======================================================================
117END MODULE stpctl
Note: See TracBrowser for help on using the repository browser.