source: palm/trunk/SOURCE/header.f90 @ 108

Last change on this file since 108 was 108, checked in by letzel, 17 years ago
  • Improved coupler: evaporation - salinity-flux coupling for humidity = .T.,

avoid MPI hangs when coupled runs terminate, add DOC/app/chapter_3.8;

  • Optional calculation of km and kh from initial TKE e_init;
  • Default initialization of km,kh = 0.00001 for ocean = .T.;
  • Allow data_output_pr= q, wq, w"q", w*q* for humidity = .T.;
  • Bugfix: Rayleigh damping for ocean fixed.
  • Property svn:keywords set to Id
File size: 58.8 KB
Line 
1 SUBROUTINE header
2
3!------------------------------------------------------------------------------!
4! Actual revisions:
5! -----------------
6! Output of informations for coupled model runs (boundary conditions etc.)
7! + output of momentumfluxes at the top boundary
8! Rayleigh damping for ocean, e_init
9!
10! Former revisions:
11! -----------------
12! $Id: header.f90 108 2007-08-24 15:10:38Z letzel $
13!
14! 97 2007-06-21 08:23:15Z raasch
15! Adjustments for the ocean version.
16! use_pt_reference renamed use_reference
17!
18! 87 2007-05-22 15:46:47Z raasch
19! Bugfix: output of use_upstream_for_tke
20!
21! 82 2007-04-16 15:40:52Z raasch
22! Preprocessor strings for different linux clusters changed to "lc",
23! routine local_flush is used for buffer flushing
24!
25! 76 2007-03-29 00:58:32Z raasch
26! Output of netcdf_64bit_3d, particles-package is now part of the default code,
27! output of the loop optimization method, moisture renamed humidity,
28! output of subversion revision number
29!
30! 19 2007-02-23 04:53:48Z raasch
31! Output of scalar flux applied at top boundary
32!
33! RCS Log replace by Id keyword, revision history cleaned up
34!
35! Revision 1.63  2006/08/22 13:53:13  raasch
36! Output of dz_max
37!
38! Revision 1.1  1997/08/11 06:17:20  raasch
39! Initial revision
40!
41!
42! Description:
43! ------------
44! Writing a header with all important informations about the actual run.
45! This subroutine is called three times, two times at the beginning
46! (writing information on files RUN_CONTROL and HEADER) and one time at the
47! end of the run, then writing additional information about CPU-usage on file
48! header.
49!------------------------------------------------------------------------------!
50
51    USE arrays_3d
52    USE control_parameters
53    USE cloud_parameters
54    USE cpulog
55    USE dvrp_variables
56    USE grid_variables
57    USE indices
58    USE model_1d
59    USE particle_attributes
60    USE pegrid
61    USE spectrum
62
63    IMPLICIT NONE
64
65    CHARACTER (LEN=1)  ::  prec
66    CHARACTER (LEN=2)  ::  do2d_mode
67    CHARACTER (LEN=5)  ::  section_chr
68    CHARACTER (LEN=9)  ::  time_to_string
69    CHARACTER (LEN=10) ::  coor_chr, host_chr
70    CHARACTER (LEN=16) ::  begin_chr
71    CHARACTER (LEN=21) ::  ver_rev
72    CHARACTER (LEN=40) ::  output_format
73    CHARACTER (LEN=70) ::  char1, char2, coordinates, gradients, dopr_chr, &
74                           do2d_xy, do2d_xz, do2d_yz, do3d_chr, &
75                           run_classification, slices, temperatures, &
76                           ugcomponent, vgcomponent
77    CHARACTER (LEN=85) ::  roben, runten
78
79    INTEGER ::  av, bh, blx, bly, bxl, bxr, byn, bys, i, ihost, io, j, l, ll
80    REAL    ::  cpuseconds_per_simulated_second
81
82!
83!-- Open the output file. At the end of the simulation, output is directed
84!-- to unit 19.
85    IF ( ( runnr == 0 .OR. force_print_header )  .AND. &
86         .NOT. simulated_time_at_begin /= simulated_time )  THEN
87       io = 15   !  header output on file RUN_CONTROL
88    ELSE
89       io = 19   !  header output on file HEADER
90    ENDIF
91    CALL check_open( io )
92
93!
94!-- At the end of the run, output file (HEADER) will be rewritten with
95!-- new informations
96    IF ( io == 19 .AND. simulated_time_at_begin /= simulated_time ) REWIND( 19 )
97
98!
99!-- Determine kind of model run
100    IF ( TRIM( initializing_actions ) == 'read_restart_data' )  THEN
101       run_classification = '3D - restart run'
102    ELSE
103       IF ( INDEX( initializing_actions, 'set_constant_profiles' ) /= 0 )  THEN
104          run_classification = '3D - run without 1D - prerun'
105       ELSEIF ( INDEX(initializing_actions, 'set_1d-model_profiles') /= 0 ) THEN
106          run_classification = '3D - run with 1D - prerun'
107       ELSE
108          PRINT*,'+++ header:  unknown action(s): ',initializing_actions
109       ENDIF
110    ENDIF
111    IF ( ocean )  THEN
112       run_classification = 'ocean - ' // run_classification
113    ELSE
114       run_classification = 'atmosphere - ' // run_classification
115    ENDIF
116
117!
118!-- Run-identification, date, time, host
119    host_chr = host(1:10)
120    ver_rev = TRIM( version ) // '  ' // TRIM( revision )
121    WRITE ( io, 100 )  ver_rev, TRIM( run_classification )
122    IF ( coupling_mode /= 'uncoupled' )  WRITE ( io, 101 )  coupling_mode
123    WRITE ( io, 102 )  run_date, run_identifier, run_time, runnr, &
124                       ADJUSTR( host_chr )
125#if defined( __parallel )
126    IF ( npex == -1  .AND.  pdims(2) /= 1 )  THEN
127       char1 = 'calculated'
128    ELSEIF ( ( host(1:3) == 'ibm'  .OR.  host(1:3) == 'nec'  .OR.  &
129               host(1:2) == 'lc' )  .AND.                          &
130             npex == -1  .AND.  pdims(2) == 1 )  THEN
131       char1 = 'forced'
132    ELSE
133       char1 = 'predefined'
134    ENDIF
135    IF ( threads_per_task == 1 )  THEN
136       WRITE ( io, 103 )  numprocs, pdims(1), pdims(2), TRIM( char1 )
137    ELSE
138       WRITE ( io, 104 )  numprocs*threads_per_task, numprocs, &
139                          threads_per_task, pdims(1), pdims(2), TRIM( char1 )
140    ENDIF
141    IF ( ( host(1:3) == 'ibm'  .OR.  host(1:3) == 'nec'  .OR.    &
142           host(1:2) == 'lc'   .OR.  host(1:3) == 'dec' )  .AND. &
143         npex == -1  .AND.  pdims(2) == 1 )                      &
144    THEN
145       WRITE ( io, 106 )
146    ELSEIF ( pdims(2) == 1 )  THEN
147       WRITE ( io, 107 )  'x'
148    ELSEIF ( pdims(1) == 1 )  THEN
149       WRITE ( io, 107 )  'y'
150    ENDIF
151    IF ( use_seperate_pe_for_dvrp_output )  WRITE ( io, 105 )
152#endif
153    WRITE ( io, 99 )
154
155!
156!-- Numerical schemes
157    WRITE ( io, 110 )
158    IF ( psolver(1:7) == 'poisfft' )  THEN
159       WRITE ( io, 111 )  TRIM( fft_method )
160       IF ( psolver == 'poisfft_hybrid' )  WRITE ( io, 138 )
161    ELSEIF ( psolver == 'sor' )  THEN
162       WRITE ( io, 112 )  nsor_ini, nsor, omega_sor
163    ELSEIF ( psolver == 'multigrid' )  THEN
164       WRITE ( io, 135 )  cycle_mg, maximum_grid_level, ngsrb
165       IF ( mg_cycles == -1 )  THEN
166          WRITE ( io, 140 )  residual_limit
167       ELSE
168          WRITE ( io, 141 )  mg_cycles
169       ENDIF
170       IF ( mg_switch_to_pe0_level == 0 )  THEN
171          WRITE ( io, 136 )  nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, &
172                             nzt_mg(1)
173       ELSE
174          WRITE ( io, 137 )  mg_switch_to_pe0_level,            &
175                             mg_loc_ind(2,0)-mg_loc_ind(1,0)+1, &
176                             mg_loc_ind(4,0)-mg_loc_ind(3,0)+1, &
177                             nzt_mg(mg_switch_to_pe0_level),    &
178                             nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, &
179                             nzt_mg(1)
180       ENDIF
181    ENDIF
182    IF ( call_psolver_at_all_substeps  .AND. timestep_scheme(1:5) == 'runge' ) &
183    THEN
184       WRITE ( io, 142 )
185    ENDIF
186
187    IF ( momentum_advec == 'pw-scheme' )  THEN
188       WRITE ( io, 113 )
189    ELSE
190       WRITE ( io, 114 )
191       IF ( cut_spline_overshoot )  WRITE ( io, 124 )
192       IF ( overshoot_limit_u /= 0.0  .OR.  overshoot_limit_v /= 0.0  .OR. &
193            overshoot_limit_w /= 0.0 )  THEN
194          WRITE ( io, 127 )  overshoot_limit_u, overshoot_limit_v, &
195                             overshoot_limit_w
196       ENDIF
197       IF ( ups_limit_u /= 0.0  .OR.  ups_limit_v /= 0.0  .OR. &
198            ups_limit_w /= 0.0 )                               &
199       THEN
200          WRITE ( io, 125 )  ups_limit_u, ups_limit_v, ups_limit_w
201       ENDIF
202       IF ( long_filter_factor /= 0.0 )  WRITE ( io, 115 )  long_filter_factor
203    ENDIF
204    IF ( scalar_advec == 'pw-scheme' )  THEN
205       WRITE ( io, 116 )
206    ELSEIF ( scalar_advec == 'ups-scheme' )  THEN
207       WRITE ( io, 117 )
208       IF ( cut_spline_overshoot )  WRITE ( io, 124 )
209       IF ( overshoot_limit_e /= 0.0  .OR.  overshoot_limit_pt /= 0.0 )  THEN
210          WRITE ( io, 128 )  overshoot_limit_e, overshoot_limit_pt
211       ENDIF
212       IF ( ups_limit_e /= 0.0  .OR.  ups_limit_pt /= 0.0 )  THEN
213          WRITE ( io, 126 )  ups_limit_e, ups_limit_pt
214       ENDIF
215    ELSE
216       WRITE ( io, 118 )
217    ENDIF
218
219    WRITE ( io, 139 )  TRIM( loop_optimization )
220
221    IF ( galilei_transformation )  THEN
222       IF ( use_ug_for_galilei_tr )  THEN
223          char1 = 'geostrophic wind'
224       ELSE
225          char1 = 'mean wind in model domain'
226       ENDIF
227       IF ( simulated_time_at_begin == simulated_time )  THEN
228          char2 = 'at the start of the run'
229       ELSE
230          char2 = 'at the end of the run'
231       ENDIF
232       WRITE ( io, 119 )  TRIM( char1 ), TRIM( char2 ), &
233                          advected_distance_x/1000.0, advected_distance_y/1000.0
234    ENDIF
235    IF ( timestep_scheme == 'leapfrog' )  THEN
236       WRITE ( io, 120 )
237    ELSEIF ( timestep_scheme == 'leapfrog+euler' )  THEN
238       WRITE ( io, 121 )
239    ELSE
240       WRITE ( io, 122 )  timestep_scheme
241    ENDIF
242    IF ( use_upstream_for_tke )  WRITE ( io, 143 )
243    IF ( rayleigh_damping_factor /= 0.0 )  THEN
244       IF ( .NOT. ocean )  THEN
245          WRITE ( io, 123 )  'above', rayleigh_damping_height, &
246               rayleigh_damping_factor
247       ELSE
248          WRITE ( io, 123 )  'below', rayleigh_damping_height, &
249               rayleigh_damping_factor
250       ENDIF
251    ENDIF
252    IF ( humidity )  THEN
253       IF ( .NOT. cloud_physics )  THEN
254          WRITE ( io, 129 )
255       ELSE
256          WRITE ( io, 130 )
257          WRITE ( io, 131 )
258          IF ( radiation )      WRITE ( io, 132 )
259          IF ( precipitation )  WRITE ( io, 133 )
260       ENDIF
261    ENDIF
262    IF ( passive_scalar )  WRITE ( io, 134 )
263    IF ( conserve_volume_flow )  WRITE ( io, 150 )
264    WRITE ( io, 99 )
265
266!
267!-- Runtime and timestep informations
268    WRITE ( io, 200 )
269    IF ( .NOT. dt_fixed )  THEN
270       WRITE ( io, 201 )  dt_max, cfl_factor
271    ELSE
272       WRITE ( io, 202 )  dt
273    ENDIF
274    WRITE ( io, 203 )  simulated_time_at_begin, end_time
275
276    IF ( time_restart /= 9999999.9  .AND. &
277         simulated_time_at_begin == simulated_time )  THEN
278       IF ( dt_restart == 9999999.9 )  THEN
279          WRITE ( io, 204 )  ' Restart at:       ',time_restart
280       ELSE
281          WRITE ( io, 205 )  ' Restart at:       ',time_restart, dt_restart
282       ENDIF
283    ENDIF
284
285    IF ( simulated_time_at_begin /= simulated_time )  THEN
286       i = MAX ( log_point_s(10)%counts, 1 )
287       IF ( ( simulated_time - simulated_time_at_begin ) == 0.0 )  THEN
288          cpuseconds_per_simulated_second = 0.0
289       ELSE
290          cpuseconds_per_simulated_second = log_point_s(10)%sum / &
291                                            ( simulated_time -    &
292                                              simulated_time_at_begin )
293       ENDIF
294       WRITE ( io, 206 )  simulated_time, log_point_s(10)%sum, &
295                          log_point_s(10)%sum / REAL( i ),     &
296                          cpuseconds_per_simulated_second
297       IF ( time_restart /= 9999999.9  .AND.  time_restart < end_time )  THEN
298          IF ( dt_restart == 9999999.9 )  THEN
299             WRITE ( io, 204 )  ' Next restart at:  ',time_restart
300          ELSE
301             WRITE ( io, 205 )  ' Next restart at:  ',time_restart, dt_restart
302          ENDIF
303       ENDIF
304    ENDIF
305
306!
307!-- Computational grid
308    IF ( .NOT. ocean )  THEN
309       WRITE ( io, 250 )  dx, dy, dz, (nx+1)*dx, (ny+1)*dy, zu(nzt+1)
310       IF ( dz_stretch_level_index < nzt+1 )  THEN
311          WRITE ( io, 252 )  dz_stretch_level, dz_stretch_level_index, &
312                             dz_stretch_factor, dz_max
313       ENDIF
314    ELSE
315       WRITE ( io, 250 )  dx, dy, dz, (nx+1)*dx, (ny+1)*dy, zu(0)
316       IF ( dz_stretch_level_index > 0 )  THEN
317          WRITE ( io, 252 )  dz_stretch_level, dz_stretch_level_index, &
318                             dz_stretch_factor, dz_max
319       ENDIF
320    ENDIF
321    WRITE ( io, 254 )  nx, ny, nzt+1, MIN( nnx, nx+1 ), MIN( nny, ny+1 ), &
322                       MIN( nnz+2, nzt+2 )
323    IF ( numprocs > 1 )  THEN
324       IF ( nxa == nx  .AND.  nya == ny  .AND.  nza == nz )  THEN
325          WRITE ( io, 255 )
326       ELSE
327          WRITE ( io, 256 )  nnx-(nxa-nx), nny-(nya-ny), nzt+2
328       ENDIF
329    ENDIF
330    IF ( sloping_surface )  WRITE ( io, 260 )  alpha_surface
331
332!
333!-- Topography
334    WRITE ( io, 270 )  topography
335    SELECT CASE ( TRIM( topography ) )
336
337       CASE ( 'flat' )
338          ! no actions necessary
339
340       CASE ( 'single_building' )
341          blx = INT( building_length_x / dx )
342          bly = INT( building_length_y / dy )
343          bh  = INT( building_height / dz )
344
345          IF ( building_wall_left == 9999999.9 )  THEN
346             building_wall_left = ( nx + 1 - blx ) / 2 * dx
347          ENDIF
348          bxl = INT ( building_wall_left / dx + 0.5 )
349          bxr = bxl + blx
350
351          IF ( building_wall_south == 9999999.9 )  THEN
352             building_wall_south = ( ny + 1 - bly ) / 2 * dy
353          ENDIF
354          bys = INT ( building_wall_south / dy + 0.5 )
355          byn = bys + bly
356
357          WRITE ( io, 271 )  building_length_x, building_length_y, &
358                             building_height, bxl, bxr, bys, byn
359
360    END SELECT
361
362!
363!-- Boundary conditions
364    IF ( ibc_p_b == 0 )  THEN
365       runten = 'p(0)     = 0      |'
366    ELSEIF ( ibc_p_b == 1 )  THEN
367       runten = 'p(0)     = p(1)   |'
368    ELSE
369       runten = 'p(0)     = p(1) +R|'
370    ENDIF
371    IF ( ibc_p_t == 0 )  THEN
372       roben  = 'p(nzt+1) = 0      |'
373    ELSE
374       roben  = 'p(nzt+1) = p(nzt) |'
375    ENDIF
376
377    IF ( ibc_uv_b == 0 )  THEN
378       runten = TRIM( runten ) // ' uv(0)     = -uv(1)                |'
379    ELSE
380       runten = TRIM( runten ) // ' uv(0)     = uv(1)                 |'
381    ENDIF
382    IF ( ibc_uv_t == 0 )  THEN
383       roben  = TRIM( roben  ) // ' uv(nzt+1) = ug(nzt+1), vg(nzt+1)  |'
384    ELSE
385       roben  = TRIM( roben  ) // ' uv(nzt+1) = uv(nzt)               |'
386    ENDIF
387
388    IF ( ibc_pt_b == 0 )  THEN
389       runten = TRIM( runten ) // ' pt(0)   = pt_surface'
390    ELSEIF ( ibc_pt_b == 1 )  THEN
391       runten = TRIM( runten ) // ' pt(0)   = pt(1)'
392    ELSEIF ( ibc_pt_b == 2 )  THEN
393       runten = TRIM( runten ) // ' pt(0) = from coupled model'
394    ENDIF
395    IF ( ibc_pt_t == 0 )  THEN
396       roben  = TRIM( roben  ) // ' pt(nzt+1) = pt_top'
397    ELSEIF( ibc_pt_t == 1 )  THEN
398       roben  = TRIM( roben  ) // ' pt(nzt+1) = pt(nzt)'
399    ELSEIF( ibc_pt_t == 2 )  THEN
400       roben  = TRIM( roben  ) // ' pt(nzt+1) = pt(nzt) + dpt/dz_ini'
401    ENDIF
402
403    WRITE ( io, 300 )  runten, roben
404
405    IF ( .NOT. constant_diffusion )  THEN
406       IF ( ibc_e_b == 1 )  THEN
407          runten = 'e(0)     = e(1)'
408       ELSE
409          runten = 'e(0)     = e(1) = (u*/0.1)**2'
410       ENDIF
411       roben = 'e(nzt+1) = e(nzt) = e(nzt-1)'
412
413       WRITE ( io, 301 )  'e', runten, roben       
414
415    ENDIF
416
417    IF ( ocean )  THEN
418       runten = 'sa(0)    = sa(1)'
419       IF ( ibc_sa_t == 0 )  THEN
420          roben =  'sa(nzt+1) = sa_surface'
421       ELSE
422          roben =  'sa(nzt+1) = sa(nzt)'
423       ENDIF
424       WRITE ( io, 301 ) 'sa', runten, roben
425    ENDIF
426
427    IF ( humidity )  THEN
428       IF ( ibc_q_b == 0 )  THEN
429          runten = 'q(0)     = q_surface'
430       ELSE
431          runten = 'q(0)     = q(1)'
432       ENDIF
433       IF ( ibc_q_t == 0 )  THEN
434          roben =  'q(nzt)   = q_top'
435       ELSE
436          roben =  'q(nzt)   = q(nzt-1) + dq/dz'
437       ENDIF
438       WRITE ( io, 301 ) 'q', runten, roben
439    ENDIF
440
441    IF ( passive_scalar )  THEN
442       IF ( ibc_q_b == 0 )  THEN
443          runten = 's(0)     = s_surface'
444       ELSE
445          runten = 's(0)     = s(1)'
446       ENDIF
447       IF ( ibc_q_t == 0 )  THEN
448          roben =  's(nzt)   = s_top'
449       ELSE
450          roben =  's(nzt)   = s(nzt-1) + ds/dz'
451       ENDIF
452       WRITE ( io, 301 ) 's', runten, roben
453    ENDIF
454
455    IF ( use_surface_fluxes )  THEN
456       WRITE ( io, 303 )
457       IF ( constant_heatflux )  THEN
458          WRITE ( io, 306 )  surface_heatflux
459          IF ( random_heatflux )  WRITE ( io, 307 )
460       ENDIF
461       IF ( humidity  .AND.  constant_waterflux )  THEN
462          WRITE ( io, 311 ) surface_waterflux
463       ENDIF
464       IF ( passive_scalar  .AND.  constant_waterflux )  THEN
465          WRITE ( io, 313 ) surface_waterflux
466       ENDIF
467    ENDIF
468
469    IF ( use_top_fluxes )  THEN
470       WRITE ( io, 304 )
471       IF ( coupling_mode == 'uncoupled' )  THEN
472          WRITE ( io, 319 )  top_momentumflux_u, top_momentumflux_v
473          IF ( constant_top_heatflux )  THEN
474             WRITE ( io, 306 )  top_heatflux
475          ENDIF
476       ELSEIF ( coupling_mode == 'ocean_to_atmosphere' )  THEN
477          WRITE ( io, 316 )
478       ENDIF
479       IF ( ocean  .AND.  constant_top_salinityflux )  THEN
480          WRITE ( io, 309 )  top_salinityflux
481       ENDIF
482       IF ( humidity  .OR.  passive_scalar )  THEN
483          WRITE ( io, 315 )
484       ENDIF
485    ENDIF
486
487    IF ( prandtl_layer )  THEN
488       WRITE ( io, 305 )  0.5 * (zu(1)-zu(0)), roughness_length, kappa, &
489                          rif_min, rif_max
490       IF ( .NOT. constant_heatflux )  WRITE ( io, 308 )
491       IF ( humidity  .AND.  .NOT. constant_waterflux )  THEN
492          WRITE ( io, 312 )
493       ENDIF
494       IF ( passive_scalar  .AND.  .NOT. constant_waterflux )  THEN
495          WRITE ( io, 314 )
496       ENDIF
497    ELSE
498       IF ( INDEX(initializing_actions, 'set_1d-model_profiles') /= 0 )  THEN
499          WRITE ( io, 310 )  rif_min, rif_max
500       ENDIF
501    ENDIF
502
503    WRITE ( io, 317 )  bc_lr, bc_ns
504    IF ( bc_lr /= 'cyclic'  .OR.  bc_ns /= 'cyclic' )  THEN
505       WRITE ( io, 318 )  outflow_damping_width, km_damp_max
506    ENDIF
507
508!
509!-- Listing of 1D-profiles
510    WRITE ( io, 320 )  dt_dopr_listing
511    IF ( averaging_interval_pr /= 0.0 )  THEN
512       WRITE ( io, 321 )  averaging_interval_pr, dt_averaging_input_pr
513    ENDIF
514
515!
516!-- DATA output
517    WRITE ( io, 330 )
518    IF ( averaging_interval_pr /= 0.0 )  THEN
519       WRITE ( io, 321 )  averaging_interval_pr, dt_averaging_input_pr
520    ENDIF
521
522!
523!-- 1D-profiles
524    dopr_chr = 'Profile:'
525    IF ( dopr_n /= 0 )  THEN
526       WRITE ( io, 331 )
527
528       output_format = ''
529       IF ( netcdf_output )  THEN
530          IF ( netcdf_64bit )  THEN
531             output_format = 'netcdf (64 bit offset)'
532          ELSE
533             output_format = 'netcdf'
534          ENDIF
535       ENDIF
536       IF ( profil_output )  THEN
537          IF ( netcdf_output )  THEN
538             output_format = TRIM( output_format ) // ' and profil'
539          ELSE
540             output_format = 'profil'
541          ENDIF
542       ENDIF
543       WRITE ( io, 345 )  output_format
544
545       DO  i = 1, dopr_n
546          dopr_chr = TRIM( dopr_chr ) // ' ' // TRIM( data_output_pr(i) ) // ','
547          IF ( LEN_TRIM( dopr_chr ) >= 60 )  THEN
548             WRITE ( io, 332 )  dopr_chr
549             dopr_chr = '       :'
550          ENDIF
551       ENDDO
552
553       IF ( dopr_chr /= '' )  THEN
554          WRITE ( io, 332 )  dopr_chr
555       ENDIF
556       WRITE ( io, 333 )  dt_dopr, averaging_interval_pr, dt_averaging_input_pr
557       IF ( skip_time_dopr /= 0.0 )  WRITE ( io, 339 )  skip_time_dopr
558    ENDIF
559
560!
561!-- 2D-arrays
562    DO  av = 0, 1
563
564       i = 1
565       do2d_xy = ''
566       do2d_xz = ''
567       do2d_yz = ''
568       DO  WHILE ( do2d(av,i) /= ' ' )
569
570          l = MAX( 2, LEN_TRIM( do2d(av,i) ) )
571          do2d_mode = do2d(av,i)(l-1:l)
572
573          SELECT CASE ( do2d_mode )
574             CASE ( 'xy' )
575                ll = LEN_TRIM( do2d_xy )
576                do2d_xy = do2d_xy(1:ll) // ' ' // do2d(av,i)(1:l-3) // ','
577             CASE ( 'xz' )
578                ll = LEN_TRIM( do2d_xz )
579                do2d_xz = do2d_xz(1:ll) // ' ' // do2d(av,i)(1:l-3) // ','
580             CASE ( 'yz' )
581                ll = LEN_TRIM( do2d_yz )
582                do2d_yz = do2d_yz(1:ll) // ' ' // do2d(av,i)(1:l-3) // ','
583          END SELECT
584
585          i = i + 1
586
587       ENDDO
588
589       IF ( ( ( do2d_xy /= ''  .AND.  section(1,1) /= -9999 )  .OR.    &
590              ( do2d_xz /= ''  .AND.  section(1,2) /= -9999 )  .OR.    &
591              ( do2d_yz /= ''  .AND.  section(1,3) /= -9999 ) )  .AND. &
592            ( netcdf_output  .OR.  iso2d_output ) )  THEN
593
594          IF (  av == 0 )  THEN
595             WRITE ( io, 334 )  ''
596          ELSE
597             WRITE ( io, 334 )  '(time-averaged)'
598          ENDIF
599
600          IF ( do2d_at_begin )  THEN
601             begin_chr = 'and at the start'
602          ELSE
603             begin_chr = ''
604          ENDIF
605
606          output_format = ''
607          IF ( netcdf_output )  THEN
608             IF ( netcdf_64bit )  THEN
609                output_format = 'netcdf (64 bit offset)'
610             ELSE
611                output_format = 'netcdf'
612             ENDIF
613          ENDIF
614          IF ( iso2d_output )  THEN
615             IF ( netcdf_output )  THEN
616                output_format = TRIM( output_format ) // ' and iso2d'
617             ELSE
618                output_format = 'iso2d'
619             ENDIF
620          ENDIF
621          WRITE ( io, 345 )  output_format
622
623          IF ( do2d_xy /= ''  .AND.  section(1,1) /= -9999 )  THEN
624             i = 1
625             slices = '/'
626             coordinates = '/'
627!
628!--          Building strings with index and coordinate informations of the
629!--          slices
630             DO  WHILE ( section(i,1) /= -9999 )
631
632                WRITE (section_chr,'(I5)')  section(i,1)
633                section_chr = ADJUSTL( section_chr )
634                slices = TRIM( slices ) // TRIM( section_chr ) // '/'
635
636                WRITE (coor_chr,'(F10.1)')  zu(section(i,1))
637                coor_chr = ADJUSTL( coor_chr )
638                coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/'
639
640                i = i + 1
641             ENDDO
642             IF ( av == 0 )  THEN
643                WRITE ( io, 335 )  'XY', do2d_xy, dt_do2d_xy, &
644                                   TRIM( begin_chr ), 'k', TRIM( slices ), &
645                                   TRIM( coordinates )
646                IF ( skip_time_do2d_xy /= 0.0 )  THEN
647                   WRITE ( io, 339 )  skip_time_do2d_xy
648                ENDIF
649             ELSE
650                WRITE ( io, 342 )  'XY', do2d_xy, dt_data_output_av, &
651                                   TRIM( begin_chr ), averaging_interval, &
652                                   dt_averaging_input, 'k', TRIM( slices ), &
653                                   TRIM( coordinates )
654                IF ( skip_time_data_output_av /= 0.0 )  THEN
655                   WRITE ( io, 339 )  skip_time_data_output_av
656                ENDIF
657             ENDIF
658
659          ENDIF
660
661          IF ( do2d_xz /= ''  .AND.  section(1,2) /= -9999 )  THEN
662             i = 1
663             slices = '/'
664             coordinates = '/'
665!
666!--          Building strings with index and coordinate informations of the
667!--          slices
668             DO  WHILE ( section(i,2) /= -9999 )
669
670                WRITE (section_chr,'(I5)')  section(i,2)
671                section_chr = ADJUSTL( section_chr )
672                slices = TRIM( slices ) // TRIM( section_chr ) // '/'
673
674                WRITE (coor_chr,'(F10.1)')  section(i,2) * dy
675                coor_chr = ADJUSTL( coor_chr )
676                coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/'
677
678                i = i + 1
679             ENDDO
680             IF ( av == 0 )  THEN
681                WRITE ( io, 335 )  'XZ', do2d_xz, dt_do2d_xz, &
682                                   TRIM( begin_chr ), 'j', TRIM( slices ), &
683                                   TRIM( coordinates )
684                IF ( skip_time_do2d_xz /= 0.0 )  THEN
685                   WRITE ( io, 339 )  skip_time_do2d_xz
686                ENDIF
687             ELSE
688                WRITE ( io, 342 )  'XZ', do2d_xz, dt_data_output_av, &
689                                   TRIM( begin_chr ), averaging_interval, &
690                                   dt_averaging_input, 'j', TRIM( slices ), &
691                                   TRIM( coordinates )
692                IF ( skip_time_data_output_av /= 0.0 )  THEN
693                   WRITE ( io, 339 )  skip_time_data_output_av
694                ENDIF
695             ENDIF
696          ENDIF
697
698          IF ( do2d_yz /= ''  .AND.  section(1,3) /= -9999 )  THEN
699             i = 1
700             slices = '/'
701             coordinates = '/'
702!
703!--          Building strings with index and coordinate informations of the
704!--          slices
705             DO  WHILE ( section(i,3) /= -9999 )
706
707                WRITE (section_chr,'(I5)')  section(i,3)
708                section_chr = ADJUSTL( section_chr )
709                slices = TRIM( slices ) // TRIM( section_chr ) // '/'
710
711                WRITE (coor_chr,'(F10.1)')  section(i,3) * dx
712                coor_chr = ADJUSTL( coor_chr )
713                coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/'
714
715                i = i + 1
716             ENDDO
717             IF ( av == 0 )  THEN
718                WRITE ( io, 335 )  'YZ', do2d_yz, dt_do2d_yz, &
719                                   TRIM( begin_chr ), 'i', TRIM( slices ), &
720                                   TRIM( coordinates )
721                IF ( skip_time_do2d_yz /= 0.0 )  THEN
722                   WRITE ( io, 339 )  skip_time_do2d_yz
723                ENDIF
724             ELSE
725                WRITE ( io, 342 )  'YZ', do2d_yz, dt_data_output_av, &
726                                   TRIM( begin_chr ), averaging_interval, &
727                                   dt_averaging_input, 'i', TRIM( slices ), &
728                                   TRIM( coordinates )
729                IF ( skip_time_data_output_av /= 0.0 )  THEN
730                   WRITE ( io, 339 )  skip_time_data_output_av
731                ENDIF
732             ENDIF
733          ENDIF
734
735       ENDIF
736
737    ENDDO
738
739!
740!-- 3d-arrays
741    DO  av = 0, 1
742
743       i = 1
744       do3d_chr = ''
745       DO  WHILE ( do3d(av,i) /= ' ' )
746
747          do3d_chr = TRIM( do3d_chr ) // ' ' // TRIM( do3d(av,i) ) // ','
748          i = i + 1
749
750       ENDDO
751
752       IF ( do3d_chr /= '' )  THEN
753          IF ( av == 0 )  THEN
754             WRITE ( io, 336 )  ''
755          ELSE
756             WRITE ( io, 336 )  '(time-averaged)'
757          ENDIF
758
759          output_format = ''
760          IF ( netcdf_output )  THEN
761             IF ( netcdf_64bit .AND. netcdf_64bit_3d )  THEN
762                output_format = 'netcdf (64 bit offset)'
763             ELSE
764                output_format = 'netcdf'
765             ENDIF
766          ENDIF
767          IF ( avs_output )  THEN
768             IF ( netcdf_output )  THEN
769                output_format = TRIM( output_format ) // ' and avs'
770             ELSE
771                output_format = 'avs'
772             ENDIF
773          ENDIF
774          WRITE ( io, 345 )  output_format
775
776          IF ( do3d_at_begin )  THEN
777             begin_chr = 'and at the start'
778          ELSE
779             begin_chr = ''
780          ENDIF
781          IF ( av == 0 )  THEN
782             WRITE ( io, 337 )  do3d_chr, dt_do3d, TRIM( begin_chr ), &
783                                zu(nz_do3d), nz_do3d
784          ELSE
785             WRITE ( io, 343 )  do3d_chr, dt_data_output_av,           &
786                                TRIM( begin_chr ), averaging_interval, &
787                                dt_averaging_input, zu(nz_do3d), nz_do3d
788          ENDIF
789
790          IF ( do3d_compress )  THEN
791             do3d_chr = ''
792             i = 1
793             DO WHILE ( do3d(av,i) /= ' ' )
794
795                SELECT CASE ( do3d(av,i) )
796                   CASE ( 'u' )
797                      j = 1
798                   CASE ( 'v' )
799                      j = 2
800                   CASE ( 'w' )
801                      j = 3
802                   CASE ( 'p' )
803                      j = 4
804                   CASE ( 'pt' )
805                      j = 5
806                END SELECT
807                WRITE ( prec, '(I1)' )  plot_3d_precision(j)%precision
808                do3d_chr = TRIM( do3d_chr ) // ' ' // TRIM( do3d(av,i) ) // &
809                           ':' // prec // ','
810                i = i + 1
811
812             ENDDO
813             WRITE ( io, 338 )  do3d_chr
814
815          ENDIF
816
817          IF ( av == 0 )  THEN
818             IF ( skip_time_do3d /= 0.0 )  THEN
819                WRITE ( io, 339 )  skip_time_do3d
820             ENDIF
821          ELSE
822             IF ( skip_time_data_output_av /= 0.0 )  THEN
823                WRITE ( io, 339 )  skip_time_data_output_av
824             ENDIF
825          ENDIF
826
827       ENDIF
828
829    ENDDO
830
831!
832!-- Timeseries
833    IF ( dt_dots /= 9999999.9 )  THEN
834       WRITE ( io, 340 )
835
836       output_format = ''
837       IF ( netcdf_output )  THEN
838          IF ( netcdf_64bit )  THEN
839             output_format = 'netcdf (64 bit offset)'
840          ELSE
841             output_format = 'netcdf'
842          ENDIF
843       ENDIF
844       IF ( profil_output )  THEN
845          IF ( netcdf_output )  THEN
846             output_format = TRIM( output_format ) // ' and profil'
847          ELSE
848             output_format = 'profil'
849          ENDIF
850       ENDIF
851       WRITE ( io, 345 )  output_format
852       WRITE ( io, 341 )  dt_dots
853    ENDIF
854
855#if defined( __dvrp_graphics )
856!
857!-- Dvrp-output
858    IF ( dt_dvrp /= 9999999.9 )  THEN
859       WRITE ( io, 360 )  dt_dvrp, TRIM( dvrp_output ), TRIM( dvrp_host ), &
860                          TRIM( dvrp_username ), TRIM( dvrp_directory )
861       i = 1
862       l = 0
863       DO WHILE ( mode_dvrp(i) /= ' ' )
864          IF ( mode_dvrp(i)(1:10) == 'isosurface' )  THEN
865             READ ( mode_dvrp(i), '(10X,I1)' )  j
866             l = l + 1
867             IF ( do3d(0,j) /= ' ' )  THEN
868                WRITE ( io, 361 )  TRIM( do3d(0,j) ), threshold(l)
869             ENDIF
870          ELSEIF ( mode_dvrp(i)(1:6) == 'slicer' )  THEN
871             READ ( mode_dvrp(i), '(6X,I1)' )  j
872             IF ( do2d(0,j) /= ' ' )  WRITE ( io, 362 )  TRIM( do2d(0,j) )
873          ELSEIF ( mode_dvrp(i)(1:9) == 'particles' )  THEN
874             WRITE ( io, 363 )
875          ENDIF
876          i = i + 1
877       ENDDO
878    ENDIF
879#endif
880
881#if defined( __spectra )
882!
883!-- Spectra output
884    IF ( dt_dosp /= 9999999.9 ) THEN
885       WRITE ( io, 370 )
886
887       output_format = ''
888       IF ( netcdf_output )  THEN
889          IF ( netcdf_64bit )  THEN
890             output_format = 'netcdf (64 bit offset)'
891          ELSE
892             output_format = 'netcdf'
893          ENDIF
894       ENDIF
895       IF ( profil_output )  THEN
896          IF ( netcdf_output )  THEN
897             output_format = TRIM( output_format ) // ' and profil'
898          ELSE
899             output_format = 'profil'
900          ENDIF
901       ENDIF
902       WRITE ( io, 345 )  output_format
903       WRITE ( io, 371 )  dt_dosp
904       IF ( skip_time_dosp /= 0.0 )  WRITE ( io, 339 )  skip_time_dosp
905       WRITE ( io, 372 )  ( data_output_sp(i), i = 1,10 ),     &
906                          ( spectra_direction(i), i = 1,10 ),  &
907                          ( comp_spectra_level(i), i = 1,10 ), &
908                          ( plot_spectra_level(i), i = 1,10 ), &
909                          averaging_interval_sp, dt_averaging_input_pr
910    ENDIF
911#endif
912
913    WRITE ( io, 99 )
914
915!
916!-- Physical quantities
917    WRITE ( io, 400 )
918
919!
920!-- Geostrophic parameters
921    WRITE ( io, 410 )  omega, phi, f, fs
922
923!
924!-- Other quantities
925    WRITE ( io, 411 )  g
926    IF ( use_reference )  THEN
927       IF ( ocean )  THEN
928          WRITE ( io, 412 )  prho_reference
929       ELSE
930          WRITE ( io, 413 )  pt_reference
931       ENDIF
932    ENDIF
933
934!
935!-- Cloud physics parameters
936    IF ( cloud_physics ) THEN
937       WRITE ( io, 415 )
938       WRITE ( io, 416 ) surface_pressure, r_d, rho_surface, cp, l_v
939    ENDIF
940
941!-- Profile of the geostrophic wind (component ug)
942!-- Building output strings
943    WRITE ( ugcomponent, '(F6.2)' )  ug_surface
944    gradients = '------'
945    slices = '     0'
946    coordinates = '   0.0'
947    i = 1
948    DO  WHILE ( ug_vertical_gradient_level_ind(i) /= -9999 )
949     
950       WRITE (coor_chr,'(F6.2,4X)')  ug(ug_vertical_gradient_level_ind(i))
951       ugcomponent = TRIM( ugcomponent ) // '  ' // TRIM( coor_chr )
952
953       WRITE (coor_chr,'(F6.2,4X)')  ug_vertical_gradient(i)
954       gradients = TRIM( gradients ) // '  ' // TRIM( coor_chr )
955
956       WRITE (coor_chr,'(I6,4X)')  ug_vertical_gradient_level_ind(i)
957       slices = TRIM( slices ) // '  ' // TRIM( coor_chr )
958
959       WRITE (coor_chr,'(F6.1,4X)')  ug_vertical_gradient_level(i)
960       coordinates = TRIM( coordinates ) // '  ' // TRIM( coor_chr )
961
962       i = i + 1
963    ENDDO
964
965    WRITE ( io, 423 )  TRIM( coordinates ), TRIM( ugcomponent ), &
966                       TRIM( gradients ), TRIM( slices )
967
968!-- Profile of the geostrophic wind (component vg)
969!-- Building output strings
970    WRITE ( vgcomponent, '(F6.2)' )  vg_surface
971    gradients = '------'
972    slices = '     0'
973    coordinates = '   0.0'
974    i = 1
975    DO  WHILE ( vg_vertical_gradient_level_ind(i) /= -9999 )
976
977       WRITE (coor_chr,'(F6.2,4X)')  vg(vg_vertical_gradient_level_ind(i))
978       vgcomponent = TRIM( vgcomponent ) // '  ' // TRIM( coor_chr )
979
980       WRITE (coor_chr,'(F6.2,4X)')  vg_vertical_gradient(i)
981       gradients = TRIM( gradients ) // '  ' // TRIM( coor_chr )
982
983       WRITE (coor_chr,'(I6,4X)')  vg_vertical_gradient_level_ind(i)
984       slices = TRIM( slices ) // '  ' // TRIM( coor_chr )
985
986       WRITE (coor_chr,'(F6.1,4X)')  vg_vertical_gradient_level(i)
987       coordinates = TRIM( coordinates ) // '  ' // TRIM( coor_chr )
988
989       i = i + 1 
990    ENDDO
991
992    WRITE ( io, 424 )  TRIM( coordinates ), TRIM( vgcomponent ), &
993                       TRIM( gradients ), TRIM( slices )
994
995!
996!-- Initial temperature profile
997!-- Building output strings, starting with surface temperature
998    WRITE ( temperatures, '(F6.2)' )  pt_surface
999    gradients = '------'
1000    slices = '     0'
1001    coordinates = '   0.0'
1002    i = 1
1003    DO  WHILE ( pt_vertical_gradient_level_ind(i) /= -9999 )
1004
1005       WRITE (coor_chr,'(F7.2)')  pt_init(pt_vertical_gradient_level_ind(i))
1006       temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr )
1007
1008       WRITE (coor_chr,'(F7.2)')  pt_vertical_gradient(i)
1009       gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr )
1010
1011       WRITE (coor_chr,'(I7)')  pt_vertical_gradient_level_ind(i)
1012       slices = TRIM( slices ) // ' ' // TRIM( coor_chr )
1013
1014       WRITE (coor_chr,'(F7.1)')  pt_vertical_gradient_level(i)
1015       coordinates = TRIM( coordinates ) // ' '  // TRIM( coor_chr )
1016
1017       i = i + 1
1018    ENDDO
1019
1020    WRITE ( io, 420 )  TRIM( coordinates ), TRIM( temperatures ), &
1021                       TRIM( gradients ), TRIM( slices )
1022
1023!
1024!-- Initial humidity profile
1025!-- Building output strings, starting with surface humidity
1026    IF ( humidity  .OR.  passive_scalar )  THEN
1027       WRITE ( temperatures, '(E8.1)' )  q_surface
1028       gradients = '--------'
1029       slices = '       0'
1030       coordinates = '     0.0'
1031       i = 1
1032       DO  WHILE ( q_vertical_gradient_level_ind(i) /= -9999 )
1033         
1034          WRITE (coor_chr,'(E8.1,4X)')  q_init(q_vertical_gradient_level_ind(i))
1035          temperatures = TRIM( temperatures ) // '  ' // TRIM( coor_chr )
1036
1037          WRITE (coor_chr,'(E8.1,4X)')  q_vertical_gradient(i)
1038          gradients = TRIM( gradients ) // '  ' // TRIM( coor_chr )
1039         
1040          WRITE (coor_chr,'(I8,4X)')  q_vertical_gradient_level_ind(i)
1041          slices = TRIM( slices ) // '  ' // TRIM( coor_chr )
1042         
1043          WRITE (coor_chr,'(F8.1,4X)')  q_vertical_gradient_level(i)
1044          coordinates = TRIM( coordinates ) // '  '  // TRIM( coor_chr )
1045
1046          i = i + 1
1047       ENDDO
1048
1049       IF ( humidity )  THEN
1050          WRITE ( io, 421 )  TRIM( coordinates ), TRIM( temperatures ), &
1051                             TRIM( gradients ), TRIM( slices )
1052       ELSE
1053          WRITE ( io, 422 )  TRIM( coordinates ), TRIM( temperatures ), &
1054                             TRIM( gradients ), TRIM( slices )
1055       ENDIF
1056    ENDIF
1057
1058!
1059!-- Initial salinity profile
1060!-- Building output strings, starting with surface salinity
1061    IF ( ocean )  THEN
1062       WRITE ( temperatures, '(F6.2)' )  sa_surface
1063       gradients = '------'
1064       slices = '     0'
1065       coordinates = '   0.0'
1066       i = 1
1067       DO  WHILE ( sa_vertical_gradient_level_ind(i) /= -9999 )
1068
1069          WRITE (coor_chr,'(F7.2)')  sa_init(sa_vertical_gradient_level_ind(i))
1070          temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr )
1071
1072          WRITE (coor_chr,'(F7.2)')  sa_vertical_gradient(i)
1073          gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr )
1074
1075          WRITE (coor_chr,'(I7)')  sa_vertical_gradient_level_ind(i)
1076          slices = TRIM( slices ) // ' ' // TRIM( coor_chr )
1077
1078          WRITE (coor_chr,'(F7.1)')  sa_vertical_gradient_level(i)
1079          coordinates = TRIM( coordinates ) // ' '  // TRIM( coor_chr )
1080
1081          i = i + 1
1082       ENDDO
1083
1084       WRITE ( io, 425 )  TRIM( coordinates ), TRIM( temperatures ), &
1085                          TRIM( gradients ), TRIM( slices )
1086    ENDIF
1087
1088!
1089!-- LES / turbulence parameters
1090    WRITE ( io, 450 )
1091
1092!--
1093! ... LES-constants used must still be added here
1094!--
1095    IF ( constant_diffusion )  THEN
1096       WRITE ( io, 451 )  km_constant, km_constant/prandtl_number, &
1097                          prandtl_number
1098    ENDIF
1099    IF ( .NOT. constant_diffusion)  THEN
1100       IF ( e_init > 0.0 )  WRITE ( io, 455 )  e_init
1101       IF ( e_min > 0.0 )  WRITE ( io, 454 )  e_min
1102       IF ( wall_adjustment )  WRITE ( io, 453 )  wall_adjustment_factor
1103       IF ( adjust_mixing_length  .AND.  prandtl_layer )  WRITE ( io, 452 )
1104    ENDIF
1105
1106!
1107!-- Special actions during the run
1108    WRITE ( io, 470 )
1109    IF ( create_disturbances )  THEN
1110       WRITE ( io, 471 )  dt_disturb, disturbance_amplitude,                   &
1111                          zu(disturbance_level_ind_b), disturbance_level_ind_b,&
1112                          zu(disturbance_level_ind_t), disturbance_level_ind_t
1113       IF ( bc_lr /= 'cyclic'  .OR.  bc_ns /= 'cyclic' )  THEN
1114          WRITE ( io, 472 )  inflow_disturbance_begin, inflow_disturbance_end
1115       ELSE
1116          WRITE ( io, 473 )  disturbance_energy_limit
1117       ENDIF
1118       WRITE ( io, 474 )  TRIM( random_generator )
1119    ENDIF
1120    IF ( pt_surface_initial_change /= 0.0 )  THEN
1121       WRITE ( io, 475 )  pt_surface_initial_change
1122    ENDIF
1123    IF ( humidity  .AND.  q_surface_initial_change /= 0.0 )  THEN
1124       WRITE ( io, 476 )  q_surface_initial_change       
1125    ENDIF
1126    IF ( passive_scalar  .AND.  q_surface_initial_change /= 0.0 )  THEN
1127       WRITE ( io, 477 )  q_surface_initial_change       
1128    ENDIF
1129
1130    IF ( particle_advection )  THEN
1131!
1132!--    Particle attributes
1133       WRITE ( io, 480 )  particle_advection_start, dt_prel, bc_par_lr, &
1134                          bc_par_ns, bc_par_b, bc_par_t, particle_maximum_age, &
1135                          end_time_prel
1136       IF ( use_sgs_for_particles )  WRITE ( io, 488 )  dt_min_part
1137       IF ( random_start_position )  WRITE ( io, 481 )
1138       IF ( particles_per_point > 1 )  WRITE ( io, 489 )  particles_per_point
1139       WRITE ( io, 495 )  total_number_of_particles
1140       IF ( .NOT. vertical_particle_advection )  WRITE ( io, 482 )
1141       IF ( maximum_number_of_tailpoints /= 0 )  THEN
1142          WRITE ( io, 483 )  maximum_number_of_tailpoints
1143          IF ( minimum_tailpoint_distance /= 0 )  THEN
1144             WRITE ( io, 484 )  total_number_of_tails,      &
1145                                minimum_tailpoint_distance, &
1146                                maximum_tailpoint_age
1147          ENDIF
1148       ENDIF
1149       IF ( dt_write_particle_data /= 9999999.9 )  THEN
1150          WRITE ( io, 485 )  dt_write_particle_data
1151          output_format = ''
1152          IF ( netcdf_output )  THEN
1153             IF ( netcdf_64bit )  THEN
1154                output_format = 'netcdf (64 bit offset) and binary'
1155             ELSE
1156                output_format = 'netcdf and binary'
1157             ENDIF
1158          ELSE
1159             output_format = 'binary'
1160          ENDIF
1161          WRITE ( io, 345 )  output_format
1162       ENDIF
1163       IF ( dt_dopts /= 9999999.9 )  WRITE ( io, 494 )  dt_dopts
1164       IF ( write_particle_statistics )  WRITE ( io, 486 )
1165
1166       WRITE ( io, 487 )  number_of_particle_groups
1167
1168       DO  i = 1, number_of_particle_groups
1169          IF ( i == 1  .AND.  density_ratio(i) == 9999999.9 )  THEN
1170             WRITE ( io, 490 )  i, 0.0
1171             WRITE ( io, 492 )
1172          ELSE
1173             WRITE ( io, 490 )  i, radius(i)
1174             IF ( density_ratio(i) /= 0.0 )  THEN
1175                WRITE ( io, 491 )  density_ratio(i)
1176             ELSE
1177                WRITE ( io, 492 )
1178             ENDIF
1179          ENDIF
1180          WRITE ( io, 493 )  psl(i), psr(i), pss(i), psn(i), psb(i), pst(i), &
1181                             pdx(i), pdy(i), pdz(i)
1182       ENDDO
1183
1184    ENDIF
1185
1186
1187!
1188!-- Parameters of 1D-model
1189    IF ( INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 )  THEN
1190       WRITE ( io, 500 )  end_time_1d, dt_run_control_1d, dt_pr_1d, &
1191                          mixing_length_1d, dissipation_1d
1192       IF ( damp_level_ind_1d /= nzt+1 )  THEN
1193          WRITE ( io, 502 )  zu(damp_level_ind_1d), damp_level_ind_1d
1194       ENDIF
1195    ENDIF
1196
1197!
1198!-- User-defined informations
1199    CALL user_header( io )
1200
1201    WRITE ( io, 99 )
1202
1203!
1204!-- Write buffer contents to disc immediately
1205    CALL local_flush( io )
1206
1207!
1208!-- Here the FORMATs start
1209
1210 99 FORMAT (1X,78('-'))
1211100 FORMAT (/1X,'*************************',11X,42('-')/        &
1212            1X,'* ',A,' *',11X,A/                               &
1213            1X,'*************************',11X,42('-'))
1214101 FORMAT (37X,'coupled run: ',A/ &
1215            37X,42('-'))
1216102 FORMAT (/' Date:            ',A8,11X,'Run:       ',A20/      &
1217            ' Time:            ',A8,11X,'Run-No.:   ',I2.2/     &
1218            ' Run on host:   ',A10)
1219#if defined( __parallel )
1220103 FORMAT (' Number of PEs:',7X,I4,11X,'Processor grid (x,y): (',I3,',',I3, &
1221              ')',1X,A)
1222104 FORMAT (' Number of PEs:',7X,I4,11X,'Tasks:',I4,'   threads per task:',I4/ &
1223              37X,'Processor grid (x,y): (',I3,',',I3,')',1X,A)
1224105 FORMAT (37X,'One additional PE is used to handle'/37X,'the dvrp output!')
1225106 FORMAT (37X,'A 1d-decomposition along x is forced'/ &
1226            37X,'because the job is running on an SMP-cluster')
1227107 FORMAT (37X,'A 1d-decomposition along ',A,' is used')
1228#endif
1229110 FORMAT (/' Numerical Schemes:'/ &
1230             ' -----------------'/)
1231111 FORMAT (' --> Solve perturbation pressure via FFT using ',A,' routines')
1232112 FORMAT (' --> Solve perturbation pressure via SOR-Red/Black-Schema'/ &
1233            '     Iterations (initial/other): ',I3,'/',I3,'  omega = ',F5.3)
1234113 FORMAT (' --> Momentum advection via Piascek-Williams-Scheme (Form C3)', &
1235                  ' or Upstream')
1236114 FORMAT (' --> Momentum advection via Upstream-Spline-Scheme')
1237115 FORMAT ('     Tendencies are smoothed via Long-Filter with factor ',F5.3) 
1238116 FORMAT (' --> Scalar advection via Piascek-Williams-Scheme (Form C3)', &
1239                  ' or Upstream')
1240117 FORMAT (' --> Scalar advection via Upstream-Spline-Scheme')
1241118 FORMAT (' --> Scalar advection via Bott-Chlond-Scheme')
1242119 FORMAT (' --> Galilei-Transform applied to horizontal advection', &
1243            '     Translation velocity = ',A/ &
1244            '     distance advected ',A,':  ',F8.3,' km(x)  ',F8.3,' km(y)')
1245120 FORMAT (' --> Time differencing scheme: leapfrog only (no euler in case', &
1246                  ' of timestep changes)')
1247121 FORMAT (' --> Time differencing scheme: leapfrog + euler in case of', &
1248                  ' timestep changes')
1249122 FORMAT (' --> Time differencing scheme: ',A)
1250123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ &
1251            '     maximum damping coefficient: ',F5.3, ' 1/s')
1252124 FORMAT ('     Spline-overshoots are being suppressed')
1253125 FORMAT ('     Upstream-Scheme is used if Upstream-differences fall short', &
1254                  ' of'/                                                       &
1255            '     delta_u = ',F6.4,4X,'delta_v = ',F6.4,4X,'delta_w = ',F6.4)
1256126 FORMAT ('     Upstream-Scheme is used if Upstream-differences fall short', &
1257                  ' of'/                                                       &
1258            '     delta_e = ',F6.4,4X,'delta_pt = ',F6.4)
1259127 FORMAT ('     The following absolute overshoot differences are tolerated:'/&
1260            '     delta_u = ',F6.4,4X,'delta_v = ',F6.4,4X,'delta_w = ',F6.4)
1261128 FORMAT ('     The following absolute overshoot differences are tolerated:'/&
1262            '     delta_e = ',F6.4,4X,'delta_pt = ',F6.4)
1263129 FORMAT (' --> Additional prognostic equation for the specific humidity')
1264130 FORMAT (' --> Additional prognostic equation for the total water content')
1265131 FORMAT (' --> Parameterization of condensation processes via (0%-or100%)')
1266132 FORMAT (' --> Parameterization of long-wave radiation processes via'/ &
1267            '     effective emissivity scheme')
1268133 FORMAT (' --> Precipitation parameterization via Kessler-Scheme')
1269134 FORMAT (' --> Additional prognostic equation for a passive scalar')
1270135 FORMAT (' --> Solve perturbation pressure via multigrid method (', &
1271                  A,'-cycle)'/ &
1272            '     number of grid levels:                   ',I2/ &
1273            '     Gauss-Seidel red/black iterations:       ',I2)
1274136 FORMAT ('     gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', &
1275                  I3,')')
1276137 FORMAT ('     level data gathered on PE0 at level:     ',I2/ &
1277            '     gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', &
1278                  I3,')'/ &
1279            '     gridpoints of coarsest domain (x,y,z):    (',I3,',',I3,',', &
1280                  I3,')')
1281138 FORMAT ('     Using hybrid version for 1d-domain-decomposition')
1282139 FORMAT (' --> Loop optimization method: ',A)
1283140 FORMAT ('     maximum residual allowed:                ',E10.3)
1284141 FORMAT ('     fixed number of multigrid cycles:        ',I4)
1285142 FORMAT ('     perturbation pressure is calculated at every Runge-Kutta ', &
1286                  'step')
1287143 FORMAT ('     Euler/upstream scheme is used for the SGS turbulent ', &
1288                  'kinetic energy')
1289150 FORMAT (' --> Volume flow at the right and north boundary will be ', &
1290                  'conserved')
1291200 FORMAT (//' Run time and time step information:'/ &
1292             ' ----------------------------------'/)
1293201 FORMAT ( ' Timestep:          variable     maximum value: ',F6.3,' s', &
1294             '    CFL-factor: ',F4.2)
1295202 FORMAT ( ' Timestep:       dt = ',F6.3,' s'/)
1296203 FORMAT ( ' Start time:       ',F9.3,' s'/ &
1297             ' End time:         ',F9.3,' s')
1298204 FORMAT ( A,F9.3,' s')
1299205 FORMAT ( A,F9.3,' s',5X,'restart every',17X,F9.3,' s')
1300206 FORMAT (/' Time reached:     ',F9.3,' s'/ &
1301             ' CPU-time used:    ',F9.3,' s     per timestep:               ', &
1302               '  ',F9.3,' s'/                                                 &
1303             '                                   per second of simulated tim', &
1304               'e: ',F9.3,' s')
1305250 FORMAT (//' Computational grid and domain size:'/ &
1306              ' ----------------------------------'// &
1307              ' Grid length:      dx =    ',F7.3,' m    dy =    ',F7.3, &
1308              ' m    dz =    ',F7.3,' m'/ &
1309              ' Domain size:       x = ',F10.3,' m     y = ',F10.3, &
1310              ' m  z(u) = ',F10.3,' m'/)
1311252 FORMAT (' dz constant up to ',F10.3,' m (k=',I4,'), then stretched by', &
1312              ' factor: ',F5.3/ &
1313            ' maximum dz not to be exceeded is dz_max = ',F10.3,' m'/)
1314254 FORMAT (' Number of gridpoints (x,y,z):  (0:',I4,', 0:',I4,', 0:',I4,')'/ &
1315            ' Subdomain size (x,y,z):        (  ',I4,',   ',I4,',   ',I4,')'/)
1316255 FORMAT (' Subdomains have equal size')
1317256 FORMAT (' Subdomains at the upper edges of the virtual processor grid ', &
1318              'have smaller sizes'/                                          &
1319            ' Size of smallest subdomain:    (  ',I4,',   ',I4,',   ',I4,')')
1320260 FORMAT (/' The model has a slope in x-direction. Inclination angle: ',F6.2,&
1321             ' degrees')
1322270 FORMAT (//' Topography informations:'/ &
1323              ' -----------------------'// &
1324              1X,'Topography: ',A)
1325271 FORMAT (  ' Building size (x/y/z) in m: ',F5.1,' / ',F5.1,' / ',F5.1/ &
1326              ' Horizontal index bounds (l/r/s/n): ',I4,' / ',I4,' / ',I4, &
1327                ' / ',I4)
1328300 FORMAT (//' Boundary conditions:'/ &
1329             ' -------------------'// &
1330             '                     p                    uv             ', &
1331             '                   pt'// &
1332             ' B. bound.: ',A/ &
1333             ' T. bound.: ',A)
1334301 FORMAT (/'                     ',A// &
1335             ' B. bound.: ',A/ &
1336             ' T. bound.: ',A)
1337303 FORMAT (/' Bottom surface fluxes are used in diffusion terms at k=1')
1338304 FORMAT (/' Top surface fluxes are used in diffusion terms at k=nzt')
1339305 FORMAT (//'    Prandtl-Layer between bottom surface and first ', &
1340               'computational u,v-level:'// &
1341             '       zp = ',F6.2,' m   z0 = ',F6.4,' m   kappa = ',F4.2/ &
1342             '       Rif value range:   ',F6.2,' <= rif <=',F6.2)
1343306 FORMAT ('       Predefined constant heatflux:   ',F9.6,' K m/s')
1344307 FORMAT ('       Heatflux has a random normal distribution')
1345308 FORMAT ('       Predefined surface temperature')
1346309 FORMAT ('       Predefined constant salinityflux:   ',F9.6,' psu m/s')
1347310 FORMAT (//'    1D-Model:'// &
1348             '       Rif value range:   ',F6.2,' <= rif <=',F6.2)
1349311 FORMAT ('       Predefined constant humidity flux: ',E10.3,' m/s')
1350312 FORMAT ('       Predefined surface humidity')
1351313 FORMAT ('       Predefined constant scalar flux: ',E10.3,' kg/(m**2 s)')
1352314 FORMAT ('       Predefined scalar value at the surface')
1353315 FORMAT ('       Humidity / scalar flux at top surface is 0.0')
1354316 FORMAT ('       Sensible heatflux and momentum flux from coupled ', &
1355                    'atmosphere model')
1356317 FORMAT (//' Lateral boundaries:'/ &
1357            '       left/right:  ',A/    &
1358            '       north/south: ',A)
1359318 FORMAT (/'       outflow damping layer width: ',I3,' gridpoints with km_', &
1360                    'max =',F5.1,' m**2/s')
1361319 FORMAT ('       Predefined constant momentumflux:  u: ',F9.6,' m**2/s**2'/ &
1362            '                                          v: ',F9.6,' m**2/s**2')
1363320 FORMAT (//' List output:'/ &
1364             ' -----------'//  &
1365            '    1D-Profiles:'/    &
1366            '       Output every             ',F8.2,' s')
1367321 FORMAT ('       Time averaged over       ',F8.2,' s'/ &
1368            '       Averaging input every    ',F8.2,' s')
1369330 FORMAT (//' Data output:'/ &
1370             ' -----------'/)
1371331 FORMAT (/'    1D-Profiles:')
1372332 FORMAT (/'       ',A)
1373333 FORMAT ('       Output every             ',F8.2,' s',/ &
1374            '       Time averaged over       ',F8.2,' s'/ &
1375            '       Averaging input every    ',F8.2,' s')
1376334 FORMAT (/'    2D-Arrays',A,':')
1377335 FORMAT (/'       ',A2,'-cross-section  Arrays: ',A/ &
1378            '       Output every             ',F8.2,' s  ',A/ &
1379            '       Cross sections at ',A1,' = ',A/ &
1380            '       scalar-coordinates:   ',A,' m'/)
1381336 FORMAT (/'    3D-Arrays',A,':')
1382337 FORMAT (/'       Arrays: ',A/ &
1383            '       Output every             ',F8.2,' s  ',A/ &
1384            '       Upper output limit at    ',F8.2,' m  (GP ',I4,')'/)
1385338 FORMAT ('       Compressed data output'/ &
1386            '       Decimal precision: ',A/)
1387339 FORMAT ('       No output during initial ',F8.2,' s')
1388340 FORMAT (/'    Time series:')
1389341 FORMAT ('       Output every             ',F8.2,' s'/)
1390342 FORMAT (/'       ',A2,'-cross-section  Arrays: ',A/ &
1391            '       Output every             ',F8.2,' s  ',A/ &
1392            '       Time averaged over       ',F8.2,' s'/ &
1393            '       Averaging input every    ',F8.2,' s'/ &
1394            '       Cross sections at ',A1,' = ',A/ &
1395            '       scalar-coordinates:   ',A,' m'/)
1396343 FORMAT (/'       Arrays: ',A/ &
1397            '       Output every             ',F8.2,' s  ',A/ &
1398            '       Time averaged over       ',F8.2,' s'/ &
1399            '       Averaging input every    ',F8.2,' s'/ &
1400            '       Upper output limit at    ',F8.2,' m  (GP ',I4,')'/)
1401345 FORMAT ('       Output format: ',A/)
1402#if defined( __dvrp_graphics )
1403360 FORMAT ('    Plot-Sequence with dvrp-software:'/ &
1404            '       Output every      ',F7.1,' s'/ &
1405            '       Output mode:      ',A/ &
1406            '       Host / User:      ',A,' / ',A/ &
1407            '       Directory:        ',A// &
1408            '       The sequence contains:')
1409361 FORMAT ('       Isosurface of ',A,'  Threshold value: ', E12.3)
1410362 FORMAT ('       Sectional plane ',A)
1411363 FORMAT ('       Particles')
1412#endif
1413#if defined( __spectra )
1414370 FORMAT ('    Spectra:')
1415371 FORMAT ('       Output every ',F7.1,' s'/)
1416372 FORMAT ('       Arrays:     ', 10(A5,',')/                         &
1417            '       Directions: ', 10(A5,',')/                         &
1418            '       height levels  k = ', 9(I3,','),I3,'.'/            &
1419            '       height levels selected for standard plot:'/        &
1420            '                      k = ', 9(I3,','),I3,'.'/            &
1421            '       Time averaged over ', F7.1, ' s,' /                &
1422            '       Profiles for the time averaging are taken every ', &
1423                    F6.1,' s')
1424#endif
1425400 FORMAT (//' Physical quantities:'/ &
1426              ' -------------------'/)
1427410 FORMAT ('    Angular velocity    :   omega = ',E9.3,' rad/s'/  &
1428            '    Geograph. latitude  :   phi   = ',F4.1,' degr'/   &
1429            '    Coriolis parameter  :   f     = ',F9.6,' 1/s'/    &
1430            '                            f*    = ',F9.6,' 1/s')
1431411 FORMAT (/'    Gravity             :   g     = ',F4.1,' m/s**2')
1432412 FORMAT (/'    Reference density in buoyancy terms: ',F8.3,' kg/m**3')
1433413 FORMAT (/'    Reference temperature in buoyancy terms: ',F8.4,' K')
1434415 FORMAT (/'    Cloud physics parameters:'/ &
1435             '    ------------------------'/)
1436416 FORMAT ('        Surface pressure   :   p_0   = ',F7.2,' hPa'/      &
1437            '        Gas constant       :   R     = ',F5.1,' J/(kg K)'/ &
1438            '        Density of air     :   rho_0 = ',F5.3,' kg/m**3'/  &
1439            '        Specific heat cap. :   c_p   = ',F6.1,' J/(kg K)'/ &
1440            '        Vapourization heat :   L_v   = ',E8.2,' J/kg')
1441420 FORMAT (/'    Characteristic levels of the initial temperature profile:'// &
1442            '       Height:        ',A,'  m'/ &
1443            '       Temperature:   ',A,'  K'/ &
1444            '       Gradient:      ',A,'  K/100m'/ &
1445            '       Gridpoint:     ',A)
1446421 FORMAT (/'    Characteristic levels of the initial humidity profile:'// &
1447            '       Height:      ',A,'  m'/ &
1448            '       Humidity:    ',A,'  kg/kg'/ &
1449            '       Gradient:    ',A,'  (kg/kg)/100m'/ &
1450            '       Gridpoint:   ',A)
1451422 FORMAT (/'    Characteristic levels of the initial scalar profile:'// &
1452            '       Height:                  ',A,'  m'/ &
1453            '       Scalar concentration:    ',A,'  kg/m**3'/ &
1454            '       Gradient:                ',A,'  (kg/m**3)/100m'/ &
1455            '       Gridpoint:               ',A)
1456423 FORMAT (/'    Characteristic levels of the geo. wind component ug:'// &
1457            '       Height:      ',A,'  m'/ &
1458            '       ug:          ',A,'  m/s'/ &
1459            '       Gradient:    ',A,'  1/100s'/ &
1460            '       Gridpoint:   ',A)
1461424 FORMAT (/'    Characteristic levels of the geo. wind component vg:'// &
1462            '       Height:      ',A,'  m'/ &
1463            '       vg:          ',A,'  m/s'/ &
1464            '       Gradient:    ',A,'  1/100s'/ &
1465            '       Gridpoint:   ',A)
1466425 FORMAT (/'    Characteristic levels of the initial salinity profile:'// &
1467            '       Height:     ',A,'  m'/ &
1468            '       Salinity:   ',A,'  psu'/ &
1469            '       Gradient:   ',A,'  psu/100m'/ &
1470            '       Gridpoint:  ',A)
1471450 FORMAT (//' LES / Turbulence quantities:'/ &
1472              ' ---------------------------'/)
1473451 FORMAT ('   Diffusion coefficients are constant:'/ &
1474            '   Km = ',F6.2,' m**2/s   Kh = ',F6.2,' m**2/s   Pr = ',F5.2)
1475452 FORMAT ('   Mixing length is limited to the Prandtl mixing lenth.')
1476453 FORMAT ('   Mixing length is limited to ',F4.2,' * z')
1477454 FORMAT ('   TKE is not allowed to fall below ',E9.2,' (m/s)**2')
1478455 FORMAT ('   initial TKE is prescribed as ',E9.2,' (m/s)**2')
1479470 FORMAT (//' Actions during the simulation:'/ &
1480              ' -----------------------------'/)
1481471 FORMAT ('    Disturbance impulse (u,v) every :   ',F6.2,' s'/            &
1482            '    Disturbance amplitude           :     ',F4.2, ' m/s'/       &
1483            '    Lower disturbance level         : ',F8.2,' m (GP ',I4,')'/  &
1484            '    Upper disturbance level         : ',F8.2,' m (GP ',I4,')')
1485472 FORMAT ('    Disturbances continued during the run from i/j =',I4, &
1486                 ' to i/j =',I4)
1487473 FORMAT ('    Disturbances cease as soon as the disturbance energy exceeds',&
1488                 1X,F5.3, ' m**2/s**2')
1489474 FORMAT ('    Random number generator used    : ',A/)
1490475 FORMAT ('    The surface temperature is increased (or decreased, ', &
1491                 'respectively, if'/ &
1492            '    the value is negative) by ',F5.2,' K at the beginning of the',&
1493                 ' 3D-simulation'/)
1494476 FORMAT ('    The surface humidity is increased (or decreased, ',&
1495                 'respectively, if the'/ &
1496            '    value is negative) by ',E8.1,' kg/kg at the beginning of', &
1497                 ' the 3D-simulation'/)
1498477 FORMAT ('    The scalar value is increased at the surface (or decreased, ',&
1499                 'respectively, if the'/ &
1500            '    value is negative) by ',E8.1,' kg/m**3 at the beginning of', &
1501                 ' the 3D-simulation'/)
1502480 FORMAT ('    Particles:'/ &
1503            '    ---------'// &
1504            '       Particle advection is active (switched on at t = ', F7.1, &
1505                    ' s)'/ &
1506            '       Start of new particle generations every  ',F6.1,' s'/ &
1507            '       Boundary conditions: left/right: ', A, ' north/south: ', A/&
1508            '                            bottom:     ', A, ' top:         ', A/&
1509            '       Maximum particle age:                 ',F9.1,' s'/ &
1510            '       Advection stopped at t = ',F9.1,' s'/)
1511481 FORMAT ('       Particles have random start positions'/)
1512482 FORMAT ('       Particles are advected only horizontally'/)
1513483 FORMAT ('       Particles have tails with a maximum of ',I3,' points')
1514484 FORMAT ('            Number of tails of the total domain: ',I10/ &
1515            '            Minimum distance between tailpoints: ',F8.2,' m'/ &
1516            '            Maximum age of the end of the tail:  ',F8.2,' s')
1517485 FORMAT ('       Particle data are written on file every ', F9.1, ' s')
1518486 FORMAT ('       Particle statistics are written on file'/)
1519487 FORMAT ('       Number of particle groups: ',I2/)
1520488 FORMAT ('       SGS velocity components are used for particle advection'/ &
1521            '          minimum timestep for advection: ', F7.5/)
1522489 FORMAT ('       Number of particles simultaneously released at each ', &
1523                    'point: ', I5/)
1524490 FORMAT ('       Particle group ',I2,':'/ &
1525            '          Particle radius: ',E10.3, 'm')
1526491 FORMAT ('          Particle inertia is activated'/ &
1527            '             density_ratio (rho_fluid/rho_particle) = ',F5.3/)
1528492 FORMAT ('          Particles are advected only passively (no inertia)'/)
1529493 FORMAT ('          Boundaries of particle source: x:',F8.1,' - ',F8.1,' m'/&
1530            '                                         y:',F8.1,' - ',F8.1,' m'/&
1531            '                                         z:',F8.1,' - ',F8.1,' m'/&
1532            '          Particle distances:  dx = ',F8.1,' m  dy = ',F8.1, &
1533                       ' m  dz = ',F8.1,' m'/)
1534494 FORMAT ('       Output of particle time series in NetCDF format every ', &
1535                    F8.2,' s'/)
1536495 FORMAT ('       Number of particles in total domain: ',I10/)
1537500 FORMAT (//' 1D-Model parameters:'/                           &
1538              ' -------------------'//                           &
1539            '    Simulation time:                   ',F8.1,' s'/ &
1540            '    Run-controll output every:         ',F8.1,' s'/ &
1541            '    Vertical profile output every:     ',F8.1,' s'/ &
1542            '    Mixing length calculation:         ',A/         &
1543            '    Dissipation calculation:           ',A/)
1544502 FORMAT ('    Damping layer starts from ',F7.1,' m (GP ',I4,')'/)
1545
1546
1547 END SUBROUTINE header
Note: See TracBrowser for help on using the repository browser.