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.
nemogcm.F90 in NEMO/branches/2020/dev_r13541_TOP-01_rlod_Antarctic_ice_Sheet_Fe_Source/src/OCE – NEMO

source: NEMO/branches/2020/dev_r13541_TOP-01_rlod_Antarctic_ice_Sheet_Fe_Source/src/OCE/nemogcm.F90 @ 13886

Last change on this file since 13886 was 13886, checked in by rlod, 3 years ago

phasing with trunk at revision r13787

  • Property svn:keywords set to Id
File size: 32.8 KB
RevLine 
[2496]1MODULE nemogcm
[2442]2   !!======================================================================
[2496]3   !!                       ***  MODULE nemogcm   ***
4   !! Ocean system   : NEMO GCM (ocean dynamics, on-line tracers, biochemistry and sea-ice)
[2442]5   !!======================================================================
[1593]6   !! History :  OPA  ! 1990-10  (C. Levy, G. Madec)  Original code
7   !!            7.0  ! 1991-11  (M. Imbard, C. Levy, G. Madec)
[3764]8   !!            7.1  ! 1993-03  (M. Imbard, C. Levy, G. Madec, O. Marti, M. Guyon, A. Lazar,
9   !!                             P. Delecluse, C. Perigaud, G. Caniaux, B. Colot, C. Maes) release 7.1
[1593]10   !!             -   ! 1992-06  (L.Terray)  coupling implementation
[3764]11   !!             -   ! 1993-11  (M.A. Filiberti) IGLOO sea-ice
12   !!            8.0  ! 1996-03  (M. Imbard, C. Levy, G. Madec, O. Marti, M. Guyon, A. Lazar,
[2104]13   !!                             P. Delecluse, L.Terray, M.A. Filiberti, J. Vialar, A.M. Treguier, M. Levy) release 8.0
[1593]14   !!            8.1  ! 1997-06  (M. Imbard, G. Madec)
[9656]15   !!            8.2  ! 1999-11  (M. Imbard, H. Goosse)  sea-ice model
[3764]16   !!                 ! 1999-12  (V. Thierry, A-M. Treguier, M. Imbard, M-A. Foujols)  OPEN-MP
[1593]17   !!                 ! 2000-07  (J-M Molines, M. Imbard)  Open Boundary Conditions  (CLIPPER)
18   !!   NEMO     1.0  ! 2002-08  (G. Madec)  F90: Free form and modules
19   !!             -   ! 2004-06  (R. Redler, NEC CCRLE, Germany) add OASIS[3/4] coupled interfaces
20   !!             -   ! 2004-08  (C. Talandier) New trends organization
21   !!             -   ! 2005-06  (C. Ethe) Add the 1D configuration possibility
22   !!             -   ! 2005-11  (V. Garnier) Surface pressure gradient organization
23   !!             -   ! 2006-03  (L. Debreu, C. Mazauric)  Agrif implementation
24   !!             -   ! 2006-04  (G. Madec, R. Benshila)  Step reorganization
25   !!             -   ! 2007-07  (J. Chanut, A. Sellar) Unstructured open boundaries (BDY)
26   !!            3.2  ! 2009-08  (S. Masson)  open/write in the listing file in mpp
[3764]27   !!            3.3  ! 2010-05  (K. Mogensen, A. Weaver, M. Martin, D. Lea) Assimilation interface
[2236]28   !!             -   ! 2010-10  (C. Ethe, G. Madec) reorganisation of initialisation phase
[3294]29   !!            3.3.1! 2011-01  (A. R. Porter, STFC Daresbury) dynamical allocation
[5836]30   !!             -   ! 2011-11  (C. Harris) decomposition changes for running with CICE
31   !!            3.6  ! 2012-05  (C. Calone, J. Simeon, G. Madec, C. Ethe) Add grid coarsening
32   !!             -   ! 2014-12  (G. Madec) remove KPP scheme and cross-land advection (cla)
[7646]33   !!            4.0  ! 2016-10  (G. Madec, S. Flavoni)  domain configuration / user defined interface
[1593]34   !!----------------------------------------------------------------------
[3]35
36   !!----------------------------------------------------------------------
[6140]37   !!   nemo_gcm      : solve ocean dynamics, tracer, biogeochemistry and/or sea-ice
38   !!   nemo_init     : initialization of the NEMO system
39   !!   nemo_ctl      : initialisation of the contol print
40   !!   nemo_closefile: close remaining open files
41   !!   nemo_alloc    : dynamical allocation
[3]42   !!----------------------------------------------------------------------
[6140]43   USE step_oce       ! module used in the ocean time stepping module (step.F90)
[7646]44   USE phycst         ! physical constant                  (par_cst routine)
45   USE domain         ! domain initialization   (dom_init & dom_cfg routines)
[9161]46   USE closea         ! treatment of closed seas (for ln_closea)
[7646]47   USE usrdef_nam     ! user defined configuration
[12377]48   USE tide_mod, ONLY : tide_init ! tidal components initialization   (tide_init routine)
[6140]49   USE bdyini         ! open boundary cond. setting       (bdy_init routine)
50   USE istate         ! initial state setting          (istate_init routine)
51   USE ldfdyn         ! lateral viscosity setting      (ldfdyn_init routine)
52   USE ldftra         ! lateral diffusivity setting    (ldftra_init routine)
53   USE trdini         ! dyn/tra trends initialization     (trd_init routine)
54   USE asminc         ! assimilation increments     
55   USE asmbkg         ! writing out state trajectory
56   USE diadct         ! sections transports           (dia_dct_init routine)
57   USE diaobs         ! Observation diagnostics       (dia_obs_init routine)
58   USE diacfl         ! CFL diagnostics               (dia_cfl_init routine)
[12377]59   USE diamlr         ! IOM context management for multiple-linear-regression analysis
[13237]60#if defined key_qco
61   USE stepMLF        ! NEMO time-stepping               (stp_MLF   routine)
62#else
[6140]63   USE step           ! NEMO time-stepping                 (stp     routine)
[13237]64#endif
[12377]65   USE isfstp         ! ice shelf                     (isf_stp_init routine)
[6140]66   USE icbini         ! handle bergs, initialisation
67   USE icbstp         ! handle bergs, calving, themodynamics and transport
68   USE cpl_oasis3     ! OASIS3 coupling
69   USE c1d            ! 1D configuration
70   USE step_c1d       ! Time stepping loop for the 1D configuration
71   USE dyndmp         ! Momentum damping
72   USE stopar         ! Stochastic param.: ???
73   USE stopts         ! Stochastic param.: ???
[12377]74   USE diu_layers     ! diurnal bulk SST and coolskin
[7646]75   USE step_diu       ! diurnal bulk SST timestepping (called from here if run offline)
76   USE crsini         ! initialise grid coarsening utility
[12214]77   USE dia25h         ! 25h mean output
[12377]78   USE diadetide      ! Weights computation for daily detiding of model diagnostics
[7646]79   USE sbc_oce , ONLY : lk_oasis
80   USE wet_dry        ! Wetting and drying setting   (wad_init routine)
[1594]81#if defined key_top
[6140]82   USE trcini         ! passive tracer initialisation
[1594]83#endif
[7646]84#if defined key_nemocice_decomp
85   USE ice_domain_size, only: nx_global, ny_global
86#endif
87   !
[13286]88   USE prtctl         ! Print control
[12641]89   USE in_out_manager ! I/O manager
[6140]90   USE lib_mpp        ! distributed memory computing
[7646]91   USE mppini         ! shared/distributed memory setting (mpp_init routine)
[13286]92   USE lbcnfd  , ONLY : isendto, nsndto  ! Setup of north fold exchanges
[7646]93   USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)
[1412]94#if defined key_iomput
[6140]95   USE xios           ! xIOserver
[1359]96#endif
[9780]97#if defined key_agrif
98   USE agrif_all_update   ! Master Agrif update
99#endif
[13286]100   USE halo_mng
[268]101
[2715]102   IMPLICIT NONE
[3]103   PRIVATE
104
[2496]105   PUBLIC   nemo_gcm    ! called by model.F90
106   PUBLIC   nemo_init   ! needed by AGRIF
[3764]107   PUBLIC   nemo_alloc  ! needed by TAM
[467]108
[2498]109   CHARACTER(lc) ::   cform_aaa="( /, 'AAAAAAAA', / ) "     ! flag for output listing
[1593]110
[10425]111#if defined key_mpp_mpi
[11536]112   ! need MPI_Wtime
[10425]113   INCLUDE 'mpif.h'
114#endif
115
[3]116   !!----------------------------------------------------------------------
[9570]117   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
[2392]118   !! $Id$
[10068]119   !! Software governed by the CeCILL license (see ./LICENSE)
[3]120   !!----------------------------------------------------------------------
121CONTAINS
122
[2496]123   SUBROUTINE nemo_gcm
[3]124      !!----------------------------------------------------------------------
[2496]125      !!                     ***  ROUTINE nemo_gcm  ***
[3]126      !!
[3764]127      !! ** Purpose :   NEMO solves the primitive equations on an orthogonal
[1593]128      !!              curvilinear mesh on the sphere.
[3]129      !!
130      !! ** Method  : - model general initialization
131      !!              - launch the time-stepping (stp routine)
[1593]132      !!              - finalize the run by closing files and communications
[3]133      !!
[2715]134      !! References : Madec, Delecluse, Imbard, and Levy, 1997:  internal report, IPSL.
[1593]135      !!              Madec, 2008, internal report, IPSL.
[3]136      !!----------------------------------------------------------------------
[7646]137      INTEGER ::   istp   ! time step index
[11536]138      REAL(wp)::   zstptiming   ! elapsed time for 1 time step
[389]139      !!----------------------------------------------------------------------
[2382]140      !
[392]141#if defined key_agrif
[1593]142      CALL Agrif_Init_Grids()      ! AGRIF: set the meshes
[389]143#endif
[1593]144      !                            !-----------------------!
[2496]145      CALL nemo_init               !==  Initialisations  ==!
[1593]146      !                            !-----------------------!
[2715]147#if defined key_agrif
[12377]148      Kbb_a = Nbb; Kmm_a = Nnn; Krhs_a = Nrhs   ! agrif_oce module copies of time level indices
[13216]149      CALL Agrif_Declare_Var       !  "      "   "   "      "  DYN/TRA
[2715]150# if defined key_top
[3680]151      CALL Agrif_Declare_Var_top   !  "      "   "   "      "  TOP
[2715]152# endif
153#endif
[682]154      ! check that all process are still there... If some process have an error,
155      ! they will never enter in step and other processes will wait until the end of the cpu time!
[10425]156      CALL mpp_max( 'nemogcm', nstop )
[682]157
[1593]158      IF(lwp) WRITE(numout,cform_aaa)   ! Flag AAAAAAA
159
160      !                            !-----------------------!
161      !                            !==   time stepping   ==!
162      !                            !-----------------------!
[12489]163      !
164      !                                               !== set the model time-step  ==!
165      !
[900]166      istp = nit000
[9210]167      !
[2236]168#if defined key_c1d
[9210]169      DO WHILE ( istp <= nitend .AND. nstop == 0 )    !==  C1D time-stepping  ==!
170         CALL stp_c1d( istp )
171         istp = istp + 1
172      END DO
[2236]173#else
[9210]174      !
175# if defined key_agrif
176      !                                               !==  AGRIF time-stepping  ==!
177      CALL Agrif_Regrid()
[9213]178      !
[9780]179      ! Recursive update from highest nested level to lowest:
[12377]180      Kbb_a = Nbb; Kmm_a = Nnn; Krhs_a = Nrhs   ! agrif_oce module copies of time level indices
[9780]181      CALL Agrif_step_child_adj(Agrif_Update_All)
182      !
[9210]183      DO WHILE( istp <= nitend .AND. nstop == 0 )
[13237]184#if defined key_qco
185         CALL stp_MLF
186#else
[9210]187         CALL stp
[13237]188#endif
[9210]189         istp = istp + 1
190      END DO
191      !
192# else
193      !
194      IF( .NOT.ln_diurnal_only ) THEN                 !==  Standard time-stepping  ==!
195         !
196         DO WHILE( istp <= nitend .AND. nstop == 0 )
[11536]197
[10425]198            ncom_stp = istp
[11536]199            IF( ln_timing ) THEN
200               zstptiming = MPI_Wtime()
201               IF ( istp == ( nit000 + 1 ) ) elapsed_time = zstptiming
202               IF ( istp ==         nitend ) elapsed_time = zstptiming - elapsed_time
203            ENDIF
204           
[13237]205#if defined key_qco
206            CALL stp_MLF      ( istp )
207#else
[9210]208            CALL stp        ( istp ) 
[13237]209#endif
[389]210            istp = istp + 1
[11536]211
212            IF( lwp .AND. ln_timing )   WRITE(numtime,*) 'timing step ', istp-1, ' : ', MPI_Wtime() - zstptiming
213
[389]214         END DO
[9210]215         !
216      ELSE                                            !==  diurnal SST time-steeping only  ==!
217         !
218         DO WHILE( istp <= nitend .AND. nstop == 0 )
219            CALL stp_diurnal( istp )   ! time step only the diurnal SST
220            istp = istp + 1
221         END DO
222         !
223      ENDIF
224      !
225# endif
226      !
[2236]227#endif
[9210]228      !
[6140]229      IF( ln_diaobs   )   CALL dia_obs_wri
[3609]230      !
231      IF( ln_icebergs )   CALL icb_end( nitend )
[3764]232
[1593]233      !                            !------------------------!
234      !                            !==  finalize the run  ==!
235      !                            !------------------------!
[7646]236      IF(lwp) WRITE(numout,cform_aaa)        ! Flag AAAAAAA
[1593]237      !
[7646]238      IF( nstop /= 0 .AND. lwp ) THEN        ! error print
[11536]239         WRITE(ctmp1,*) '   ==>>>   nemo_gcm: a total of ', nstop, ' errors have been found'
[12933]240         IF( ngrdstop > 0 ) THEN
241            WRITE(ctmp9,'(i2)') ngrdstop
[13011]242            WRITE(ctmp2,*) '           E R R O R detected in Agrif grid '//TRIM(ctmp9)
243            WRITE(ctmp3,*) '           Look for "E R R O R" messages in all existing '//TRIM(ctmp9)//'_ocean_output* files'
244            CALL ctl_stop( ' ', ctmp1, ' ', ctmp2, ' ', ctmp3 )
[12933]245         ELSE
[13011]246            WRITE(ctmp2,*) '           Look for "E R R O R" messages in all existing ocean_output* files'
247            CALL ctl_stop( ' ', ctmp1, ' ', ctmp2 )
[12933]248         ENDIF
[389]249      ENDIF
[1593]250      !
[9124]251      IF( ln_timing )   CALL timing_finalize
[3294]252      !
[2496]253      CALL nemo_closefile
[4990]254      !
[3769]255#if defined key_iomput
[9210]256                                    CALL xios_finalize  ! end mpp communications with xios
257      IF( lk_oasis     )            CALL cpl_finalize   ! end coupling and mpp communications with OASIS
[532]258#else
[9210]259      IF    ( lk_oasis ) THEN   ;   CALL cpl_finalize   ! end coupling and mpp communications with OASIS
[13011]260      ELSEIF( lk_mpp   ) THEN   ;   CALL mppstop        ! end mpp communications
[4990]261      ENDIF
[532]262#endif
[900]263      !
[10436]264      IF(lwm) THEN
265         IF( nstop == 0 ) THEN   ;   STOP 0
[11536]266         ELSE                    ;   STOP 123
[10436]267         ENDIF
[10425]268      ENDIF
269      !
[2496]270   END SUBROUTINE nemo_gcm
[389]271
272
[2496]273   SUBROUTINE nemo_init
[389]274      !!----------------------------------------------------------------------
[2496]275      !!                     ***  ROUTINE nemo_init  ***
[389]276      !!
[2496]277      !! ** Purpose :   initialization of the NEMO GCM
[389]278      !!----------------------------------------------------------------------
[11536]279      INTEGER ::   ios, ilocal_comm   ! local integers
[9213]280      !!
[13286]281      NAMELIST/namctl/ sn_cfctl, ln_timing, ln_diacfl,                                &
282         &             nn_isplt,  nn_jsplt,  nn_ictls, nn_ictle, nn_jctls, nn_jctle           
[9213]283      NAMELIST/namcfg/ ln_read_cfg, cn_domcfg, ln_closea, ln_write_cfg, cn_domcfg_out, ln_use_jattr
[3]284      !!----------------------------------------------------------------------
[1593]285      !
[5407]286      cxios_context = 'nemo'
[2496]287      !
[11536]288      !                             !-------------------------------------------------!
289      !                             !     set communicator & select the local rank    !
290      !                             !  must be done as soon as possible to get narea  !
291      !                             !-------------------------------------------------!
[1593]292      !
[1412]293#if defined key_iomput
[2200]294      IF( Agrif_Root() ) THEN
[5407]295         IF( lk_oasis ) THEN
[7646]296            CALL cpl_init( "oceanx", ilocal_comm )                               ! nemo local communicator given by oasis
[11536]297            CALL xios_initialize( "not used"       , local_comm =ilocal_comm )   ! send nemo communicator to xios
[4990]298         ELSE
[11536]299            CALL xios_initialize( "for_xios_mpi_id", return_comm=ilocal_comm )   ! nemo local communicator given by xios
[4990]300         ENDIF
[2200]301      ENDIF
[11536]302      CALL mpp_start( ilocal_comm )
[532]303#else
[5407]304      IF( lk_oasis ) THEN
[4990]305         IF( Agrif_Root() ) THEN
[7646]306            CALL cpl_init( "oceanx", ilocal_comm )          ! nemo local communicator given by oasis
[4990]307         ENDIF
[11536]308         CALL mpp_start( ilocal_comm )
[4990]309      ELSE
[11536]310         CALL mpp_start( )
[2236]311      ENDIF
[532]312#endif
[11536]313      !
314      narea = mpprank + 1               ! mpprank: the rank of proc (0 --> mppsize -1 )
315      lwm = (narea == 1)                ! control of output namelists
316      !
317      !                             !---------------------------------------------------------------!
318      !                             ! Open output files, reference and configuration namelist files !
319      !                             !---------------------------------------------------------------!
320      !
321      ! open ocean.output as soon as possible to get all output prints (including errors messages)
322      IF( lwm )   CALL ctl_opn(     numout,        'ocean.output', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. )
323      ! open reference and configuration namelist files
[12377]324                  CALL load_nml( numnam_ref,        'namelist_ref',                                           -1, lwm )
325                  CALL load_nml( numnam_cfg,        'namelist_cfg',                                           -1, lwm )
[11536]326      IF( lwm )   CALL ctl_opn(     numond, 'output.namelist.dyn', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. )
327      ! open /dev/null file to be able to supress output write easily
[12641]328      IF( Agrif_Root() ) THEN
[11536]329                  CALL ctl_opn(     numnul,           '/dev/null', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. )
[12641]330#ifdef key_agrif
331      ELSE
332                  numnul = Agrif_Parent(numnul)   
333#endif
334      ENDIF
[11536]335      !                             !--------------------!
[12377]336      !                             ! Open listing units !  -> need sn_cfctl from namctl to define lwp
[11536]337      !                             !--------------------!
338      !
339      READ  ( numnam_ref, namctl, IOSTAT = ios, ERR = 901 )
340901   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namctl in reference namelist' )
341      READ  ( numnam_cfg, namctl, IOSTAT = ios, ERR = 902 )
342902   IF( ios >  0 )   CALL ctl_nam ( ios , 'namctl in configuration namelist' )
343      !
[12377]344      ! finalize the definition of namctl variables
[12933]345      IF( narea < sn_cfctl%procmin .OR. narea > sn_cfctl%procmax .OR. MOD( narea - sn_cfctl%procmin, sn_cfctl%procincr ) /= 0 )   &
346         &   CALL nemo_set_cfctl( sn_cfctl, .FALSE. )
[11536]347      !
[12377]348      lwp = (narea == 1) .OR. sn_cfctl%l_oceout    ! control of all listing output print
349      !
[11536]350      IF(lwp) THEN                      ! open listing units
[1593]351         !
[11536]352         IF( .NOT. lwm )   &            ! alreay opened for narea == 1
353            &            CALL ctl_opn( numout, 'ocean.output', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE., narea )
[1593]354         !
[1579]355         WRITE(numout,*)
[11536]356         WRITE(numout,*) '   CNRS - NERC - Met OFFICE - MERCATOR-ocean - CMCC'
[1593]357         WRITE(numout,*) '                       NEMO team'
[1579]358         WRITE(numout,*) '            Ocean General Circulation Model'
[10510]359         WRITE(numout,*) '                NEMO version 4.0  (2019) '
[1579]360         WRITE(numout,*)
[10510]361         WRITE(numout,*) "           ._      ._      ._      ._      ._    "
362         WRITE(numout,*) "       _.-._)`\_.-._)`\_.-._)`\_.-._)`\_.-._)`\_ "
[1579]363         WRITE(numout,*)
[10510]364         WRITE(numout,*) "           o         _,           _,             "
365         WRITE(numout,*) "            o      .' (        .-' /             "
366         WRITE(numout,*) "           o     _/..._'.    .'   /              "
367         WRITE(numout,*) "      (    o .-'`      ` '-./  _.'               "
368         WRITE(numout,*) "       )    ( o)           ;= <_         (       "
369         WRITE(numout,*) "      (      '-.,\\__ __.-;`\   '.        )      "
370         WRITE(numout,*) "       )  )       \) |`\ \)  '.   \      (   (   "
371         WRITE(numout,*) "      (  (           \_/       '-._\      )   )  "
[10583]372         WRITE(numout,*) "       )  ) jgs                     `    (   (   "
[10510]373         WRITE(numout,*) "     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ "
374         WRITE(numout,*)
[13226]375         
376         ! Print the working precision to ocean.output
377         IF (wp == dp) THEN
378            WRITE(numout,*) "Working precision = double-precision"
379         ELSE
380            WRITE(numout,*) "Working precision = single-precision"
381         ENDIF
382         WRITE(numout,*)
[1593]383         !
[7646]384         WRITE(numout,cform_aaa)                                        ! Flag AAAAAAA
385         !
[473]386      ENDIF
[10425]387      !
[11536]388      IF(lwm) WRITE( numond, namctl )
389      !
390      !                             !------------------------------------!
391      !                             !  Set global domain size parameters !
392      !                             !------------------------------------!
393      !
394      READ  ( numnam_ref, namcfg, IOSTAT = ios, ERR = 903 )
395903   IF( ios /= 0 )   CALL ctl_nam ( ios , 'namcfg in reference namelist' )
396      READ  ( numnam_cfg, namcfg, IOSTAT = ios, ERR = 904 )
397904   IF( ios >  0 )   CALL ctl_nam ( ios , 'namcfg in configuration namelist' )   
398      !
399      IF( ln_read_cfg ) THEN            ! Read sizes in domain configuration file
[13286]400         CALL domain_cfg ( cn_cfg, nn_cfg, Ni0glo, Nj0glo, jpkglo, jperio )
[11536]401      ELSE                              ! user-defined namelist
[13286]402         CALL usr_def_nam( cn_cfg, nn_cfg, Ni0glo, Nj0glo, jpkglo, jperio )
[11536]403      ENDIF
404      !
405      IF(lwm)   WRITE( numond, namcfg )
406      !
407      !                             !-----------------------------------------!
408      !                             ! mpp parameters and domain decomposition !
409      !                             !-----------------------------------------!
410      CALL mpp_init
[2715]411
[13286]412      CALL halo_mng_init()
[7646]413      ! Now we know the dimensions of the grid and numout has been set: we can allocate arrays
[2715]414      CALL nemo_alloc()
415
[12377]416      ! Initialise time level indices
417      Nbb = 1; Nnn = 2; Naa = 3; Nrhs = Naa
[13216]418#if defined key_agrif
419      Kbb_a = Nbb; Kmm_a = Nnn; Krhs_a = Nrhs   ! agrif_oce module copies of time level indices
420#endif 
[2496]421      !                             !-------------------------------!
422      !                             !  NEMO general initialization  !
423      !                             !-------------------------------!
[473]424
[7646]425      CALL nemo_ctl                          ! Control prints
[2382]426      !
[9213]427      !                                      ! General initialization
428      IF( ln_timing    )   CALL timing_init     ! timing
429      IF( ln_timing    )   CALL timing_start( 'nemo_init')
[3294]430      !
[9367]431                           CALL     phy_cst         ! Physical constants
432                           CALL     eos_init        ! Equation of state
433      IF( lk_c1d       )   CALL     c1d_init        ! 1D column configuration
434                           CALL     wad_init        ! Wetting and drying options
[13216]435
436#if defined key_agrif
437     CALL Agrif_Declare_Var_ini   !  "      "   "   "      "  DOM
438#endif
[12377]439                           CALL     dom_init( Nbb, Nnn, Naa, "OPA") ! Domain
440      IF( ln_crs       )   CALL     crs_init(      Nnn )       ! coarsened grid: domain initialization
441      IF( sn_cfctl%l_prtctl )   &
442         &                 CALL prt_ctl_init        ! Print control
[6140]443     
[12377]444                           CALL diurnal_sst_bulk_init       ! diurnal sst
[9213]445      IF( ln_diurnal   )   CALL diurnal_sst_coolskin_init   ! cool skin   
446      !                           
[12377]447      IF( ln_diurnal_only ) THEN                    ! diurnal only: a subset of the initialisation routines
448         CALL  istate_init( Nbb, Nnn, Naa )         ! ocean initial state (Dynamics and tracers)
449         CALL     sbc_init( Nbb, Nnn, Naa )         ! Forcings : surface module
450         CALL tra_qsr_init                          ! penetrative solar radiation qsr
451         IF( ln_diaobs ) THEN                       ! Observation & model comparison
452            CALL dia_obs_init( Nnn )                ! Initialize observational data
453            CALL dia_obs( nit000 - 1, Nnn )         ! Observation operator for restart
[6140]454         ENDIF     
[12377]455         IF( lk_asminc )   CALL asm_inc_init( Nbb, Nnn, Nrhs )   ! Assimilation increments
[9213]456         !
457         RETURN                                       ! end of initialization
[6140]458      ENDIF
[12377]459      !
[13216]460
[12377]461                           CALL  istate_init( Nbb, Nnn, Naa )    ! ocean initial state (Dynamics and tracers)
[3651]462
[5836]463      !                                      ! external forcing
[12377]464                           CALL    tide_init                     ! tidal harmonics
465                           CALL     sbc_init( Nbb, Nnn, Naa )    ! surface boundary conditions (including sea-ice)
466                           CALL     bdy_init                     ! Open boundaries initialisation
[9019]467
[5836]468      !                                      ! Ocean physics
[12377]469                           CALL zdf_phy_init( Nnn )    ! Vertical physics
[9019]470                                     
[2082]471      !                                         ! Lateral physics
[9019]472                           CALL ldf_tra_init      ! Lateral ocean tracer physics
[13886]473                           CALL ldf_eiv_init      ! eddy induced velocity param. must be done after ldf_tra_init
[9019]474                           CALL ldf_dyn_init      ! Lateral ocean momentum physics
[2082]475
[9019]476      !                                      ! Active tracers
477      IF( ln_traqsr    )   CALL tra_qsr_init      ! penetrative solar radiation qsr
478                           CALL tra_bbc_init      ! bottom heat flux
[10350]479                           CALL tra_bbl_init      ! advective (and/or diffusive) bottom boundary layer scheme
[9019]480                           CALL tra_dmp_init      ! internal tracer damping
481                           CALL tra_adv_init      ! horizontal & vertical advection
482                           CALL tra_ldf_init      ! lateral mixing
[2027]483
[9019]484      !                                      ! Dynamics
[12377]485      IF( lk_c1d       )   CALL dyn_dmp_init         ! internal momentum damping
486                           CALL dyn_adv_init         ! advection (vector or flux form)
487                           CALL dyn_vor_init         ! vorticity term including Coriolis
488                           CALL dyn_ldf_init         ! lateral mixing
489                           CALL dyn_hpg_init( Nnn )  ! horizontal gradient of Hydrostatic pressure
490                           CALL dyn_spg_init         ! surface pressure gradient
[3764]491
[13808]492      !                                      ! Icebergs
493                           CALL icb_init( rn_Dt, nit000)   ! initialise icebergs instance
494
495                                                ! ice shelf
496                           CALL isf_init( Nbb, Nnn, Naa )
[5836]497#if defined key_top
498      !                                      ! Passive tracers
[12377]499                           CALL     trc_init( Nbb, Nnn, Naa )
[5836]500#endif
[9019]501      IF( l_ldfslp     )   CALL ldf_slp_init    ! slope of lateral mixing
[5836]502
503      !                                      ! Misc. options
[9019]504                           CALL sto_par_init    ! Stochastic parametrization
505      IF( ln_sto_eos   )   CALL sto_pts_init    ! RRandom T/S fluctuations
[4147]506     
[5836]507      !                                      ! Diagnostics
[12377]508                           CALL     flo_init( Nnn )    ! drifting Floats
[9019]509      IF( ln_diacfl    )   CALL dia_cfl_init    ! Initialise CFL diagnostics
[11536]510                           CALL dia_dct_init    ! Sections tranports
[12377]511                           CALL dia_hsb_init( Nnn )    ! heat content, salt content and volume budgets
512                           CALL     trd_init( Nnn )    ! Mixed-layer/Vorticity/Integral constraints trends
513                           CALL dia_obs_init( Nnn )    ! Initialize observational data
514                           CALL dia_25h_init( Nbb )    ! 25h mean  outputs
515                           CALL dia_detide_init ! Weights computation for daily detiding of model diagnostics
516      IF( ln_diaobs    )   CALL dia_obs( nit000-1, Nnn )   ! Observation operator for restart
517                           CALL dia_mlr_init    ! Initialisation of IOM context management for multiple-linear-regression analysis
[6140]518
[9019]519      !                                      ! Assimilation increments
[12377]520      IF( lk_asminc    )   CALL asm_inc_init( Nbb, Nnn, Nrhs )   ! Initialize assimilation increments
[1593]521      !
[9213]522      IF(lwp) WRITE(numout,cform_aaa)           ! Flag AAAAAAA
523      !
524      IF( ln_timing    )   CALL timing_stop( 'nemo_init')
525      !
[2496]526   END SUBROUTINE nemo_init
[467]527
528
[2496]529   SUBROUTINE nemo_ctl
[467]530      !!----------------------------------------------------------------------
[2496]531      !!                     ***  ROUTINE nemo_ctl  ***
[467]532      !!
[3764]533      !! ** Purpose :   control print setting
[467]534      !!
[11536]535      !! ** Method  : - print namctl and namcfg information and check some consistencies
[467]536      !!----------------------------------------------------------------------
[2442]537      !
[2496]538      IF(lwp) THEN                  ! control print
[531]539         WRITE(numout,*)
[7646]540         WRITE(numout,*) 'nemo_ctl: Control prints'
[9213]541         WRITE(numout,*) '~~~~~~~~'
[1593]542         WRITE(numout,*) '   Namelist namctl'
[10570]543         WRITE(numout,*) '                              sn_cfctl%l_runstat = ', sn_cfctl%l_runstat
544         WRITE(numout,*) '                              sn_cfctl%l_trcstat = ', sn_cfctl%l_trcstat
545         WRITE(numout,*) '                              sn_cfctl%l_oceout  = ', sn_cfctl%l_oceout
546         WRITE(numout,*) '                              sn_cfctl%l_layout  = ', sn_cfctl%l_layout
[12377]547         WRITE(numout,*) '                              sn_cfctl%l_prtctl  = ', sn_cfctl%l_prtctl
548         WRITE(numout,*) '                              sn_cfctl%l_prttrc  = ', sn_cfctl%l_prttrc
549         WRITE(numout,*) '                              sn_cfctl%l_oasout  = ', sn_cfctl%l_oasout
[10570]550         WRITE(numout,*) '                              sn_cfctl%procmin   = ', sn_cfctl%procmin 
551         WRITE(numout,*) '                              sn_cfctl%procmax   = ', sn_cfctl%procmax 
552         WRITE(numout,*) '                              sn_cfctl%procincr  = ', sn_cfctl%procincr 
553         WRITE(numout,*) '                              sn_cfctl%ptimincr  = ', sn_cfctl%ptimincr 
[9019]554         WRITE(numout,*) '      timing by routine               ln_timing  = ', ln_timing
555         WRITE(numout,*) '      CFL diagnostics                 ln_diacfl  = ', ln_diacfl
[531]556      ENDIF
[2442]557      !
[13286]558      IF( .NOT.ln_read_cfg )   ln_closea = .false.   ! dealing possible only with a domcfg file
[4147]559      IF(lwp) THEN                  ! control print
560         WRITE(numout,*)
561         WRITE(numout,*) '   Namelist namcfg'
[7646]562         WRITE(numout,*) '      read domain configuration file                ln_read_cfg      = ', ln_read_cfg
563         WRITE(numout,*) '         filename to be read                           cn_domcfg     = ', TRIM(cn_domcfg)
[9213]564         WRITE(numout,*) '         keep closed seas in the domain (if exist)     ln_closea     = ', ln_closea
565         WRITE(numout,*) '      create a configuration definition file        ln_write_cfg     = ', ln_write_cfg
[7646]566         WRITE(numout,*) '         filename to be written                        cn_domcfg_out = ', TRIM(cn_domcfg_out)
567         WRITE(numout,*) '      use file attribute if exists as i/p j-start   ln_use_jattr     = ', ln_use_jattr
[4147]568      ENDIF
[9213]569      !
570      IF( 1._wp /= SIGN(1._wp,-0._wp)  )   CALL ctl_stop( 'nemo_ctl: The intrinsec SIGN function follows f2003 standard.',  &
[10425]571         &                                                'Compile with key_nosignedzero enabled:',   &
572         &                                                '--> add -Dkey_nosignedzero to the definition of %CPP in your arch file' )
[3764]573      !
[9023]574#if defined key_agrif
[9124]575      IF( ln_timing )   CALL ctl_stop( 'AGRIF not implemented with ln_timing = true')
[9023]576#endif
577      !
[2496]578   END SUBROUTINE nemo_ctl
[467]579
580
[2496]581   SUBROUTINE nemo_closefile
[467]582      !!----------------------------------------------------------------------
[2496]583      !!                     ***  ROUTINE nemo_closefile  ***
[467]584      !!
585      !! ** Purpose :   Close the files
586      !!----------------------------------------------------------------------
[1593]587      !
588      IF( lk_mpp )   CALL mppsync
589      !
[1685]590      CALL iom_close                                 ! close all input/output files managed by iom_*
[1593]591      !
[4147]592      IF( numstp          /= -1 )   CLOSE( numstp          )   ! time-step file
[9019]593      IF( numrun          /= -1 )   CLOSE( numrun          )   ! run statistics file
[4624]594      IF( lwm.AND.numond  /= -1 )   CLOSE( numond          )   ! oce output namelist
595      IF( lwm.AND.numoni  /= -1 )   CLOSE( numoni          )   ! ice output namelist
[4147]596      IF( numevo_ice      /= -1 )   CLOSE( numevo_ice      )   ! ice variables (temp. evolution)
597      IF( numout          /=  6 )   CLOSE( numout          )   ! standard model output file
598      IF( numdct_vol      /= -1 )   CLOSE( numdct_vol      )   ! volume transports
599      IF( numdct_heat     /= -1 )   CLOSE( numdct_heat     )   ! heat transports
600      IF( numdct_salt     /= -1 )   CLOSE( numdct_salt     )   ! salt transports
[1593]601      !
[2442]602      numout = 6                                     ! redefine numout in case it is used after this point...
603      !
[2496]604   END SUBROUTINE nemo_closefile
[467]605
[2715]606
607   SUBROUTINE nemo_alloc
608      !!----------------------------------------------------------------------
609      !!                     ***  ROUTINE nemo_alloc  ***
610      !!
611      !! ** Purpose :   Allocate all the dynamic arrays of the OPA modules
612      !!
613      !! ** Method  :
614      !!----------------------------------------------------------------------
[9213]615      USE diawri    , ONLY : dia_wri_alloc
616      USE dom_oce   , ONLY : dom_oce_alloc
617      USE trc_oce   , ONLY : trc_oce_alloc
618      USE bdy_oce   , ONLY : bdy_oce_alloc
[2715]619      !
620      INTEGER :: ierr
621      !!----------------------------------------------------------------------
622      !
[9213]623      ierr =        oce_alloc    ()    ! ocean
624      ierr = ierr + dia_wri_alloc()
625      ierr = ierr + dom_oce_alloc()    ! ocean domain
626      ierr = ierr + zdf_oce_alloc()    ! ocean vertical physics
627      ierr = ierr + trc_oce_alloc()    ! shared TRC / TRA arrays
628      ierr = ierr + bdy_oce_alloc()    ! bdy masks (incl. initialization)
[2715]629      !
[10425]630      CALL mpp_sum( 'nemogcm', ierr )
[9213]631      IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'nemo_alloc: unable to allocate standard ocean arrays' )
[2715]632      !
633   END SUBROUTINE nemo_alloc
634
[11536]635   
[12933]636   SUBROUTINE nemo_set_cfctl(sn_cfctl, setto )
[10570]637      !!----------------------------------------------------------------------
638      !!                     ***  ROUTINE nemo_set_cfctl  ***
639      !!
640      !! ** Purpose :   Set elements of the output control structure to setto.
641      !!
642      !! ** Method  :   Note this routine can be used to switch on/off some
[12933]643      !!                types of output for selected areas.
[10570]644      !!----------------------------------------------------------------------
[12933]645      TYPE(sn_ctl), INTENT(inout) :: sn_cfctl
646      LOGICAL     , INTENT(in   ) :: setto
[10570]647      !!----------------------------------------------------------------------
[12933]648      sn_cfctl%l_runstat = setto
649      sn_cfctl%l_trcstat = setto
[10570]650      sn_cfctl%l_oceout  = setto
651      sn_cfctl%l_layout  = setto
[12377]652      sn_cfctl%l_prtctl  = setto
653      sn_cfctl%l_prttrc  = setto
654      sn_cfctl%l_oasout  = setto
[10570]655   END SUBROUTINE nemo_set_cfctl
656
[3]657   !!======================================================================
[2496]658END MODULE nemogcm
Note: See TracBrowser for help on using the repository browser.