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

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

last commit documented

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