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

Last change on this file since 1612 was 1586, checked in by maronga, 9 years ago

last commit documented

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