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

source: NEMO/trunk/src/SAS/stpctl.F90 @ 10425

Last change on this file since 10425 was 10425, checked in by smasson, 5 years ago

trunk: merge back dev_r10164_HPC09_ESIWACE_PREP_MERGE@10424 into the trunk

  • Property svn:keywords set to Id
File size: 5.5 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   LOGICAL  ::   lsomeoce
35   !!----------------------------------------------------------------------
36   !! NEMO/SAS 4.0 , NEMO Consortium (2018)
37   !! $Id$
38   !! Software governed by the CeCILL license (see ./LICENSE)
39   !!----------------------------------------------------------------------
40
41CONTAINS
42
43   SUBROUTINE stp_ctl( kt, kindic )
44      !!----------------------------------------------------------------------
45      !!                    ***  ROUTINE stp_ctl  ***
46      !!                     
47      !! ** Purpose :   Control the run
48      !!
49      !! ** Method  : - Save the time step in numstp
50      !!              - Print it each 50 time steps
51      !!
52      !! ** Actions :   "time.step" file = last ocean time-step
53      !!                "run.stat"  file = run statistics
54      !!               
55      !!----------------------------------------------------------------------
56      INTEGER, INTENT( in    ) ::   kt       ! ocean time-step index
57      INTEGER, INTENT( inout ) ::   kindic   ! indicator of solver convergence
58      !!
59      REAL(wp), DIMENSION(3) ::   zmax
60      CHARACTER(len=20) :: clname
61      !!----------------------------------------------------------------------
62
63      IF( kt == nit000 .AND. lwp ) THEN
64         WRITE(numout,*)
65         WRITE(numout,*) 'stp_ctl : time-stepping control'
66         WRITE(numout,*) '~~~~~~~'
67         !                                ! open time.step file
68         IF( lwm ) CALL ctl_opn( numstp, 'time.step', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp, narea )
69         !                                ! open run.stat file
70         IF( ln_ctl .AND. lwm ) THEN
71            CALL ctl_opn( numrun, 'run.stat', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp, narea )
72            clname = 'run.stat.nc'
73            IF( .NOT. Agrif_Root() )   clname = TRIM(Agrif_CFixed())//"_"//TRIM(clname)
74            istatus = NF90_CREATE( 'run.stat.nc', NF90_CLOBBER, idrun )
75            istatus = NF90_DEF_DIM( idrun, 'time'     , NF90_UNLIMITED, idtime )
76            istatus = NF90_DEF_VAR( idrun, 'vt_i_max' , NF90_DOUBLE, (/ idtime /), idssh )
77            istatus = NF90_DEF_VAR( idrun, 'abs_u_max', NF90_DOUBLE, (/ idtime /), idu )
78            istatus = NF90_DEF_VAR( idrun, 'tm_i_min' , NF90_DOUBLE, (/ idtime /), ids )
79            istatus = NF90_ENDDEF(idrun)
80         ENDIF
81      ENDIF
82      IF( kt == nit000 )   lsomeoce = COUNT( ssmask(:,:) == 1._wp ) > 0
83      !
84      IF(lwm) THEN                        !==  current time step  ==!   ("time.step" file)
85         WRITE ( numstp, '(1x, i8)' )   kt
86         REWIND( numstp )
87      ENDIF
88      !                                   !==  test of extrema  ==!
89      IF( ln_ctl ) THEN   ! must be done by all processes because of the mpp_max
90         zmax(1) = MAXVAL(      vt_i (:,:) )                                           ! max ice thickness
91         zmax(2) = MAXVAL( ABS( u_ice(:,:) ) )                                         ! max ice velocity (zonal only)
92         zmax(3) = MAXVAL(     -tm_i (:,:)+273.15_wp , mask = ssmask(:,:) == 1._wp )   ! min ice temperature
93         CALL mpp_max( "stpctl", zmax )                                   ! max over the global domain
94      END IF
95      !                                            !==  run statistics  ==!   ("run.stat" file)
96      IF( ln_ctl .AND. lwm ) THEN
97         IF(lwp) WRITE(numrun,9500) kt, zmax(1), zmax(2), - zmax(3)
98         istatus = NF90_PUT_VAR( idrun, idssh, (/ zmax(1)/), (/kt/), (/1/) )
99         istatus = NF90_PUT_VAR( idrun,   idu, (/ zmax(2)/), (/kt/), (/1/) )
100         istatus = NF90_PUT_VAR( idrun,   ids, (/-zmax(3)/), (/kt/), (/1/) )
101         IF( MOD( kt , 100 ) == 0 ) istatus = NF90_SYNC(idrun)
102         IF( kt == nitend         ) istatus = NF90_CLOSE(idrun)
103      END IF
104      !
1059500  FORMAT(' it :', i8, '    vt_i_max: ', D23.16, ' |u|_max: ', D23.16,' tm_i_min: ', D23.16)
106      !
107   END SUBROUTINE stp_ctl
108
109   !!======================================================================
110END MODULE stpctl
Note: See TracBrowser for help on using the repository browser.