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.
asmbkg.F90 in branches/UKMO/dev_r7750_GO6_package_oasis_timers/NEMOGCM/NEMO/OPA_SRC/ASM – NEMO

source: branches/UKMO/dev_r7750_GO6_package_oasis_timers/NEMOGCM/NEMO/OPA_SRC/ASM/asmbkg.F90 @ 9252

Last change on this file since 9252 was 9252, checked in by andmirek, 6 years ago

#1978 timers for nn_timing 3

File size: 8.6 KB
Line 
1MODULE asmbkg
2   !!======================================================================
3   !!                       ***  MODULE asmtrj -> asmbkg  ***
4   !! Assimilation trajectory interface: Write to file the background state and the model state trajectory
5   !!======================================================================
6   !! History :       ! 2007-03 (M. Martin)  Met. Office version
7   !!                 ! 2007-04 (A. Weaver)  asm_trj_wri, original code
8   !!                 ! 2007-03 (K. Mogensen)  Adapt to NEMOVAR and use IOM instead of IOIPSL
9   !!                 ! 2007-04 (A. Weaver)  Name change (formally asmbkg.F90). Distinguish
10   !!                                        background states in Jb term and at analysis time.
11   !!                                        Include state trajectory routine (currently empty)
12   !!                 ! 2007-07 (A. Weaver)  Add tke_rst and flt_rst for case nitbkg=0
13   !!                 ! 2009-03 (F. Vigilant)  Add hmlp (zdfmxl) for no tracer nmldp=2
14   !!                 ! 2009-06 (F. Vigilant) asm_trj_wri: special case when kt=nit000-1
15   !!                 ! 2009-07 (F. Vigilant) asm_trj_wri: add computation of eiv at restart
16   !!                 ! 2010-01 (A. Vidard) split asm_trj_wri into tam_trj_wri and asm_bkg_wri
17   !!----------------------------------------------------------------------
18
19   !!----------------------------------------------------------------------
20   !!   'key_asminc' : Switch on the assimilation increment interface
21   !!----------------------------------------------------------------------
22   !!   asm_bkg_wri  : Write out the background state
23   !!   asm_trj_wri  : Write out the model state trajectory (used with 4D-Var)
24   !!----------------------------------------------------------------------
25   USE oce                ! Dynamics and active tracers defined in memory
26   USE sbc_oce            ! Ocean surface boundary conditions
27   USE zdf_oce            ! Vertical mixing variables
28   USE zdfddm             ! Double diffusion mixing parameterization
29   USE ldftra_oce         ! Lateral tracer mixing coefficient defined in memory
30   USE ldfslp             ! Slopes of neutral surfaces
31   USE tradmp             ! Tracer damping
32#if defined key_zdftke
33   USE zdftke             ! TKE vertical physics
34#endif
35   USE eosbn2             ! Equation of state (eos_bn2 routine)
36   USE zdfmxl             ! Mixed layer depth
37   USE dom_oce, ONLY :   ndastp
38   USE sol_oce, ONLY :   gcx   ! Solver variables defined in memory
39   USE in_out_manager     ! I/O manager
40   USE iom                ! I/O module
41   USE asmpar             ! Parameters for the assmilation interface
42   USE zdfmxl             ! mixed layer depth
43#if defined key_traldf_c2d
44   USE ldfeiv             ! eddy induced velocity coef.      (ldf_eiv routine)
45#endif
46#if defined key_lim2
47   USE ice_2
48#endif
49#if defined key_lim3
50   USE ice
51#endif
52   USE timing
53   IMPLICIT NONE
54   PRIVATE
55   
56   PUBLIC   asm_bkg_wri   !: Write out the background state
57
58   !!----------------------------------------------------------------------
59   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
60   !! $Id$
61   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
62   !!----------------------------------------------------------------------
63CONTAINS
64
65   SUBROUTINE asm_bkg_wri( kt )
66      !!-----------------------------------------------------------------------
67      !!                  ***  ROUTINE asm_bkg_wri ***
68      !!
69      !! ** Purpose : Write to file the background state for later use in the
70      !!              inner loop of data assimilation or for direct initialization
71      !!              in the outer loop.
72      !!
73      !! ** Method  : Write out the background state for use in the Jb term
74      !!              in the cost function and for use with direct initialization
75      !!              at analysis time.
76      !!-----------------------------------------------------------------------
77      INTEGER, INTENT( IN ) :: kt               ! Current time-step
78      !
79      CHARACTER (LEN=50) :: cl_asmbkg
80      CHARACTER (LEN=50) :: cl_asmdin
81      LOGICAL :: llok          ! Check if file exists
82      INTEGER :: inum          ! File unit number
83      REAL(wp) :: zdate        ! Date
84      !!-----------------------------------------------------------------------
85
86      !                                !-------------------------------------------
87      IF( kt == nitbkg_r ) THEN        ! Write out background at time step nitbkg_r
88         !                             !-----------------------------------========
89         !
90         WRITE(cl_asmbkg, FMT='(A,".nc")' ) TRIM( c_asmbkg )
91         cl_asmbkg = TRIM( cl_asmbkg )
92         INQUIRE( FILE = cl_asmbkg, EXIST = llok )
93         !
94         IF( .NOT. llok ) THEN
95            IF(lwp) WRITE(numout,*) ' Setting up assimilation background file '// TRIM( c_asmbkg )
96            !
97            !                                      ! Define the output file       
98            CALL iom_open( c_asmbkg, inum, ldwrt = .TRUE., kiolib = jprstlib)
99            !
100            IF( nitbkg_r == nit000 - 1 ) THEN      ! Treat special case when nitbkg = 0
101               zdate = REAL( ndastp )
102#if defined key_zdftke
103               ! lk_zdftke=T :   Read turbulent kinetic energy ( en )
104               IF(lwp) WRITE(numout,*) ' Reading TKE (en) from restart...'
105               CALL tke_rst( nit000, 'READ' )               ! lk_zdftke=T :   Read turbulent kinetic energy ( en )
106
107#endif
108            ELSE
109               zdate = REAL( ndastp )
110            ENDIF
111            !
112            !                                      ! Write the information
113            IF(nn_timing == 3)  CALL timing_start('rst_put')
114            CALL iom_rstput( kt, nitbkg_r, inum, 'rdastp' , zdate             )
115            CALL iom_rstput( kt, nitbkg_r, inum, 'un'     , un                )
116            CALL iom_rstput( kt, nitbkg_r, inum, 'vn'     , vn                )
117            CALL iom_rstput( kt, nitbkg_r, inum, 'tn'     , tsn(:,:,:,jp_tem) )
118            CALL iom_rstput( kt, nitbkg_r, inum, 'sn'     , tsn(:,:,:,jp_sal) )
119            CALL iom_rstput( kt, nitbkg_r, inum, 'sshn'   , sshn              )
120#if defined key_zdftke
121            CALL iom_rstput( kt, nitbkg_r, inum, 'en'     , en                )
122#endif
123            CALL iom_rstput( kt, nitbkg_r, inum, 'gcx'    , gcx               )
124            IF(nn_timing == 3)  CALL timing_stop('rst_put')
125            !
126            CALL iom_close( inum )
127         ENDIF
128         !
129      ENDIF
130
131      !                                !-------------------------------------------
132      IF( kt == nitdin_r ) THEN        ! Write out background at time step nitdin_r
133         !                             !-----------------------------------========
134         !
135         WRITE(cl_asmdin, FMT='(A,".nc")' ) TRIM( c_asmdin )
136         cl_asmdin = TRIM( cl_asmdin )
137         INQUIRE( FILE = cl_asmdin, EXIST = llok )
138         !
139         IF( .NOT. llok ) THEN
140            IF(lwp) WRITE(numout,*) ' Setting up assimilation background file '// TRIM( c_asmdin )
141            !
142            !                                      ! Define the output file       
143            CALL iom_open( c_asmdin, inum, ldwrt = .TRUE., kiolib = jprstlib)
144            !
145            IF( nitdin_r == nit000 - 1 ) THEN      ! Treat special case when nitbkg = 0
146
147               zdate = REAL( ndastp )
148            ELSE
149               zdate = REAL( ndastp )
150            ENDIF
151            !
152            !                                      ! Write the information
153            IF(nn_timing == 3)  CALL timing_start('rst_put')
154            CALL iom_rstput( kt, nitdin_r, inum, 'rdastp' , zdate             )
155            CALL iom_rstput( kt, nitdin_r, inum, 'un'     , un                )
156            CALL iom_rstput( kt, nitdin_r, inum, 'vn'     , vn                )
157            CALL iom_rstput( kt, nitdin_r, inum, 'tn'     , tsn(:,:,:,jp_tem) )
158            CALL iom_rstput( kt, nitdin_r, inum, 'sn'     , tsn(:,:,:,jp_sal) )
159            CALL iom_rstput( kt, nitdin_r, inum, 'sshn'   , sshn              )
160#if defined key_lim2 || defined key_lim3
161            IF(( nn_ice == 2 ) .OR. ( nn_ice == 3 )) THEN
162          IF(ALLOCATED(frld)) THEN
163                  CALL iom_rstput( kt, nitdin_r, inum, 'iceconc', 1.0 - frld(:,:)   )
164               ELSE
165        CALL ctl_warn('Ice concentration not written to background as ice variable frld not allocated on this timestep')
166          ENDIF
167            ENDIF
168#endif
169            IF(nn_timing == 3)  CALL timing_stop('rst_put')
170            !
171            CALL iom_close( inum )
172         ENDIF
173         !
174      ENDIF
175      !                   
176   END SUBROUTINE asm_bkg_wri
177
178   !!======================================================================
179END MODULE asmbkg
Note: See TracBrowser for help on using the repository browser.