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

Last change on this file since 1329 was 1325, checked in by suehring, 10 years ago

last commit documented

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