1 | MODULE nemogcm |
---|
2 | !!====================================================================== |
---|
3 | !! *** MODULE nemogcm *** |
---|
4 | !! Ocean system : NEMO GCM (ocean dynamics, on-line tracers, biochemistry and sea-ice) |
---|
5 | !!====================================================================== |
---|
6 | !! History : 3.6 ! 2015-12 (A. Ryan) Original code (from OCE/) |
---|
7 | !! 4.0 ! 2016-11 (G. Madec, S. Flavoni) domain configuration / user defined interface |
---|
8 | !!---------------------------------------------------------------------- |
---|
9 | |
---|
10 | !!---------------------------------------------------------------------- |
---|
11 | !! nemo_gcm : solve ocean dynamics, tracer, biogeochemistry and/or sea-ice |
---|
12 | !! nemo_init : initialization of the NEMO system |
---|
13 | !! nemo_ctl : initialisation of the contol print |
---|
14 | !! nemo_closefile: close remaining open files |
---|
15 | !! nemo_alloc : dynamical allocation |
---|
16 | !!---------------------------------------------------------------------- |
---|
17 | USE step_oce ! module used in the ocean time stepping module (step.F90) |
---|
18 | USE domain ! domain initialization (dom_init & dom_cfg routines) |
---|
19 | USE istate ! initial state setting (istate_init routine) |
---|
20 | USE phycst ! physical constant (par_cst routine) |
---|
21 | USE step ! NEMO time-stepping (stp routine) |
---|
22 | USE cpl_oasis3 ! OASIS3 coupling |
---|
23 | USE diaobs ! Observation diagnostics (dia_obs_init routine) |
---|
24 | #if defined key_nemocice_decomp |
---|
25 | USE ice_domain_size, only: nx_global, ny_global |
---|
26 | #endif |
---|
27 | ! ! Stand Alone Observation operator modules |
---|
28 | USE sao_data |
---|
29 | USE sao_intp |
---|
30 | ! |
---|
31 | USE lib_mpp ! distributed memory computing |
---|
32 | USE mppini ! shared/distributed memory setting (mpp_init routine) |
---|
33 | USE lbcnfd , ONLY : isendto, nsndto, nfsloop, nfeloop ! Setup of north fold exchanges |
---|
34 | USE lib_fortran ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined) |
---|
35 | #if defined key_iomput |
---|
36 | USE xios ! xIOserver |
---|
37 | #endif |
---|
38 | |
---|
39 | IMPLICIT NONE |
---|
40 | PRIVATE |
---|
41 | |
---|
42 | PUBLIC nemo_gcm ! called by model.F90 |
---|
43 | PUBLIC nemo_init ! needed by AGRIF |
---|
44 | PUBLIC nemo_alloc ! needed by TAM |
---|
45 | |
---|
46 | CHARACTER(lc) :: cform_aaa="( /, 'AAAAAAAA', / ) " ! flag for output listing |
---|
47 | |
---|
48 | !!---------------------------------------------------------------------- |
---|
49 | !! NEMO/OCE 4.0 , NEMO Consortium (2018) |
---|
50 | !! $Id$ |
---|
51 | !! Software governed by the CeCILL license (see ./LICENSE) |
---|
52 | !!---------------------------------------------------------------------- |
---|
53 | CONTAINS |
---|
54 | |
---|
55 | SUBROUTINE nemo_gcm |
---|
56 | !!---------------------------------------------------------------------- |
---|
57 | !! *** SUBROUTINE offline_obs_oper *** |
---|
58 | !! |
---|
59 | !! ** Purpose : To use NEMO components to interpolate model fields |
---|
60 | !! to observation space. |
---|
61 | !! |
---|
62 | !! ** Method : 1. Initialise NEMO |
---|
63 | !! 2. Initialise offline obs_oper |
---|
64 | !! 3. Cycle through match ups |
---|
65 | !! 4. Write results to file |
---|
66 | !!---------------------------------------------------------------------- |
---|
67 | ! |
---|
68 | CALL nemo_init ! Initialise NEMO |
---|
69 | ! |
---|
70 | CALL sao_data_init ! Initialise Stand Alone Observation operator data |
---|
71 | ! |
---|
72 | CALL dia_obs_init ! Initialise obs_operator |
---|
73 | ! |
---|
74 | CALL sao_interp ! Interpolate to observation space |
---|
75 | ! |
---|
76 | CALL dia_obs_wri ! Pipe to output files |
---|
77 | ! |
---|
78 | CALL dia_obs_dealloc ! Reset the obs_oper between |
---|
79 | ! |
---|
80 | IF(lk_mpp) CALL mppstop ! Safely stop MPI (end mpp communications) |
---|
81 | ! |
---|
82 | END SUBROUTINE nemo_gcm |
---|
83 | |
---|
84 | |
---|
85 | SUBROUTINE nemo_init |
---|
86 | !!---------------------------------------------------------------------- |
---|
87 | !! *** ROUTINE nemo_init *** |
---|
88 | !! |
---|
89 | !! ** Purpose : initialization of the NEMO GCM |
---|
90 | !!---------------------------------------------------------------------- |
---|
91 | INTEGER :: ios, ilocal_comm ! local integer |
---|
92 | ! |
---|
93 | NAMELIST/namctl/ ln_ctl , sn_cfctl, nn_print, nn_ictls, nn_ictle, & |
---|
94 | & nn_isplt , nn_jsplt, nn_jctls, nn_jctle, & |
---|
95 | & ln_timing, ln_diacfl |
---|
96 | NAMELIST/namcfg/ ln_read_cfg, cn_domcfg, ln_closea, ln_write_cfg, cn_domcfg_out, ln_use_jattr |
---|
97 | !!---------------------------------------------------------------------- |
---|
98 | ! |
---|
99 | cxios_context = 'nemo' |
---|
100 | ! |
---|
101 | ! !-------------------------------------------------! |
---|
102 | ! ! set communicator & select the local rank ! |
---|
103 | ! ! must be done as soon as possible to get narea ! |
---|
104 | ! !-------------------------------------------------! |
---|
105 | ! |
---|
106 | #if defined key_iomput |
---|
107 | IF( Agrif_Root() ) THEN |
---|
108 | IF( lk_oasis ) THEN |
---|
109 | CALL cpl_init( "oceanx", ilocal_comm ) ! nemo local communicator given by oasis |
---|
110 | CALL xios_initialize( "not used" , local_comm =ilocal_comm ) ! send nemo communicator to xios |
---|
111 | ELSE |
---|
112 | CALL xios_initialize( "for_xios_mpi_id", return_comm=ilocal_comm ) ! nemo local communicator given by xios |
---|
113 | ENDIF |
---|
114 | ENDIF |
---|
115 | CALL mpp_start( ilocal_comm ) |
---|
116 | #else |
---|
117 | IF( lk_oasis ) THEN |
---|
118 | IF( Agrif_Root() ) THEN |
---|
119 | CALL cpl_init( "oceanx", ilocal_comm ) ! nemo local communicator given by oasis |
---|
120 | ENDIF |
---|
121 | CALL mpp_start( ilocal_comm ) |
---|
122 | ELSE |
---|
123 | CALL mpp_start( ) |
---|
124 | ENDIF |
---|
125 | #endif |
---|
126 | ! |
---|
127 | narea = mpprank + 1 ! mpprank: the rank of proc (0 --> mppsize -1 ) |
---|
128 | lwm = (narea == 1) ! control of output namelists |
---|
129 | ! |
---|
130 | ! !---------------------------------------------------------------! |
---|
131 | ! ! Open output files, reference and configuration namelist files ! |
---|
132 | ! !---------------------------------------------------------------! |
---|
133 | ! |
---|
134 | ! open ocean.output as soon as possible to get all output prints (including errors messages) |
---|
135 | IF( lwm ) CALL ctl_opn( numout, 'ocean.output', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. ) |
---|
136 | ! open reference and configuration namelist files |
---|
137 | CALL ctl_opn( numnam_ref, 'namelist_ref', 'OLD', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. ) |
---|
138 | CALL ctl_opn( numnam_cfg, 'namelist_cfg', 'OLD', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. ) |
---|
139 | IF( lwm ) CALL ctl_opn( numond, 'output.namelist.dyn', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. ) |
---|
140 | ! open /dev/null file to be able to supress output write easily |
---|
141 | CALL ctl_opn( numnul, '/dev/null', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE. ) |
---|
142 | ! |
---|
143 | ! !--------------------! |
---|
144 | ! ! Open listing units ! -> need ln_ctl from namctl to define lwp |
---|
145 | ! !--------------------! |
---|
146 | ! |
---|
147 | REWIND( numnam_ref ) ! Namelist namctl in reference namelist |
---|
148 | READ ( numnam_ref, namctl, IOSTAT = ios, ERR = 901 ) |
---|
149 | 901 IF( ios /= 0 ) CALL ctl_nam ( ios , 'namctl in reference namelist' ) |
---|
150 | REWIND( numnam_cfg ) ! Namelist namctl in confguration namelist |
---|
151 | READ ( numnam_cfg, namctl, IOSTAT = ios, ERR = 902 ) |
---|
152 | 902 IF( ios > 0 ) CALL ctl_nam ( ios , 'namctl in configuration namelist' ) |
---|
153 | ! |
---|
154 | ! finalize the definition of namctl variables |
---|
155 | IF( sn_cfctl%l_config ) THEN |
---|
156 | ! Activate finer control of report outputs |
---|
157 | ! optionally switch off output from selected areas (note this only |
---|
158 | ! applies to output which does not involve global communications) |
---|
159 | IF( ( narea < sn_cfctl%procmin .OR. narea > sn_cfctl%procmax ) .OR. & |
---|
160 | & ( MOD( narea - sn_cfctl%procmin, sn_cfctl%procincr ) /= 0 ) ) & |
---|
161 | & CALL nemo_set_cfctl( sn_cfctl, .FALSE., .FALSE. ) |
---|
162 | ELSE |
---|
163 | ! Use ln_ctl to turn on or off all options. |
---|
164 | CALL nemo_set_cfctl( sn_cfctl, ln_ctl, .TRUE. ) |
---|
165 | ENDIF |
---|
166 | ! |
---|
167 | lwp = (narea == 1) .OR. ln_ctl .OR. sn_cfctl%l_oceout ! control of all listing output print |
---|
168 | ! |
---|
169 | IF(lwp) THEN ! open listing units |
---|
170 | ! |
---|
171 | IF( .NOT. lwm ) & ! alreay opened for narea == 1 |
---|
172 | & CALL ctl_opn( numout, 'ocean.output', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, -1, .FALSE., narea ) |
---|
173 | ! |
---|
174 | WRITE(numout,*) |
---|
175 | WRITE(numout,*) ' CNRS - NERC - Met OFFICE - MERCATOR-ocean - CMCC' |
---|
176 | WRITE(numout,*) ' NEMO team' |
---|
177 | WRITE(numout,*) ' Stand Alone Observation operator' |
---|
178 | WRITE(numout,*) ' NEMO version 4.0 (2019) ' |
---|
179 | WRITE(numout,*) |
---|
180 | WRITE(numout,*) " ._ ._ ._ ._ ._ " |
---|
181 | WRITE(numout,*) " _.-._)`\_.-._)`\_.-._)`\_.-._)`\_.-._)`\_ " |
---|
182 | WRITE(numout,*) |
---|
183 | WRITE(numout,*) " o _, _, " |
---|
184 | WRITE(numout,*) " o .' ( .-' / " |
---|
185 | WRITE(numout,*) " o _/..._'. .' / " |
---|
186 | WRITE(numout,*) " ( o .-'` ` '-./ _.' " |
---|
187 | WRITE(numout,*) " ) ( o) ;= <_ ( " |
---|
188 | WRITE(numout,*) " ( '-.,\\__ __.-;`\ '. ) " |
---|
189 | WRITE(numout,*) " ) ) \) |`\ \) '. \ ( ( " |
---|
190 | WRITE(numout,*) " ( ( \_/ '-._\ ) ) " |
---|
191 | WRITE(numout,*) " ) ) jgs ` ( ( " |
---|
192 | WRITE(numout,*) " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ " |
---|
193 | WRITE(numout,*) |
---|
194 | ! |
---|
195 | WRITE(numout,cform_aaa) ! Flag AAAAAAA |
---|
196 | ! |
---|
197 | ENDIF |
---|
198 | ! |
---|
199 | IF(lwm) WRITE( numond, namctl ) |
---|
200 | ! |
---|
201 | ! !------------------------------------! |
---|
202 | ! ! Set global domain size parameters ! |
---|
203 | ! !------------------------------------! |
---|
204 | ! |
---|
205 | REWIND( numnam_ref ) ! Namelist namcfg in reference namelist |
---|
206 | READ ( numnam_ref, namcfg, IOSTAT = ios, ERR = 903 ) |
---|
207 | 903 IF( ios /= 0 ) CALL ctl_nam ( ios , 'namcfg in reference namelist' ) |
---|
208 | REWIND( numnam_cfg ) ! Namelist namcfg in confguration namelist |
---|
209 | READ ( numnam_cfg, namcfg, IOSTAT = ios, ERR = 904 ) |
---|
210 | 904 IF( ios > 0 ) CALL ctl_nam ( ios , 'namcfg in configuration namelist' ) |
---|
211 | ! |
---|
212 | IF( ln_read_cfg ) THEN ! Read sizes in domain configuration file |
---|
213 | CALL domain_cfg ( cn_cfg, nn_cfg, jpiglo, jpjglo, jpkglo, jperio ) |
---|
214 | ELSE ! user-defined namelist |
---|
215 | CALL usr_def_nam( cn_cfg, nn_cfg, jpiglo, jpjglo, jpkglo, jperio ) |
---|
216 | ENDIF |
---|
217 | ! |
---|
218 | IF(lwm) WRITE( numond, namcfg ) |
---|
219 | ! |
---|
220 | ! !-----------------------------------------! |
---|
221 | ! ! mpp parameters and domain decomposition ! |
---|
222 | ! !-----------------------------------------! |
---|
223 | CALL mpp_init |
---|
224 | |
---|
225 | ! Now we know the dimensions of the grid and numout has been set: we can allocate arrays |
---|
226 | CALL nemo_alloc() |
---|
227 | |
---|
228 | ! !-------------------------------! |
---|
229 | ! ! NEMO general initialization ! |
---|
230 | ! !-------------------------------! |
---|
231 | |
---|
232 | CALL nemo_ctl ! Control prints |
---|
233 | ! |
---|
234 | ! ! General initialization |
---|
235 | IF( ln_timing ) CALL timing_init ! timing |
---|
236 | IF( ln_timing ) CALL timing_start( 'nemo_init') |
---|
237 | ! |
---|
238 | CALL phy_cst ! Physical constants |
---|
239 | CALL eos_init ! Equation of state |
---|
240 | CALL dom_init('SAO') ! Domain |
---|
241 | |
---|
242 | |
---|
243 | IF( ln_ctl .OR. sn_cfctl%l_mppout ) & |
---|
244 | & CALL prt_ctl_init ! Print control |
---|
245 | |
---|
246 | CALL istate_init ! ocean initial state (Dynamics and tracers) |
---|
247 | END SUBROUTINE nemo_init |
---|
248 | |
---|
249 | |
---|
250 | SUBROUTINE nemo_ctl |
---|
251 | !!---------------------------------------------------------------------- |
---|
252 | !! *** ROUTINE nemo_ctl *** |
---|
253 | !! |
---|
254 | !! ** Purpose : control print setting |
---|
255 | !! |
---|
256 | !! ** Method : - print namctl information and check some consistencies |
---|
257 | !!---------------------------------------------------------------------- |
---|
258 | ! |
---|
259 | IF(lwp) THEN ! control print |
---|
260 | WRITE(numout,*) |
---|
261 | WRITE(numout,*) 'nemo_ctl: Control prints' |
---|
262 | WRITE(numout,*) '~~~~~~~~' |
---|
263 | WRITE(numout,*) ' Namelist namctl' |
---|
264 | WRITE(numout,*) ' run control (for debugging) ln_ctl = ', ln_ctl |
---|
265 | WRITE(numout,*) ' finer control over o/p sn_cfctl%l_config = ', sn_cfctl%l_config |
---|
266 | WRITE(numout,*) ' sn_cfctl%l_runstat = ', sn_cfctl%l_runstat |
---|
267 | WRITE(numout,*) ' sn_cfctl%l_trcstat = ', sn_cfctl%l_trcstat |
---|
268 | WRITE(numout,*) ' sn_cfctl%l_oceout = ', sn_cfctl%l_oceout |
---|
269 | WRITE(numout,*) ' sn_cfctl%l_layout = ', sn_cfctl%l_layout |
---|
270 | WRITE(numout,*) ' sn_cfctl%l_mppout = ', sn_cfctl%l_mppout |
---|
271 | WRITE(numout,*) ' sn_cfctl%l_mpptop = ', sn_cfctl%l_mpptop |
---|
272 | WRITE(numout,*) ' sn_cfctl%procmin = ', sn_cfctl%procmin |
---|
273 | WRITE(numout,*) ' sn_cfctl%procmax = ', sn_cfctl%procmax |
---|
274 | WRITE(numout,*) ' sn_cfctl%procincr = ', sn_cfctl%procincr |
---|
275 | WRITE(numout,*) ' sn_cfctl%ptimincr = ', sn_cfctl%ptimincr |
---|
276 | WRITE(numout,*) ' level of print nn_print = ', nn_print |
---|
277 | WRITE(numout,*) ' Start i indice for SUM control nn_ictls = ', nn_ictls |
---|
278 | WRITE(numout,*) ' End i indice for SUM control nn_ictle = ', nn_ictle |
---|
279 | WRITE(numout,*) ' Start j indice for SUM control nn_jctls = ', nn_jctls |
---|
280 | WRITE(numout,*) ' End j indice for SUM control nn_jctle = ', nn_jctle |
---|
281 | WRITE(numout,*) ' number of proc. following i nn_isplt = ', nn_isplt |
---|
282 | WRITE(numout,*) ' number of proc. following j nn_jsplt = ', nn_jsplt |
---|
283 | WRITE(numout,*) ' timing by routine ln_timing = ', ln_timing |
---|
284 | WRITE(numout,*) ' CFL diagnostics ln_diacfl = ', ln_diacfl |
---|
285 | ENDIF |
---|
286 | ! |
---|
287 | nprint = nn_print ! convert DOCTOR namelist names into OLD names |
---|
288 | nictls = nn_ictls |
---|
289 | nictle = nn_ictle |
---|
290 | njctls = nn_jctls |
---|
291 | njctle = nn_jctle |
---|
292 | isplt = nn_isplt |
---|
293 | jsplt = nn_jsplt |
---|
294 | |
---|
295 | IF(lwp) THEN ! control print |
---|
296 | WRITE(numout,*) |
---|
297 | WRITE(numout,*) ' Namelist namcfg' |
---|
298 | WRITE(numout,*) ' read domain configuration file ln_read_cfg = ', ln_read_cfg |
---|
299 | WRITE(numout,*) ' filename to be read cn_domcfg = ', TRIM(cn_domcfg) |
---|
300 | WRITE(numout,*) ' keep closed seas in the domain (if exist) ln_closea = ', ln_closea |
---|
301 | WRITE(numout,*) ' create a configuration definition file ln_write_cfg = ', ln_write_cfg |
---|
302 | WRITE(numout,*) ' filename to be written cn_domcfg_out = ', TRIM(cn_domcfg_out) |
---|
303 | WRITE(numout,*) ' use file attribute if exists as i/p j-start ln_use_jattr = ', ln_use_jattr |
---|
304 | ENDIF |
---|
305 | IF( .NOT.ln_read_cfg ) ln_closea = .false. ! dealing possible only with a domcfg file |
---|
306 | ! |
---|
307 | ! ! Parameter control |
---|
308 | ! |
---|
309 | IF( ln_ctl ) THEN ! sub-domain area indices for the control prints |
---|
310 | IF( lk_mpp .AND. jpnij > 1 ) THEN |
---|
311 | isplt = jpni ; jsplt = jpnj ; ijsplt = jpni*jpnj ! the domain is forced to the real split domain |
---|
312 | ELSE |
---|
313 | IF( isplt == 1 .AND. jsplt == 1 ) THEN |
---|
314 | CALL ctl_warn( ' - isplt & jsplt are equal to 1', & |
---|
315 | & ' - the print control will be done over the whole domain' ) |
---|
316 | ENDIF |
---|
317 | ijsplt = isplt * jsplt ! total number of processors ijsplt |
---|
318 | ENDIF |
---|
319 | IF(lwp) WRITE(numout,*)' - The total number of processors over which the' |
---|
320 | IF(lwp) WRITE(numout,*)' print control will be done is ijsplt : ', ijsplt |
---|
321 | ! |
---|
322 | ! ! indices used for the SUM control |
---|
323 | IF( nictls+nictle+njctls+njctle == 0 ) THEN ! print control done over the default area |
---|
324 | lsp_area = .FALSE. |
---|
325 | ELSE ! print control done over a specific area |
---|
326 | lsp_area = .TRUE. |
---|
327 | IF( nictls < 1 .OR. nictls > jpiglo ) THEN |
---|
328 | CALL ctl_warn( ' - nictls must be 1<=nictls>=jpiglo, it is forced to 1' ) |
---|
329 | nictls = 1 |
---|
330 | ENDIF |
---|
331 | IF( nictle < 1 .OR. nictle > jpiglo ) THEN |
---|
332 | CALL ctl_warn( ' - nictle must be 1<=nictle>=jpiglo, it is forced to jpiglo' ) |
---|
333 | nictle = jpiglo |
---|
334 | ENDIF |
---|
335 | IF( njctls < 1 .OR. njctls > jpjglo ) THEN |
---|
336 | CALL ctl_warn( ' - njctls must be 1<=njctls>=jpjglo, it is forced to 1' ) |
---|
337 | njctls = 1 |
---|
338 | ENDIF |
---|
339 | IF( njctle < 1 .OR. njctle > jpjglo ) THEN |
---|
340 | CALL ctl_warn( ' - njctle must be 1<=njctle>=jpjglo, it is forced to jpjglo' ) |
---|
341 | njctle = jpjglo |
---|
342 | ENDIF |
---|
343 | ENDIF |
---|
344 | ENDIF |
---|
345 | ! |
---|
346 | IF( 1._wp /= SIGN(1._wp,-0._wp) ) CALL ctl_stop( 'nemo_ctl: The intrinsec SIGN function follows f2003 standard.', & |
---|
347 | & 'Compile with key_nosignedzero enabled:', & |
---|
348 | & '--> add -Dkey_nosignedzero to the definition of %CPP in your arch file' ) |
---|
349 | ! |
---|
350 | END SUBROUTINE nemo_ctl |
---|
351 | |
---|
352 | |
---|
353 | SUBROUTINE nemo_closefile |
---|
354 | !!---------------------------------------------------------------------- |
---|
355 | !! *** ROUTINE nemo_closefile *** |
---|
356 | !! |
---|
357 | !! ** Purpose : Close the files |
---|
358 | !!---------------------------------------------------------------------- |
---|
359 | ! |
---|
360 | IF( lk_mpp ) CALL mppsync |
---|
361 | ! |
---|
362 | CALL iom_close ! close all input/output files managed by iom_* |
---|
363 | ! |
---|
364 | IF( numstp /= -1 ) CLOSE( numstp ) ! time-step file |
---|
365 | IF( numrun /= -1 ) CLOSE( numrun ) ! run statistics file |
---|
366 | IF( numnam_ref /= -1 ) CLOSE( numnam_ref ) ! oce reference namelist |
---|
367 | IF( numnam_cfg /= -1 ) CLOSE( numnam_cfg ) ! oce configuration namelist |
---|
368 | IF( lwm.AND.numond /= -1 ) CLOSE( numond ) ! oce output namelist |
---|
369 | IF( numnam_ice_ref /= -1 ) CLOSE( numnam_ice_ref ) ! ice reference namelist |
---|
370 | IF( numnam_ice_cfg /= -1 ) CLOSE( numnam_ice_cfg ) ! ice configuration namelist |
---|
371 | IF( lwm.AND.numoni /= -1 ) CLOSE( numoni ) ! ice output namelist |
---|
372 | IF( numevo_ice /= -1 ) CLOSE( numevo_ice ) ! ice variables (temp. evolution) |
---|
373 | IF( numout /= 6 ) CLOSE( numout ) ! standard model output file |
---|
374 | IF( numdct_vol /= -1 ) CLOSE( numdct_vol ) ! volume transports |
---|
375 | IF( numdct_heat /= -1 ) CLOSE( numdct_heat ) ! heat transports |
---|
376 | IF( numdct_salt /= -1 ) CLOSE( numdct_salt ) ! salt transports |
---|
377 | ! |
---|
378 | numout = 6 ! redefine numout in case it is used after this point... |
---|
379 | ! |
---|
380 | END SUBROUTINE nemo_closefile |
---|
381 | |
---|
382 | |
---|
383 | SUBROUTINE nemo_alloc |
---|
384 | !!---------------------------------------------------------------------- |
---|
385 | !! *** ROUTINE nemo_alloc *** |
---|
386 | !! |
---|
387 | !! ** Purpose : Allocate all the dynamic arrays of the OPA modules |
---|
388 | !! |
---|
389 | !! ** Method : |
---|
390 | !!---------------------------------------------------------------------- |
---|
391 | USE diawri , ONLY: dia_wri_alloc |
---|
392 | USE dom_oce , ONLY: dom_oce_alloc |
---|
393 | ! |
---|
394 | INTEGER :: ierr |
---|
395 | !!---------------------------------------------------------------------- |
---|
396 | ! |
---|
397 | ierr = oce_alloc () ! ocean |
---|
398 | ierr = ierr + dia_wri_alloc () |
---|
399 | ierr = ierr + dom_oce_alloc () ! ocean domain |
---|
400 | ! |
---|
401 | CALL mpp_sum( 'nemogcm', ierr ) |
---|
402 | IF( ierr /= 0 ) CALL ctl_stop( 'STOP', 'nemo_alloc : unable to allocate standard ocean arrays' ) |
---|
403 | ! |
---|
404 | END SUBROUTINE nemo_alloc |
---|
405 | |
---|
406 | SUBROUTINE nemo_set_cfctl(sn_cfctl, setto, for_all ) |
---|
407 | !!---------------------------------------------------------------------- |
---|
408 | !! *** ROUTINE nemo_set_cfctl *** |
---|
409 | !! |
---|
410 | !! ** Purpose : Set elements of the output control structure to setto. |
---|
411 | !! for_all should be .false. unless all areas are to be |
---|
412 | !! treated identically. |
---|
413 | !! |
---|
414 | !! ** Method : Note this routine can be used to switch on/off some |
---|
415 | !! types of output for selected areas but any output types |
---|
416 | !! that involve global communications (e.g. mpp_max, glob_sum) |
---|
417 | !! should be protected from selective switching by the |
---|
418 | !! for_all argument |
---|
419 | !!---------------------------------------------------------------------- |
---|
420 | LOGICAL :: setto, for_all |
---|
421 | TYPE(sn_ctl) :: sn_cfctl |
---|
422 | !!---------------------------------------------------------------------- |
---|
423 | IF( for_all ) THEN |
---|
424 | sn_cfctl%l_runstat = setto |
---|
425 | sn_cfctl%l_trcstat = setto |
---|
426 | ENDIF |
---|
427 | sn_cfctl%l_oceout = setto |
---|
428 | sn_cfctl%l_layout = setto |
---|
429 | sn_cfctl%l_mppout = setto |
---|
430 | sn_cfctl%l_mpptop = setto |
---|
431 | END SUBROUTINE nemo_set_cfctl |
---|
432 | |
---|
433 | !!====================================================================== |
---|
434 | END MODULE nemogcm |
---|
435 | |
---|