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

Last change on this file since 1833 was 1833, checked in by raasch, 8 years ago

spectrum renamed spactra_par and further modularized, POINTER-attributes added in coupler-routines to avoid gfortran error messages

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