source: palm/trunk/SOURCE/write_var_list.f90 @ 1698

Last change on this file since 1698 was 1692, checked in by maronga, 8 years ago

last commit documented

  • Property svn:keywords set to Id
File size: 24.4 KB
Line 
1!> @file write_var_list.f90
2!--------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms
6! of the GNU General Public License as published by the Free Software Foundation,
7! either version 3 of the License, or (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with
14! PALM. If not, see <http://www.gnu.org/licenses/>.
15!
16! Copyright 1997-2015 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------!
18!
19! Current revisions:
20! -----------------
21!
22!
23! Former revisions:
24! -----------------
25! $Id: write_var_list.f90 1692 2015-10-26 16:29:17Z raasch $
26!
27! 1691 2015-10-26 16:17:44Z maronga
28! Added output of most_method, constant_flux_layer, zeta_min, zeta_max. Removed
29! output of prandtl_layer and rif_min, rif_max.
30!
31! 1682 2015-10-07 23:56:08Z knoop
32! Code annotations made doxygen readable
33!
34! 1585 2015-04-30 07:05:52Z maronga
35! Adapted for RRTMG
36!
37! 1551 2015-03-03 14:18:16Z maronga
38! Typo removed
39!
40! 1502 2014-12-03 18:22:31Z kanani
41! Canopy module and parameters removed (parameters are always read from
42! canopy_par NAMELIST for initial and restart runs),
43! Bugfix: added blanks in "cloud_top_radiation"-string to a total of 30
44! characters
45!
46! 1496 2014-12-02 17:25:50Z maronga
47! Renamed "radiation" -> "cloud_top_radiation"
48!
49! 1484 2014-10-21 10:53:05Z kanani
50! Changes in the course of the canopy-model modularization:
51!   parameters alpha_lad, beta_lad, lai_beta added,
52!   module plant_canopy_model_mod added,
53!   drag_coefficient, leaf_surface_concentration and scalar_exchange_coefficient
54!   renamed to canopy_drag_coeff, leaf_surface_conc and leaf_scalar_exch_coeff
55!
56! 1324 2014-03-21 09:13:16Z suehring
57! Bugfix: ONLY statement for module netcdf_control removed
58!
59! 1320 2014-03-20 08:40:49Z raasch
60! revision history before 2012 removed,
61! comment fields (!:) to be used for variable explanations added to
62! all variable declaration statements
63!
64! 1308 2014-03-13 14:58:42Z fricke
65! +do2d_xy_time_count, do2d_xz_time_count, do2d_yz_time_count,
66! +do3d_time_count
67!
68! 1241 2013-10-30 11:36:58Z heinze
69! +nudging
70! +large_scale_forcing
71!
72! 1179 2013-06-14 05:57:58Z raasch
73! +reference_state, ref_state
74!
75! 1115 2013-03-26 18:16:16Z hoffmann
76! unused variables removed
77!
78! 1065 2012-11-22 17:42:36Z hoffmann
79! +nc, c_sedimentation, turbulence, limiter_sedimentation
80! -mu_constant, mu_constant_value
81!
82! 1053 2012-11-13 17:11:03Z hoffmann
83! necessary expansions according to the two new prognostic equations (nr, qr)
84! of the two-moment cloud physics scheme:
85! +bc_*_b, bc_*_t, bc_*_t_val, *_init, *_surface, *_surface_initial_change,
86! +*_vertical_gradient, *_vertical_gradient_level, *_vertical_gradient_level_ind,
87! +surface_waterflux_*
88!
89! in addition, steering parameters parameters of the two-moment cloud physics
90! scheme:   
91! +cloud_scheme, +drizzle, +mu_constant, +mu_constant_value, +ventilation_effect
92!
93! 1036 2012-10-22 13:43:42Z raasch
94! code put under GPL (PALM 3.9)
95!
96! 1015 2012-09-27 09:23:24Z raasch
97! -adjust_mixing_length
98!
99! 1003 2012-09-14 14:35:53Z raasch
100! -grid_matching
101!
102! 1001 2012-09-13 14:08:46Z raasch
103! -cut_spline_overshoot, last_dt_change, long_filter_factor, overshoot_limit_*,
104! ups_limit_*
105!
106! 978 2012-08-09 08:28:32Z fricke
107! -km_damp_max, outflow_damping_width
108! +pt_damping_factor, pt_damping_width
109! +z0h_factor
110!
111! 940 2012-07-09 14:31:00Z raasch
112! +neutral
113!
114! 927 2012-06-06 19:15:04Z raasch
115! +masking_method
116!
117! 849 2012-03-15 10:35:09Z raasch
118! first_call_advec_particles renamed first_call_lpm
119!
120! 824 2012-02-17 09:09:57Z raasch
121! +curvature_solution_effects
122!
123! Revision 1.1  1998/03/18 20:20:38  raasch
124! Initial revision
125!
126!
127! Description:
128! ------------
129!> Writing values of control variables to restart-file (binary format).
130!> This information are only written to the file opened by PE0.
131!------------------------------------------------------------------------------!
132 SUBROUTINE write_var_list
133 
134
135    USE arrays_3d,                                                             &
136        ONLY:  inflow_damping_factor, mean_inflow_profiles, pt_init,           &
137               q_init, ref_state, sa_init, u_init, ug, v_init, vg
138   
139    USE cloud_parameters,                                                      &
140        ONLY:  c_sedimentation, curvature_solution_effects,                    &
141               limiter_sedimentation, nc_const, ventilation_effect
142   
143    USE control_parameters
144   
145    USE grid_variables,                                                        &
146        ONLY:  dx, dy
147   
148    USE indices,                                                               &
149        ONLY:  nz, nx, ny
150   
151    USE model_1d,                                                              &
152        ONLY:  damp_level_1d, dt_pr_1d, dt_run_control_1d, end_time_1d
153   
154    USE netcdf_control
155   
156    USE particle_attributes,                                                   &
157        ONLY:  time_sort_particles
158   
159    USE pegrid
160
161    USE radiation_model_mod,                                                   &
162        ONLY: time_radiation
163
164    USE statistics,                                                            &
165        ONLY:  statistic_regions, hom, hom_sum, u_max, u_max_ijk, v_max,       &
166               v_max_ijk, w_max, w_max_ijk
167
168   
169    IMPLICIT NONE
170
171    CHARACTER (LEN=10) ::  binary_version   !<
172
173
174    binary_version = '4.0'
175
176    WRITE ( 14 )  binary_version
177
178    WRITE ( 14 )  'numprocs                      '
179    WRITE ( 14 )  numprocs
180    WRITE ( 14 )  'hor_index_bounds              '
181    WRITE ( 14 )  hor_index_bounds
182    WRITE ( 14 )  'nz                            '
183    WRITE ( 14 )  nz
184    WRITE ( 14 )  'max_pr_user                   '
185    WRITE ( 14 )  max_pr_user
186    WRITE ( 14 )  'statistic_regions             '
187    WRITE ( 14 )  statistic_regions
188
189!
190!-- Caution: After changes in the following parameter-list, the
191!-- -------  version number stored in the variable binary_version has to be
192!--          increased. The same changes must also be done in the parameter-
193!--          list in read_var_list.
194
195    WRITE ( 14 )  'advected_distance_x           '
196    WRITE ( 14 )  advected_distance_x
197    WRITE ( 14 )  'advected_distance_y           '
198    WRITE ( 14 )  advected_distance_y
199    WRITE ( 14 )  'alpha_surface                 '
200    WRITE ( 14 )  alpha_surface
201    WRITE ( 14 )  'average_count_pr              '
202    WRITE ( 14 )  average_count_pr
203    WRITE ( 14 )  'average_count_sp              '
204    WRITE ( 14 )  average_count_sp
205    WRITE ( 14 )  'average_count_3d              '
206    WRITE ( 14 )  average_count_3d
207    WRITE ( 14 )  'bc_e_b                        '
208    WRITE ( 14 )  bc_e_b
209    WRITE ( 14 )  'bc_lr                         '
210    WRITE ( 14 )  bc_lr
211    WRITE ( 14 )  'bc_ns                         '
212    WRITE ( 14 )  bc_ns
213    WRITE ( 14 )  'bc_p_b                        '
214    WRITE ( 14 )  bc_p_b
215    WRITE ( 14 )  'bc_p_t                        '
216    WRITE ( 14 )  bc_p_t
217    WRITE ( 14 )  'bc_pt_b                       '
218    WRITE ( 14 )  bc_pt_b
219    WRITE ( 14 )  'bc_pt_t                       '
220    WRITE ( 14 )  bc_pt_t
221    WRITE ( 14 )  'bc_pt_t_val                   '
222    WRITE ( 14 )  bc_pt_t_val
223    WRITE ( 14 )  'bc_q_b                        '
224    WRITE ( 14 )  bc_q_b
225    WRITE ( 14 )  'bc_q_t                        '
226    WRITE ( 14 )  bc_q_t
227    WRITE ( 14 )  'bc_q_t_val                    '
228    WRITE ( 14 )  bc_q_t_val
229    WRITE ( 14 )  'bc_s_b                        '
230    WRITE ( 14 )  bc_s_b
231    WRITE ( 14 )  'bc_s_t                        '
232    WRITE ( 14 )  bc_s_t
233    WRITE ( 14 )  'bc_sa_t                       '
234    WRITE ( 14 )  bc_sa_t
235    WRITE ( 14 )  'bc_uv_b                       '
236    WRITE ( 14 )  bc_uv_b
237    WRITE ( 14 )  'bc_uv_t                       '
238    WRITE ( 14 )  bc_uv_t
239    WRITE ( 14 )  'bottom_salinityflux           '
240    WRITE ( 14 )  bottom_salinityflux
241    WRITE ( 14 )  'building_height               '
242    WRITE ( 14 )  building_height
243    WRITE ( 14 )  'building_length_x             '
244    WRITE ( 14 )  building_length_x
245    WRITE ( 14 )  'building_length_y             '
246    WRITE ( 14 )  building_length_y
247    WRITE ( 14 )  'building_wall_left            '
248    WRITE ( 14 )  building_wall_left
249    WRITE ( 14 )  'building_wall_south           '
250    WRITE ( 14 )  building_wall_south
251    WRITE ( 14 )  'call_psolver_at_all_substeps  '
252    WRITE ( 14 )  call_psolver_at_all_substeps
253    WRITE ( 14 )  'canyon_height                 '
254    WRITE ( 14 )  canyon_height
255    WRITE ( 14 )  'canyon_width_x                '
256    WRITE ( 14 )  canyon_width_x
257    WRITE ( 14 )  'canyon_width_y                '
258    WRITE ( 14 )  canyon_width_y
259    WRITE ( 14 )  'canyon_wall_left              '
260    WRITE ( 14 )  canyon_wall_left
261    WRITE ( 14 )  'canyon_wall_south             '
262    WRITE ( 14 )  canyon_wall_south
263    WRITE ( 14 )  'c_sedimentation               '
264    WRITE ( 14 )  c_sedimentation
265    WRITE ( 14 )  'cfl_factor                    '
266    WRITE ( 14 )  cfl_factor
267    WRITE ( 14 )  'cloud_droplets                '
268    WRITE ( 14 )  cloud_droplets
269    WRITE ( 14 )  'cloud_physics                 '
270    WRITE ( 14 )  cloud_physics
271    WRITE ( 14 )  'cloud_scheme                  '
272    WRITE ( 14 )  cloud_scheme
273    WRITE ( 14 )  'collective_wait               '
274    WRITE ( 14 )  collective_wait
275    WRITE ( 14 )  'conserve_volume_flow          '
276    WRITE ( 14 )  conserve_volume_flow
277    WRITE ( 14 )  'conserve_volume_flow_mode     '
278    WRITE ( 14 )  conserve_volume_flow_mode
279    WRITE ( 14 )  'coupling_start_time           '
280    WRITE ( 14 )  'constant_flux_layer           '
281    WRITE ( 14 )  constant_flux_layer
282    WRITE ( 14 )  coupling_start_time
283    WRITE ( 14 )  'current_timestep_number       '
284    WRITE ( 14 )  current_timestep_number
285    WRITE ( 14 )  'curvature_solution_effects    '
286    WRITE ( 14 )  curvature_solution_effects
287    WRITE ( 14 )  'cycle_mg                      '
288    WRITE ( 14 )  cycle_mg
289    WRITE ( 14 )  'damp_level_1d                 '
290    WRITE ( 14 )  damp_level_1d
291    WRITE ( 14 )  'dissipation_1d                '
292    WRITE ( 14 )  dissipation_1d
293    WRITE ( 14 )  'do2d_xy_time_count            '
294    WRITE ( 14 )  do2d_xy_time_count
295    WRITE ( 14 )  'do2d_xz_time_count            '
296    WRITE ( 14 )  do2d_xz_time_count
297    WRITE ( 14 )  'do2d_yz_time_count            '
298    WRITE ( 14 )  do2d_yz_time_count
299    WRITE ( 14 )  'do3d_time_count               '
300    WRITE ( 14 )  do3d_time_count
301    WRITE ( 14 )  'dp_external                   '
302    WRITE ( 14 )  dp_external
303    WRITE ( 14 )  'dp_level_b                    '
304    WRITE ( 14 )  dp_level_b
305    WRITE ( 14 )  'dp_smooth                     '
306    WRITE ( 14 )  dp_smooth
307    WRITE ( 14 )  'dpdxy                         '
308    WRITE ( 14 )  dpdxy
309    WRITE ( 14 )  'drizzle                       '
310    WRITE ( 14 )  drizzle
311    WRITE ( 14 )  'dt_pr_1d                      '
312    WRITE ( 14 )  dt_pr_1d
313    WRITE ( 14 )  'dt_run_control_1d             '
314    WRITE ( 14 )  dt_run_control_1d
315    WRITE ( 14 )  'dt_3d                         '
316    WRITE ( 14 )  dt_3d
317    WRITE ( 14 )  'dvrp_filecount                '
318    WRITE ( 14 )  dvrp_filecount
319    WRITE ( 14 )  'dx                            '
320    WRITE ( 14 )  dx
321    WRITE ( 14 )  'dy                            '
322    WRITE ( 14 )  dy
323    WRITE ( 14 )  'dz                            '
324    WRITE ( 14 )  dz
325    WRITE ( 14 )  'dz_max                        '
326    WRITE ( 14 )  dz_max
327    WRITE ( 14 )  'dz_stretch_factor             '
328    WRITE ( 14 )  dz_stretch_factor
329    WRITE ( 14 )  'dz_stretch_level              '
330    WRITE ( 14 )  dz_stretch_level
331    WRITE ( 14 )  'e_min                         '
332    WRITE ( 14 )  e_min
333    WRITE ( 14 )  'end_time_1d                   '
334    WRITE ( 14 )  end_time_1d
335    WRITE ( 14 )  'fft_method                    '
336    WRITE ( 14 )  fft_method
337    WRITE ( 14 )  'first_call_lpm                '
338    WRITE ( 14 )  first_call_lpm
339    WRITE ( 14 )  'galilei_transformation        '
340    WRITE ( 14 )  galilei_transformation
341    WRITE ( 14 )  'hom                           '
342    WRITE ( 14 )  hom
343    WRITE ( 14 )  'hom_sum                       '
344    WRITE ( 14 )  hom_sum
345    WRITE ( 14 )  'humidity                      '
346    WRITE ( 14 )  humidity
347    IF ( ALLOCATED( inflow_damping_factor ) )  THEN
348       WRITE ( 14 )  'inflow_damping_factor         '
349       WRITE ( 14 )  inflow_damping_factor
350    ENDIF
351    WRITE ( 14 )  'inflow_damping_height         '
352    WRITE ( 14 )  inflow_damping_height
353    WRITE ( 14 )  'inflow_damping_width          '
354    WRITE ( 14 )  inflow_damping_width
355    WRITE ( 14 )  'inflow_disturbance_begin      '
356    WRITE ( 14 )  inflow_disturbance_begin
357    WRITE ( 14 )  'inflow_disturbance_end        '
358    WRITE ( 14 )  inflow_disturbance_end
359    WRITE ( 14 )  'km_constant                   '
360    WRITE ( 14 )  km_constant
361    WRITE ( 14 )  'large_scale_forcing           '
362    WRITE ( 14 )  large_scale_forcing
363    WRITE ( 14 )  'large_scale_subsidence        '
364    WRITE ( 14 )  large_scale_subsidence
365    WRITE ( 14 )  'limiter_sedimentation         '
366    WRITE ( 14 )  limiter_sedimentation
367    WRITE ( 14 )  'loop_optimization             '
368    WRITE ( 14 )  loop_optimization
369    WRITE ( 14 )  'masking_method                '
370    WRITE ( 14 )  masking_method
371    IF ( ALLOCATED( mean_inflow_profiles ) )  THEN
372       WRITE ( 14 )  'mean_inflow_profiles          '
373       WRITE ( 14 )  mean_inflow_profiles
374    ENDIF
375    WRITE ( 14 )  'mg_cycles                     '
376    WRITE ( 14 )  mg_cycles
377    WRITE ( 14 )  'mg_switch_to_pe0_level        '
378    WRITE ( 14 )  mg_switch_to_pe0_level
379    WRITE ( 14 )  'mixing_length_1d              '
380    WRITE ( 14 )  mixing_length_1d
381    WRITE ( 14 )  'momentum_advec                '
382    WRITE ( 14 )  momentum_advec
383    WRITE ( 14 )  'most_method                   '
384    WRITE ( 14 )  most_method
385    WRITE ( 14 )  'nc_const                      '
386    WRITE ( 14 )  nc_const
387    WRITE ( 14 )  'netcdf_precision              '
388    WRITE ( 14 )  netcdf_precision
389    WRITE ( 14 )  'neutral                       '
390    WRITE ( 14 )  neutral
391    WRITE ( 14 )  'ngsrb                         '
392    WRITE ( 14 )  ngsrb
393    WRITE ( 14 )  'nsor                          '
394    WRITE ( 14 )  nsor
395    WRITE ( 14 )  'nsor_ini                      '
396    WRITE ( 14 )  nsor_ini
397    WRITE ( 14 )  'nudging                       '
398    WRITE ( 14 )  nudging
399    WRITE ( 14 )  'nx                            '
400    WRITE ( 14 )  nx
401    WRITE ( 14 )  'ny                            '
402    WRITE ( 14 )  ny
403    WRITE ( 14 )  'ocean                         '
404    WRITE ( 14 )  ocean
405    WRITE ( 14 )  'old_dt                        '
406    WRITE ( 14 )  old_dt
407    WRITE ( 14 )  'omega                         '
408    WRITE ( 14 )  omega
409    WRITE ( 14 )  'omega_sor                     '
410    WRITE ( 14 )  omega_sor
411    WRITE ( 14 )  'output_for_t0                 '
412    WRITE ( 14 )  output_for_t0
413    WRITE ( 14 )  'passive_scalar                '
414    WRITE ( 14 )  passive_scalar
415    WRITE ( 14 )  'phi                           '
416    WRITE ( 14 )  phi
417    WRITE ( 14 )  'prandtl_number                '
418    WRITE ( 14 )  prandtl_number
419    WRITE ( 14 )  'precipitation                 '
420    WRITE ( 14 )  precipitation
421    WRITE ( 14 )  'psolver                       '
422    WRITE ( 14 )  psolver
423    WRITE ( 14 )  'pt_damping_factor             '
424    WRITE ( 14 )  pt_damping_factor
425    WRITE ( 14 )  'pt_damping_width              '
426    WRITE ( 14 )  pt_damping_width
427    WRITE ( 14 )  'pt_init                       '
428    WRITE ( 14 )  pt_init
429    WRITE ( 14 )  'pt_reference                  '
430    WRITE ( 14 )  pt_reference
431    WRITE ( 14 )  'pt_surface                    '
432    WRITE ( 14 )  pt_surface
433    WRITE ( 14 )  'pt_surface_initial_change     '
434    WRITE ( 14 )  pt_surface_initial_change
435    WRITE ( 14 )  'pt_vertical_gradient          '
436    WRITE ( 14 )  pt_vertical_gradient
437    WRITE ( 14 )  'pt_vertical_gradient_level    '
438    WRITE ( 14 )  pt_vertical_gradient_level
439    WRITE ( 14 )  'pt_vertical_gradient_level_ind'
440    WRITE ( 14 )  pt_vertical_gradient_level_ind
441    WRITE ( 14 )  'q_init                        '
442    WRITE ( 14 )  q_init
443    WRITE ( 14 )  'q_surface                     '
444    WRITE ( 14 )  q_surface
445    WRITE ( 14 )  'q_surface_initial_change      '
446    WRITE ( 14 )  q_surface_initial_change
447    WRITE ( 14 )  'q_vertical_gradient           '
448    WRITE ( 14 )  q_vertical_gradient
449    WRITE ( 14 )  'q_vertical_gradient_level     '
450    WRITE ( 14 )  q_vertical_gradient_level
451    WRITE ( 14 )  'q_vertical_gradient_level_ind '
452    WRITE ( 14 )  q_vertical_gradient_level_ind
453    WRITE ( 14 )  'cloud_top_radiation           '
454    WRITE ( 14 )  cloud_top_radiation
455    WRITE ( 14 )  'random_generator              '
456    WRITE ( 14 )  random_generator
457    WRITE ( 14 )  'random_heatflux               '
458    WRITE ( 14 )  random_heatflux
459    WRITE ( 14 )  'rayleigh_damping_factor       '
460    WRITE ( 14 )  rayleigh_damping_factor
461    WRITE ( 14 )  'rayleigh_damping_height       '
462    WRITE ( 14 )  rayleigh_damping_height
463    WRITE ( 14 )  'recycling_width               '
464    WRITE ( 14 )  recycling_width
465    WRITE ( 14 )  'reference_state               '
466    WRITE ( 14 )  reference_state
467    WRITE ( 14 )  'ref_state                     '
468    WRITE ( 14 )  ref_state
469    WRITE ( 14 )  'residual_limit                '
470    WRITE ( 14 )  residual_limit
471    WRITE ( 14 )  'roughness_length              '
472    WRITE ( 14 )  roughness_length
473    WRITE ( 14 )  'runnr                         '
474    WRITE ( 14 )  runnr
475    WRITE ( 14 )  'run_coupled                   '
476    WRITE ( 14 )  run_coupled
477    WRITE ( 14 )  'sa_init                       '
478    WRITE ( 14 )  sa_init
479    WRITE ( 14 )  'sa_surface                    '
480    WRITE ( 14 )  sa_surface
481    WRITE ( 14 )  'sa_vertical_gradient          '
482    WRITE ( 14 )  sa_vertical_gradient
483    WRITE ( 14 )  'sa_vertical_gradient_level    '
484    WRITE ( 14 )  sa_vertical_gradient_level
485    WRITE ( 14 )  'scalar_advec                  '
486    WRITE ( 14 )  scalar_advec
487    WRITE ( 14 )  'simulated_time                '
488    WRITE ( 14 )  simulated_time
489    WRITE ( 14 )  'surface_heatflux              '
490    WRITE ( 14 )  surface_heatflux
491    WRITE ( 14 )  'surface_pressure              '
492    WRITE ( 14 )  surface_pressure
493    WRITE ( 14 )  'surface_scalarflux            '
494    WRITE ( 14 )  surface_scalarflux   
495    WRITE ( 14 )  'surface_waterflux             '
496    WRITE ( 14 )  surface_waterflux   
497    WRITE ( 14 )  's_surface                     '
498    WRITE ( 14 )  s_surface
499    WRITE ( 14 )  's_surface_initial_change      '
500    WRITE ( 14 )  s_surface_initial_change
501    WRITE ( 14 )  's_vertical_gradient           '
502    WRITE ( 14 )  s_vertical_gradient
503    WRITE ( 14 )  's_vertical_gradient_level     '
504    WRITE ( 14 )  s_vertical_gradient_level
505    WRITE ( 14 )  'time_coupling                 '
506    WRITE ( 14 )  time_coupling
507    WRITE ( 14 )  'time_disturb                  '
508    WRITE ( 14 )  time_disturb
509    WRITE ( 14 )  'time_domask                   '
510    WRITE ( 14 )  time_domask
511    WRITE ( 14 )  'time_dopr                     '
512    WRITE ( 14 )  time_dopr
513    WRITE ( 14 )  'time_dopr_av                  '
514    WRITE ( 14 )  time_dopr_av
515    WRITE ( 14 )  'time_dopr_listing             '
516    WRITE ( 14 )  time_dopr_listing
517    WRITE ( 14 )  'time_dopts                    '
518    WRITE ( 14 )  time_dopts
519    WRITE ( 14 )  'time_dosp                     '
520    WRITE ( 14 )  time_dosp
521    WRITE ( 14 )  'time_dots                     '
522    WRITE ( 14 )  time_dots
523    WRITE ( 14 )  'time_do2d_xy                  '
524    WRITE ( 14 )  time_do2d_xy
525    WRITE ( 14 )  'time_do2d_xz                  '
526    WRITE ( 14 )  time_do2d_xz
527    WRITE ( 14 )  'time_do2d_yz                  '
528    WRITE ( 14 )  time_do2d_yz
529    WRITE ( 14 )  'time_do3d                     '
530    WRITE ( 14 )  time_do3d
531    WRITE ( 14 )  'time_do_av                    '
532    WRITE ( 14 )  time_do_av
533    WRITE ( 14 )  'time_do_sla                   '
534    WRITE ( 14 )  time_do_sla
535    WRITE ( 14 )  'time_dvrp                     '
536    WRITE ( 14 )  time_dvrp
537    WRITE ( 14 )  'time_radiation                '
538    WRITE ( 14 )  time_radiation
539    WRITE ( 14 )  'time_restart                  '
540    WRITE ( 14 )  time_restart
541    WRITE ( 14 )  'time_run_control              '
542    WRITE ( 14 )  time_run_control
543    WRITE ( 14 )  'time_since_reference_point    '
544    WRITE ( 14 )  time_since_reference_point
545    WRITE ( 14 )  'time_sort_particles           '
546    WRITE ( 14 )  time_sort_particles
547    WRITE ( 14 )  'timestep_scheme               '
548    WRITE ( 14 )  timestep_scheme
549    WRITE ( 14 )  'topography                    '
550    WRITE ( 14 )  topography
551    WRITE ( 14 )  'topography_grid_convention    '
552    WRITE ( 14 )  topography_grid_convention
553    WRITE ( 14 )  'top_heatflux                  '
554    WRITE ( 14 )  top_heatflux
555    WRITE ( 14 )  'top_momentumflux_u            '
556    WRITE ( 14 )  top_momentumflux_u
557    WRITE ( 14 )  'top_momentumflux_v            '
558    WRITE ( 14 )  top_momentumflux_v
559    WRITE ( 14 )  'top_salinityflux              '
560    WRITE ( 14 )  top_salinityflux
561    WRITE ( 14 )  'tsc                           '
562    WRITE ( 14 )  tsc
563    WRITE ( 14 )  'turbulence                    '
564    WRITE ( 14 )  turbulence
565    WRITE ( 14 )  'turbulent_inflow              '
566    WRITE ( 14 )  turbulent_inflow
567    WRITE ( 14 )  'u_bulk                        '
568    WRITE ( 14 )  u_bulk
569    WRITE ( 14 )  'u_init                        '
570    WRITE ( 14 )  u_init
571    WRITE ( 14 )  'u_max                         '
572    WRITE ( 14 )  u_max
573    WRITE ( 14 )  'u_max_ijk                     '
574    WRITE ( 14 )  u_max_ijk
575    WRITE ( 14 )  'ug                            '
576    WRITE ( 14 )  ug
577    WRITE ( 14 )  'ug_surface                    '
578    WRITE ( 14 )  ug_surface
579    WRITE ( 14 )  'ug_vertical_gradient          '
580    WRITE ( 14 )  ug_vertical_gradient
581    WRITE ( 14 )  'ug_vertical_gradient_level    '
582    WRITE ( 14 )  ug_vertical_gradient_level
583    WRITE ( 14 )  'ug_vertical_gradient_level_ind'
584    WRITE ( 14 )  ug_vertical_gradient_level_ind
585    WRITE ( 14 )  'use_surface_fluxes            '
586    WRITE ( 14 )  use_surface_fluxes
587    WRITE ( 14 )  'use_top_fluxes                '
588    WRITE ( 14 )  use_top_fluxes
589    WRITE ( 14 )  'use_ug_for_galilei_tr         '
590    WRITE ( 14 )  use_ug_for_galilei_tr
591    WRITE ( 14 )  'use_upstream_for_tke          '
592    WRITE ( 14 )  use_upstream_for_tke
593    WRITE ( 14 )  'v_bulk                        '
594    WRITE ( 14 )  v_bulk
595    WRITE ( 14 )  'v_init                        '
596    WRITE ( 14 )  v_init
597    WRITE ( 14 )  'v_max                         '
598    WRITE ( 14 )  v_max
599    WRITE ( 14 )  'v_max_ijk                     '
600    WRITE ( 14 )  v_max_ijk
601    WRITE ( 14 )  'ventilation_effect            '
602    WRITE ( 14 )  ventilation_effect
603    WRITE ( 14 )  'vg                            '
604    WRITE ( 14 )  vg
605    WRITE ( 14 )  'vg_surface                    '
606    WRITE ( 14 )  vg_surface
607    WRITE ( 14 )  'vg_vertical_gradient          '
608    WRITE ( 14 )  vg_vertical_gradient
609    WRITE ( 14 )  'vg_vertical_gradient_level    '
610    WRITE ( 14 )  vg_vertical_gradient_level
611    WRITE ( 14 )  'vg_vertical_gradient_level_ind'
612    WRITE ( 14 )  vg_vertical_gradient_level_ind
613    WRITE ( 14 )  'volume_flow_area              '
614    WRITE ( 14 )  volume_flow_area
615    WRITE ( 14 )  'volume_flow_initial           '
616    WRITE ( 14 )  volume_flow_initial
617    WRITE ( 14 )  'wall_adjustment               '
618    WRITE ( 14 )  wall_adjustment
619    WRITE ( 14 )  'subs_vertical_gradient        '
620    WRITE ( 14 )  subs_vertical_gradient
621    WRITE ( 14 )  'subs_vertical_gradient_level  '
622    WRITE ( 14 )  subs_vertical_gradient_level
623    WRITE ( 14 )  'subs_vertical_gradient_level_i'
624    WRITE ( 14 )  subs_vertical_gradient_level_i
625    WRITE ( 14 )  'w_max                         '
626    WRITE ( 14 )  w_max
627    WRITE ( 14 )  'w_max_ijk                     '
628    WRITE ( 14 )  w_max_ijk
629    WRITE ( 14 )  'zeta_max                      '
630    WRITE ( 14 )  zeta_max
631    WRITE ( 14 )  'zeta_min                      '
632    WRITE ( 14 )  zeta_min
633    WRITE ( 14 )  'z0h_factor                    '
634    WRITE ( 14 )  z0h_factor
635
636!
637!-- Set the end-of-file mark
638    WRITE ( 14 )  '*** end ***                   '
639
640
641 END SUBROUTINE write_var_list
Note: See TracBrowser for help on using the repository browser.