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

Last change on this file since 1320 was 1320, checked in by raasch, 10 years ago

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

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