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.
istate.F90 in NEMO/branches/2021/ticket2680_C1D_PAPA/tests/ISOMIP+/MY_SRC – NEMO

source: NEMO/branches/2021/ticket2680_C1D_PAPA/tests/ISOMIP+/MY_SRC/istate.F90 @ 15011

Last change on this file since 15011 was 15011, checked in by gsamson, 3 years ago

update namelists & cpp files accordingly to r15010 (#2680)

File size: 8.7 KB
Line 
1MODULE istate
2   !!======================================================================
3   !!                     ***  MODULE  istate  ***
4   !! Ocean state   :  initial state setting
5   !!=====================================================================
6   !! History :  OPA  !  1989-12  (P. Andrich)  Original code
7   !!            5.0  !  1991-11  (G. Madec)  rewritting
8   !!            6.0  !  1996-01  (G. Madec)  terrain following coordinates
9   !!            8.0  !  2001-09  (M. Levy, M. Ben Jelloul)  istate_eel
10   !!            8.0  !  2001-09  (M. Levy, M. Ben Jelloul)  istate_uvg
11   !!   NEMO     1.0  !  2003-08  (G. Madec, C. Talandier)  F90: Free form, modules + EEL R5
12   !!             -   !  2004-05  (A. Koch-Larrouy)  istate_gyre
13   !!            2.0  !  2006-07  (S. Masson)  distributed restart using iom
14   !!            3.3  !  2010-10  (C. Ethe) merge TRC-TRA
15   !!            3.4  !  2011-04  (G. Madec) Merge of dtatem and dtasal & suppression of tb,tn/sb,sn
16   !!            3.7  !  2016-04  (S. Flavoni) introduce user defined initial state
17   !!----------------------------------------------------------------------
18
19   !!----------------------------------------------------------------------
20   !!   istate_init   : initial state setting
21   !!   istate_uvg    : initial velocity in geostropic balance
22   !!----------------------------------------------------------------------
23   USE oce            ! ocean dynamics and active tracers
24   USE dom_oce        ! ocean space and time domain
25   USE daymod         ! calendar
26   USE dtatsd         ! data temperature and salinity   (dta_tsd routine)
27   USE dtauvd         ! data: U & V current             (dta_uvd routine)
28   USE domvvl          ! varying vertical mesh
29   USE wet_dry         ! wetting and drying (needed for wad_istate)
30   USE usrdef_istate   ! User defined initial state
31   !
32   USE in_out_manager  ! I/O manager
33   USE iom             ! I/O library
34   USE lib_mpp         ! MPP library
35   USE restart         ! restart
36#if defined key_agrif
37   USE agrif_oce_interp
38   USE agrif_oce
39#endif   
40
41   IMPLICIT NONE
42   PRIVATE
43
44   PUBLIC   istate_init   ! routine called by step.F90
45
46   !! * Substitutions
47#  include "do_loop_substitute.h90"
48#  include "domzgr_substitute.h90"
49   !!----------------------------------------------------------------------
50   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
51   !! $Id: istate.F90 11423 2019-08-08 14:02:49Z mathiot $
52   !! Software governed by the CeCILL license (see ./LICENSE)
53   !!----------------------------------------------------------------------
54CONTAINS
55
56   SUBROUTINE istate_init( Kbb, Kmm, Kaa )
57      !!----------------------------------------------------------------------
58      !!                   ***  ROUTINE istate_init  ***
59      !!
60      !! ** Purpose :   Initialization of the dynamics and tracer fields.
61      !!----------------------------------------------------------------------
62      INTEGER, INTENT( in )  ::  Kbb, Kmm, Kaa   ! ocean time level indices
63      !
64      INTEGER ::   ji, jj, jk   ! dummy loop indices
65      REAL(wp), DIMENSION(jpi,jpj,jpk) ::   zgdept     ! 3D table  !!st patch to use gdept subtitute
66!!gm see comment further down
67      REAL(wp), ALLOCATABLE, DIMENSION(:,:,:,:) ::   zuvd    ! U & V data workspace
68!!gm end
69      !!----------------------------------------------------------------------
70      !
71      IF(lwp) WRITE(numout,*)
72      IF(lwp) WRITE(numout,*) 'istate_init : Initialization of the dynamics and tracers'
73      IF(lwp) WRITE(numout,*) '~~~~~~~~~~~'
74
75!!gm  Why not include in the first call of dta_tsd ? 
76!!gm  probably associated with the use of internal damping...
77       CALL dta_tsd_init        ! Initialisation of T & S input data
78!!gm to be moved in usrdef of C1D case
79!      IF( ln_c1d )   CALL dta_uvd_init        ! Initialization of U & V input data
80!!gm
81
82      rhd  (:,:,:  ) = 0._wp   ;   rhop (:,:,:  ) = 0._wp      ! set one for all to 0 at level jpk
83      rn2b (:,:,:  ) = 0._wp   ;   rn2  (:,:,:  ) = 0._wp      ! set one for all to 0 at levels 1 and jpk
84      ts  (:,:,:,:,Kaa) = 0._wp                                   ! set one for all to 0 at level jpk
85      rab_b(:,:,:,:) = 0._wp   ;   rab_n(:,:,:,:) = 0._wp      ! set one for all to 0 at level jpk
86#if defined key_agrif
87      uu   (:,:,:  ,Kaa) = 0._wp   ! used in agrif_oce_sponge at initialization
88      vv   (:,:,:  ,Kaa) = 0._wp   ! used in agrif_oce_sponge at initialization   
89#endif
90
91#if defined key_agrif
92      IF ( (.NOT.Agrif_root()).AND.ln_init_chfrpar ) THEN
93         numror = 0                           ! define numror = 0 -> no restart file to read
94         ln_1st_euler = .true.                ! Set time-step indicator at nit000 (euler forward)
95         CALL day_init 
96         CALL agrif_istate( Kbb, Kmm, Kaa )   ! Interp from parent
97         !
98         ts  (:,:,:,:,Kmm) = ts (:,:,:,:,Kbb) 
99         ssh (:,:,Kmm)     = ssh(:,:,Kbb)
100         uu   (:,:,:,Kmm)   = uu  (:,:,:,Kbb)
101         vv   (:,:,:,Kmm)   = vv  (:,:,:,Kbb)
102      ELSE
103#endif
104      IF( ln_rstart ) THEN                    ! Restart from a file
105         !                                    ! -------------------
106         CALL rst_read( Kbb, Kmm )            ! Read the restart file
107         CALL day_init                        ! model calendar (using both namelist and restart infos)
108         !
109      ELSE                                    ! Start from rest
110         !                                    ! ---------------
111         numror = 0                           ! define numror = 0 -> no restart file to read
112         l_1st_euler = .true.                 ! Set time-step indicator at nit000 (euler forward)
113         CALL day_init                        ! model calendar (using both namelist and restart infos)
114         !                                    ! Initialization of ocean to zero
115         !
116         IF( ln_tsd_init ) THEN               
117            CALL dta_tsd( nit000, 'ini', ts(:,:,:,:,Kbb) )       ! read 3D T and S data at nit000
118            !
119            uu (:,:,:,Kbb) = 0._wp
120            vv (:,:,:,Kbb) = 0._wp
121            !
122         ELSE                                 ! user defined initial T and S
123            DO jk = 1, jpk
124               zgdept(:,:,jk) = gdept(:,:,jk,Kbb)
125            END DO
126            CALL usr_def_istate( zgdept, tmask, ts(:,:,:,:,Kbb), uu(:,:,:,Kbb), vv(:,:,:,Kbb)  )         
127         ENDIF
128         ts  (:,:,:,:,Kmm) = ts (:,:,:,:,Kbb)       ! set now values from to before ones
129         uu   (:,:,:,Kmm)   = uu  (:,:,:,Kbb)
130         vv   (:,:,:,Kmm)   = vv  (:,:,:,Kbb)
131
132!!gm POTENTIAL BUG :
133!!gm  ISSUE :  if ssh(:,:,Kbb) /= 0  then, in non linear free surface, the e3._n, e3._b should be recomputed
134!!             as well as gdept_ and gdepw_....   !!!!!
135!!      ===>>>>   probably a call to domvvl initialisation here....
136
137
138         !
139!!gm to be moved in usrdef of C1D case
140!         IF ( ln_uvd_init .AND. ln_c1d ) THEN ! read 3D U and V data at nit000
141!            ALLOCATE( zuvd(jpi,jpj,jpk,2) )
142!            CALL dta_uvd( nit000, zuvd )
143!            uu(:,:,:,Kbb) = zuvd(:,:,:,1) ;  uu(:,:,:,Kmm) = uu(:,:,:,Kbb)
144!            vv(:,:,:,Kbb) = zuvd(:,:,:,2) ;  vv(:,:,:,Kmm) = vv(:,:,:,Kbb)
145!            DEALLOCATE( zuvd )
146!         ENDIF
147         !
148!!gm This is to be changed !!!!
149!         ! - ML - ssh(:,:,Kmm) could be modified by istate_eel, so that initialization of e3t(:,:,:,Kbb) is done here
150!         IF( .NOT.ln_linssh ) THEN
151!            DO jk = 1, jpk
152!               e3t(:,:,jk,Kbb) = e3t(:,:,jk,Kmm)
153!            END DO
154!         ENDIF
155!!gm
156         !
157      ENDIF 
158#if defined key_agrif
159      ENDIF
160#endif
161      !
162      ! Initialize "now" and "before" barotropic velocities:
163      ! Do it whatever the free surface method, these arrays being eventually used
164      !
165      uu_b(:,:,Kmm) = 0._wp   ;   vv_b(:,:,Kmm) = 0._wp
166      uu_b(:,:,Kbb) = 0._wp   ;   vv_b(:,:,Kbb) = 0._wp
167      !
168!!gm  the use of umsak & vmask is not necessary below as uu(:,:,:,Kmm), vv(:,:,:,Kmm), uu(:,:,:,Kbb), vv(:,:,:,Kbb) are always masked
169      DO_3D( nn_hls, nn_hls, nn_hls, nn_hls, 1, jpkm1 )
170         uu_b(ji,jj,Kmm) = uu_b(ji,jj,Kmm) + e3u(ji,jj,jk,Kmm) * uu(ji,jj,jk,Kmm) * umask(ji,jj,jk)
171         vv_b(ji,jj,Kmm) = vv_b(ji,jj,Kmm) + e3v(ji,jj,jk,Kmm) * vv(ji,jj,jk,Kmm) * vmask(ji,jj,jk)
172         !
173         uu_b(ji,jj,Kbb) = uu_b(ji,jj,Kbb) + e3u(ji,jj,jk,Kbb) * uu(ji,jj,jk,Kbb) * umask(ji,jj,jk)
174         vv_b(ji,jj,Kbb) = vv_b(ji,jj,Kbb) + e3v(ji,jj,jk,Kbb) * vv(ji,jj,jk,Kbb) * vmask(ji,jj,jk)
175      END_3D
176      !
177      uu_b(:,:,Kmm) = uu_b(:,:,Kmm) * r1_hu(:,:,Kmm)
178      vv_b(:,:,Kmm) = vv_b(:,:,Kmm) * r1_hv(:,:,Kmm)
179      !
180      uu_b(:,:,Kbb) = uu_b(:,:,Kbb) * r1_hu(:,:,Kbb)
181      vv_b(:,:,Kbb) = vv_b(:,:,Kbb) * r1_hv(:,:,Kbb)
182      !
183   END SUBROUTINE istate_init
184
185   !!======================================================================
186END MODULE istate
Note: See TracBrowser for help on using the repository browser.