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

Last change on this file since 1980 was 1960, checked in by suehring, 8 years ago

Separate balance equations for humidity and passive_scalar

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