source: palm/trunk/SOURCE/modules.f90 @ 46

Last change on this file since 46 was 46, checked in by raasch, 17 years ago

updating parts of Marcus changes

  • Property svn:keywords set to Id
File size: 43.7 KB
Line 
1 MODULE advection
2
3
4!------------------------------------------------------------------------------!
5! Actual revisions:
6! -----------------
7! +netcdf_64bit_3d
8!
9! Former revisions:
10! -----------------
11! $Id: modules.f90 46 2007-03-05 06:00:47Z raasch $
12!
13! 37 2007-03-01 08:33:54Z raasch
14! +constant_top_heatflux, top_heatflux, use_top_fluxes, +arrays for top fluxes,
15! +nzt_diff, default of bc_pt_t renamed "initial_gradient"
16! Bugfix: p is not a pointer
17!
18! RCS Log replace by Id keyword, revision history cleaned up
19!
20! Revision 1.95  2007/02/11 13:18:30  raasch
21! version 3.1b (last under RCS control)
22!
23! Revision 1.1  1997/07/24 11:21:26  raasch
24! Initial revision
25!
26!
27! Description:
28! ------------
29! Definition of variables for special advection schemes
30!------------------------------------------------------------------------------!
31
32    REAL ::  spl_gamma_x, spl_gamma_y
33
34    REAL, DIMENSION(:), ALLOCATABLE   ::  aex, bex, dex, eex, spl_z_x, spl_z_y
35    REAL, DIMENSION(:,:), ALLOCATABLE ::  spl_tri_x, spl_tri_y, spl_tri_zu, &
36                                          spl_tri_zw
37
38    SAVE
39
40 END MODULE advection
41
42
43
44
45 MODULE array_kind
46
47!------------------------------------------------------------------------------!
48! Description:
49! ------------
50! Definition of type parameters (used for the definition of single or double
51! precision variables)
52!------------------------------------------------------------------------------!
53
54    INTEGER, PARAMETER ::  dpk = SELECTED_REAL_KIND( 12 ), &
55                           spk = SELECTED_REAL_KIND( 6 )
56
57    SAVE
58
59 END MODULE array_kind
60
61
62
63
64 MODULE arrays_3d
65
66!------------------------------------------------------------------------------!
67! Description:
68! ------------
69! Definition of all arrays defined on the computational grid
70!------------------------------------------------------------------------------!
71
72    USE array_kind
73
74    REAL, DIMENSION(:), ALLOCATABLE ::                                         &
75          ddzu, dd2zu, dzu, ddzw, dzw, km_damp_x, km_damp_y, l_grid, pt_init,  &
76          q_init, rdf, ug, u_init, uvmean_outflow, uvmean_outflow_l, vg,       &
77          v_init, zu, zw
78
79    REAL, DIMENSION(:,:), ALLOCATABLE ::                                       &
80          dzu_mg, dzw_mg, f1_mg, f2_mg, f3_mg, pt_slope_ref, qs, ts, us, z0
81
82    REAL, DIMENSION(:,:), ALLOCATABLE, TARGET ::                               &
83          qsws_1, qsws_2, qswst_1, qswst_2, rif_1, rif_2, shf_1, shf_2,        &
84          tswst_1, tswst_2, usws_1, usws_2, vsws_1, vsws_2
85
86    REAL, DIMENSION(:,:), POINTER ::                                           &
87          qsws, qsws_m, qswst, qswst_m, rif, rif_m, shf, shf_m, tswst,         &
88          tswst_m, usws, usws_m, vsws, vsws_m
89
90    REAL, DIMENSION(:,:,:), ALLOCATABLE ::                                     &
91          d, diss, l_wall, tend
92
93    REAL, DIMENSION(:,:,:), ALLOCATABLE, TARGET ::                             &
94          ql_v, ql_vp
95
96    REAL, DIMENSION(:,:,:), ALLOCATABLE, TARGET ::                             &
97          e_1, e_2, e_3, kh_1, kh_2, km_1, km_2, p, pt_1, pt_2, pt_3, q_1,     &
98          q_2, q_3, ql_1, ql_2, u_1, u_2, u_3, v_1, v_2, v_3, vpt_1, vpt_2,    &
99          w_1, w_2, w_3
100
101    REAL, DIMENSION(:,:,:), POINTER ::                                         &
102          e, e_m, e_p, kh, kh_m, km, km_m, pt, pt_m, pt_p, q, q_m, q_p, ql,    &
103          ql_c, te_m, tpt_m, tq_m, tu_m, tv_m, tw_m, u, u_m, u_p, v, v_m, v_p, &
104          vpt, vpt_m, w, w_m, w_p
105                                                   
106
107    SAVE
108
109 END MODULE arrays_3d
110
111
112
113
114 MODULE averaging
115
116!------------------------------------------------------------------------------!
117! Description:
118! ------------
119! Definition of variables needed for time-averaging of 2d/3d data
120!------------------------------------------------------------------------------!
121
122    REAL, DIMENSION(:,:), ALLOCATABLE ::  lwp_av, ts_av, us_av
123
124    REAL, DIMENSION(:,:,:), ALLOCATABLE, TARGET :: &
125          e_av, p_av, pc_av, pr_av, pt_av, q_av, ql_av, ql_c_av, ql_v_av, &
126          ql_vp_av, qv_av, s_av, u_av, v_av, vpt_av, w_av
127
128 END MODULE averaging
129
130
131
132
133 MODULE cloud_parameters
134
135!------------------------------------------------------------------------------!
136! Description:
137! ------------
138! Definition of variables and constants for cloud physics
139!------------------------------------------------------------------------------!
140
141    REAL  ::  b_cond, cp = 1005.0, diff_coeff_l = 0.23E-4,                     &
142              effective_coll_efficiency, l_d_cp, l_d_r, l_d_rv, l_v = 2.5E+06, &
143              mass_of_solute, molecular_weight_of_solute,                      &
144              prec_time_const = 0.001, ql_crit = 0.0005, rho_l = 1.0E3,        &
145              r_d = 287.0, r_v = 461.51, rho_surface,                          &
146              thermal_conductivity_l = 2.43E-2
147
148    REAL, DIMENSION(:), ALLOCATABLE :: hydro_press, pt_d_t, t_d_pt
149
150    SAVE
151
152 END MODULE cloud_parameters
153
154
155
156
157 MODULE constants
158
159!------------------------------------------------------------------------------!
160! Description:
161! ------------
162! Definition of general constants
163!------------------------------------------------------------------------------!
164
165    REAL    ::  pi = 3.141592654
166
167    SAVE
168
169 END MODULE constants
170
171
172
173
174 MODULE control_parameters
175
176!------------------------------------------------------------------------------!
177! Description:
178! ------------
179! Definition of parameters for program control
180!------------------------------------------------------------------------------!
181
182    TYPE plot_precision
183       CHARACTER (LEN=6) ::  variable
184       INTEGER           ::  precision
185    END TYPE plot_precision
186
187    TYPE(plot_precision), DIMENSION(100) ::  plot_3d_precision =               &
188                        (/ plot_precision( 'u', 2 ), plot_precision( 'v', 2 ), &
189                           plot_precision( 'w', 2 ), plot_precision( 'p', 5 ), &
190                           plot_precision( 'pt', 2 ),                          &
191                           ( plot_precision( ' ', 1 ), i9 = 1,95 ) /)
192
193    TYPE file_status
194       LOGICAL ::  opened, opened_before
195    END TYPE file_status
196
197    TYPE(file_status), DIMENSION(200) :: openfile = file_status(.FALSE.,.FALSE.)
198
199
200    CHARACTER (LEN=1)   ::  cycle_mg = 'w', timestep_reason = ' '
201    CHARACTER (LEN=5)   ::  write_binary = 'false'
202    CHARACTER (LEN=6)   ::  grid_matching = 'match'
203    CHARACTER (LEN=8)   ::  run_date, run_time
204    CHARACTER (LEN=9)   ::  simulated_time_chr
205    CHARACTER (LEN=12)  ::  version = 'PALM   3.1c'
206    CHARACTER (LEN=16)  ::  momentum_advec = 'pw-scheme', &
207                            psolver = 'poisfft', &
208                            scalar_advec = 'pw-scheme'
209    CHARACTER (LEN=20)  ::  bc_e_b = 'neumann', bc_lr = 'cyclic', &
210                            bc_ns = 'cyclic', bc_p_b = 'neumann', &
211                            bc_p_t = 'dirichlet', bc_pt_b = 'dirichlet', &
212                            bc_pt_t = 'initial_gradient', &
213                            bc_q_b = 'dirichlet', bc_q_t = 'neumann', &
214                            bc_s_b = 'dirichlet', bc_s_t = 'neumann', &
215                            bc_uv_b = 'dirichlet', bc_uv_t = 'dirichlet', &
216                            dissipation_1d = 'as_in_3d_model', &
217                            fft_method = 'system-specific', &
218                            mixing_length_1d = 'as_in_3d_model', &
219                            random_generator = 'numerical-recipes', &
220                            timestep_scheme = 'runge-kutta-3'
221    CHARACTER (LEN=40)  ::  avs_data_file, topography = 'flat'
222    CHARACTER (LEN=64)  ::  host
223    CHARACTER (LEN=80)  ::  log_message, run_description_header, run_identifier
224    CHARACTER (LEN=100) ::  initializing_actions = ' '
225
226    CHARACTER (LEN=7),  DIMENSION(100) ::  do3d_comp_prec = ' '
227    CHARACTER (LEN=10), DIMENSION(10)  ::  data_output_format = ' '
228    CHARACTER (LEN=10), DIMENSION(100) ::  data_output = ' ',    &
229                                           data_output_pr = ' ', &
230                                           data_output_ts = ' ', &
231                                           data_output_user = ' ', doav = ' '
232    CHARACTER (LEN=20), DIMENSION(10)  ::  netcdf_precision = ' '
233
234    CHARACTER (LEN=10), DIMENSION(0:1,100) ::  do2d = ' ', do3d = ' '
235
236    INTEGER ::  average_count_pr = 0, average_count_sp = 0, &
237                average_count_3d = 0, current_timestep_number = 0, &
238                dist_range = 0, disturbance_level_ind_b, &
239                disturbance_level_ind_t, doav_n = 0, dopr_n = 0, &
240                dopr_time_count = 0, dopts_time_count = 0, &
241                dosp_time_count = 0, dots_n = 0, dots_time_count = 0, &
242                do2d_xy_n = 0, do2d_xz_n = 0, do2d_yz_n = 0, do3d_avs_n = 0, &
243                dvrp_filecount = 0, dz_stretch_level_index, gamma_mg, &
244                grid_level, ibc_e_b, ibc_p_b, ibc_p_t, ibc_pt_b, ibc_pt_t, &
245                ibc_q_b, ibc_q_t, ibc_uv_b, ibc_uv_t, &
246                inflow_disturbance_begin = -1, inflow_disturbance_end = -1, &
247                intermediate_timestep_count, intermediate_timestep_count_max, &
248                iran = -1234567, last_dt_change = 0, maximum_grid_level, &
249                mgcycles = 0, mg_cycles = -1, mg_switch_to_pe0_level = 0, &
250                ngsrb = 2, nsor = 20, nsor_ini = 100, n_sor, &
251                normalizing_region = 0, nz_do1d, nz_do3d = -9999, &
252                outflow_damping_width = -1, prt_time_count = 0, runnr = 0, &
253                skip_do_avs = 0, timestep_count = 0
254
255    INTEGER ::  dist_nxl(0:1), dist_nxr(0:1), dist_nyn(0:1), dist_nys(0:1), &
256                do2d_no(0:1) = 0, do2d_xy_time_count(0:1), &
257                do2d_xz_time_count(0:1), do2d_yz_time_count(0:1), &
258                do3d_no(0:1) = 0, do3d_time_count(0:1), &
259                pt_vertical_gradient_level_ind(10) = -9999, &
260                q_vertical_gradient_level_ind(10) = -9999, &
261                section(100,3), section_xy(100) = -9999, &
262                section_xz(100) = -9999, section_yz(100) = -9999, &
263                ug_vertical_gradient_level_ind(10) = -9999, &
264                vg_vertical_gradient_level_ind(10) = -9999
265
266    INTEGER, DIMENSION(:), ALLOCATABLE ::  grid_level_count
267
268    LOGICAL ::  adjust_mixing_length = .FALSE., avs_output = .FALSE., &
269                call_psolver_at_all_substeps = .TRUE., &
270                cloud_droplets = .FALSE., cloud_physics = .FALSE., &
271                conserve_volume_flow = .FALSE., constant_diffusion = .FALSE., &
272                constant_heatflux = .TRUE., constant_top_heatflux = .TRUE., &
273                constant_waterflux = .TRUE., create_disturbances = .TRUE., &
274                cut_spline_overshoot = .TRUE., &
275                data_output_2d_on_each_pe = .TRUE., do2d_at_begin = .FALSE., &
276                do3d_at_begin = .FALSE., do3d_compress = .FALSE., &
277                do_sum = .FALSE., dt_changed = .FALSE., dt_fixed = .FALSE., &
278                disturbance_created = .FALSE., &
279                first_call_advec_particles = .TRUE., &
280                force_print_header = .FALSE., galilei_transformation = .FALSE.,&
281                inflow_l = .FALSE., inflow_n = .FALSE., inflow_r = .FALSE., &
282                inflow_s = .FALSE., iso2d_output = .FALSE., &
283                mg_switch_to_pe0 = .FALSE., moisture = .FALSE., &
284                netcdf_output = .FALSE., netcdf_64bit = .FALSE., &
285                netcdf_64bit_3d = .TRUE., &
286                outflow_l = .FALSE., outflow_n = .FALSE., outflow_r = .FALSE., &
287                outflow_s = .FALSE., passive_scalar = .FALSE., &
288                prandtl_layer = .TRUE., precipitation = .FALSE., &
289                profil_output = .FALSE., radiation = .FALSE., &
290                random_heatflux = .FALSE., run_control_header = .FALSE., &
291                sloping_surface = .FALSE., stop_dt = .FALSE., &
292                terminate_run = .FALSE., use_prior_plot1d_parameters = .FALSE.,&
293                use_surface_fluxes = .FALSE., use_top_fluxes = .FALSE., &
294                use_ug_for_galilei_tr = .TRUE., &
295                use_upstream_for_tke = .FALSE., wall_adjustment = .TRUE.
296
297    LOGICAL ::  data_output_xy(0:1) = .FALSE., data_output_xz(0:1) = .FALSE., &
298                data_output_yz(0:1) = .FALSE.
299
300    REAL ::  advected_distance_x = 0.0, advected_distance_y = 0.0, &
301             alpha_surface = 0.0, asselin_filter_factor = 0.1, &
302             averaging_interval = 0.0, averaging_interval_pr = 9999999.9, &
303             averaging_interval_sp = 9999999.9, bc_pt_t_val, bc_q_t_val, &
304             building_height = 50.0, building_length_x = 50.0, &
305             building_length_y = 50.0, building_wall_left = 9999999.9, &
306             building_wall_south = 9999999.9, cfl_factor = -1.0, &
307             cos_alpha_surface, disturbance_amplitude = 0.25, &
308             disturbance_energy_limit = 0.01, disturbance_level_b = -1.0, &
309             disturbance_level_t = -1.0, dt = -1.0, dt_averaging_input = 0.0, &
310             dt_averaging_input_pr = 9999999.9, dt_data_output = 9999999.9, &
311             dt_data_output_av = 9999999.9, dt_disturb = 9999999.9, &
312             dt_dopr = 9999999.9, dt_dopr_listing = 9999999.9, &
313             dt_dopts = 9999999.9, dt_dosp = 9999999.9, dt_dots = 9999999.9, &
314             dt_do2d_xy = 9999999.9, dt_do2d_xz = 9999999.9, &
315             dt_do2d_yz = 9999999.9, dt_do3d = 9999999.9, dt_dvrp = 9999999.9, &
316             dt_max = 20.0, dt_prel = 9999999.9, dt_restart = 9999999.9, &
317             dt_run_control = 60.0, dt_3d = -1.0, dz = -1.0, &
318             dz_max = 9999999.9, dz_stretch_factor = 1.08, &
319             dz_stretch_level = 100000.0, e_min = 0.0, end_time = 0.0, &
320             f = 0.0, fs = 0.0, g = 9.81, kappa = 0.4, km_constant = -1.0, &
321             km_damp_max = -1.0, long_filter_factor = 0.0, &
322             maximum_cpu_time_allowed = 0.0, molecular_viscosity = 1.461E-5, &
323             old_dt = 1.0E-10, omega = 7.29212E-5, omega_sor = 1.8, &
324             overshoot_limit_e = 0.0, overshoot_limit_pt = 0.0, &
325             overshoot_limit_u = 0.0, overshoot_limit_v = 0.0, &
326             overshoot_limit_w = 0.0, particle_maximum_age = 9999999.9, &
327             phi = 55.0, prandtl_number = 1.0, pt_slope_offset = 0.0, &
328             pt_surface = 300.0, pt_surface_initial_change = 0.0, &
329             q_surface = 0.0, q_surface_initial_change = 0.0, &
330             rayleigh_damping_factor = -1.0, rayleigh_damping_height = -1.0, &
331             residual_limit = 1.0E-4, restart_time = 9999999.9, rif_max = 1.0, &
332             rif_min = -5.0, roughness_length = 0.1, simulated_time = 0.0, &
333             simulated_time_at_begin, sin_alpha_surface, &
334             skip_time_data_output = 0.0, skip_time_data_output_av = 9999999.9,&
335             skip_time_dopr = 9999999.9, skip_time_dosp = 9999999.9, &
336             skip_time_do2d_xy = 9999999.9, skip_time_do2d_xz = 9999999.9, &
337             skip_time_do2d_yz = 9999999.9, skip_time_do3d = 9999999.9, &
338             surface_heatflux = 9999999.9, surface_pressure = 1013.25, &
339             surface_scalarflux = 0.0, surface_waterflux = 0.0, &
340             s_surface = 0.0, s_surface_initial_change = 0.0, &
341             termination_time_needed = -1.0, time_disturb = 0.0, &
342             time_dopr = 0.0, time_dopr_av = 0.0, time_dopr_listing = 0.0, &
343             time_dopts = 0.0, time_dosp = 0.0, time_dosp_av = 0.0, &
344             time_dots = 0.0, time_do2d_xy = 0.0, time_do2d_xz = 0.0, &
345             time_do2d_yz = 0.0, time_do3d = 0.0, time_do_av = 0.0, &
346             time_do_sla = 0.0, time_dvrp = 0.0, time_prel = 0.0, &
347             time_restart = 9999999.9, time_run_control = 0.0, &
348             top_heatflux = 9999999.9, ug_surface = 0.0, u_gtrans = 0.0, &
349             ups_limit_e = 0.0, ups_limit_pt = 0.0, ups_limit_u = 0.0, &
350             ups_limit_v = 0.0, ups_limit_w = 0.0, vg_surface = 0.0, &
351             v_gtrans = 0.0, wall_adjustment_factor = 1.8, z_max_do1d = -1.0, &
352             z_max_do1d_normalized = -1.0, z_max_do2d = -1.0
353
354    REAL ::  do2d_xy_last_time(0:1) = -1.0, do2d_xz_last_time(0:1) = -1.0, &
355             do2d_yz_last_time(0:1) = -1.0, pt_vertical_gradient(10) = 0.0, &
356             pt_vertical_gradient_level(10) = -1.0, &
357             q_vertical_gradient(10) = 0.0, &
358             q_vertical_gradient_level(10) = -1.0, &
359             s_vertical_gradient(10) = 0.0, &
360             s_vertical_gradient_level(10) = -1.0, threshold(20) = 0.0, &
361             tsc(10) = (/ 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 /), &
362             ug_vertical_gradient(10) = 0.0, &
363             ug_vertical_gradient_level(10) = -1.0, &
364             vg_vertical_gradient(10) = 0.0, &
365             vg_vertical_gradient_level(10) = -1.0, &
366             volume_flow(1:2) = 0.0, volume_flow_area(1:2) = 0.0, &
367             volume_flow_initial(1:2) = 0.0, wall_heatflux(0:4) = 0.0
368
369
370    SAVE
371
372 END MODULE control_parameters
373
374
375
376
377 MODULE cpulog
378
379!------------------------------------------------------------------------------!
380! Description:
381! ------------
382! Definition of variables for cpu-time measurements
383!------------------------------------------------------------------------------!
384
385    REAL ::  initial_wallclock_time
386
387    TYPE logpoint
388       REAL               ::  isum, ivect, mean, mtime, mtimevec, sum, vector
389       INTEGER            ::  counts
390       CHARACTER (LEN=20) ::  place
391    END TYPE logpoint
392
393    TYPE(logpoint), DIMENSION(100) ::  log_point = logpoint( 0.0, 0.0, 0.0,   &
394                                       0.0, 0.0, 0.0, 0.0, 0, ' ' ),          &
395                                       log_point_s = logpoint( 0.0, 0.0, 0.0, &
396                                       0.0, 0.0, 0.0, 0.0, 0, ' ' )
397
398    SAVE
399
400 END MODULE cpulog
401
402
403
404
405 MODULE dvrp_variables
406
407!------------------------------------------------------------------------------!
408! Description:
409! ------------
410! Definition of variables used with dvrp-software
411!------------------------------------------------------------------------------!
412
413    CHARACTER (LEN=10) ::  dvrp_output = 'rtsp'
414
415    CHARACTER (LEN=20), DIMENSION(10) ::  mode_dvrp = &
416                                     (/ ( '                    ', i9 = 1,10 ) /)
417
418    CHARACTER (LEN=80) ::  dvrp_directory = 'default',                    &
419                           dvrp_file      = 'default',                    &
420                           dvrp_host      = 'origin.rvs.uni-hannover.de', &
421                           dvrp_password  = '********',                   &
422                           dvrp_username  = ' '
423
424    INTEGER ::  dvrp_colourtable_entries = 4, islice_dvrp, nx_dvrp, ny_dvrp, &
425                nz_dvrp
426
427    INTEGER, DIMENSION(10) ::  slicer_position_dvrp
428
429    LOGICAL ::  cyclic_dvrp = .FALSE., lock_steering_update = .FALSE., &
430                use_seperate_pe_for_dvrp_output = .FALSE.
431
432    REAL    ::  superelevation = 1.0, superelevation_x = 1.0, &
433                superelevation_y = 1.0
434
435#if defined( __decalpha )
436    REAL, DIMENSION(2,10)  ::  slicer_range_limits_dvrp = (/ &
437                                -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, &
438                                -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, &
439                                -1.0, 1.0, -1.0, 1.0 /)
440
441    REAL, DIMENSION(2,100) ::  interval_values_dvrp, interval_h_dvrp =       &
442                               (/ 270.0, 225.0, 225.0, 180.0, 70.0, 25.0,    &
443                                  25.0, -25.0, ( 0.0, i9 = 1, 192 ) /),      &
444                               interval_l_dvrp = 0.5, interval_s_dvrp = 1.0, &
445                               interval_a_dvrp = 0.0
446#else
447    REAL, DIMENSION(2,10)  ::  slicer_range_limits_dvrp
448
449    REAL, DIMENSION(2,100) ::  interval_values_dvrp, interval_h_dvrp,        &
450                               interval_l_dvrp = 0.5, interval_s_dvrp = 1.0, &
451                               interval_a_dvrp = 0.0
452
453    DATA  slicer_range_limits_dvrp / -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, &
454                                     -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, &
455                                     -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, &
456                                     -1.0, 1.0 /
457
458    DATA  interval_h_dvrp / 270.0, 225.0, 225.0, 180.0, 70.0, 25.0, &
459                            25.0, -25.0, 192 * 0.0 /
460#endif
461
462    REAL, DIMENSION(:), ALLOCATABLE ::  xcoor_dvrp, ycoor_dvrp, zcoor_dvrp
463
464    TYPE steering
465       CHARACTER (LEN=20) ::  name
466       REAL               ::  min, max
467       INTEGER            ::  imin, imax
468    END TYPE steering
469
470    TYPE(steering), DIMENSION(:), ALLOCATABLE ::  steering_dvrp
471
472    SAVE
473
474 END MODULE dvrp_variables
475
476
477
478
479 MODULE grid_variables
480
481!------------------------------------------------------------------------------!
482! Description:
483! ------------
484! Definition of grid spacings
485!------------------------------------------------------------------------------!
486
487    REAL ::  ddx, ddx2, dx = 1.0, dx2, ddy, ddy2, dy = 1.0, dy2
488
489    REAL, DIMENSION(:), ALLOCATABLE ::  ddx2_mg, ddy2_mg
490
491    REAL, DIMENSION(:,:), ALLOCATABLE ::  fwxm, fwxp, fwym, fwyp, fxm, fxp, &
492                                          fym, fyp, wall_e_x, wall_e_y, &
493                                          wall_u, wall_v, wall_w_x, wall_w_y
494
495    SAVE
496
497 END MODULE grid_variables
498
499
500
501
502 MODULE indices
503
504!------------------------------------------------------------------------------!
505! Description:
506! ------------
507! Definition of array bounds and number of gridpoints
508!------------------------------------------------------------------------------!
509
510    INTEGER ::  ngp_sums, nnx, nx = 0, nxa, nxl, nxr, nxra, nny, ny = 0, nya,  &
511                nyn, nyna, nys, nnz, nz = 0, nza, nzb, nzb_diff, nzt, nzta,    &
512                nzt_diff, uxrp = 0, vynp = 0
513
514    INTEGER, DIMENSION(:), ALLOCATABLE ::                                      &
515                ngp_2dh, ngp_3d, ngp_3d_inner,                                 &
516                nnx_pe, nny_pe, nxl_mg, nxr_mg, nyn_mg, nys_mg, nzt_mg
517
518    INTEGER, DIMENSION(:,:), ALLOCATABLE ::                                    &
519                ngp_2dh_outer, mg_loc_ind, nzb_diff_s_inner, nzb_diff_s_outer, &
520                nzb_diff_u, nzb_diff_v, nzb_inner, nzb_outer, nzb_s_inner,     &
521                nzb_s_outer, nzb_u_inner, nzb_u_outer, nzb_v_inner,            &
522                nzb_v_outer, nzb_w_inner, nzb_w_outer, nzb_2d
523
524    SAVE
525
526 END MODULE indices
527
528
529
530
531 MODULE interfaces
532
533!------------------------------------------------------------------------------!
534! Description:
535! ------------
536! Interfaces for special subroutines which use optional parameters
537!------------------------------------------------------------------------------!
538
539    INTERFACE
540
541       SUBROUTINE cpu_log( log_event, place, modus, barrierwait )
542
543          USE cpulog
544
545          CHARACTER (LEN=*)           ::  modus, place
546          CHARACTER (LEN=*), OPTIONAL ::  barrierwait
547          TYPE(logpoint)              ::  log_event
548
549       END SUBROUTINE cpu_log
550
551    END INTERFACE
552
553
554
555    INTERFACE
556
557       SUBROUTINE global_min_max ( i1, i2, j1, j2, k1, k2, feld, mode, wert, &
558                                   wert_ijk, wert1, wert1_ijk )
559          CHARACTER (LEN=*), INTENT(IN) ::  mode
560          INTEGER, INTENT(IN)           ::  i1, i2, j1, j2, k1, k2
561          INTEGER                       ::  wert_ijk(3)
562          INTEGER, OPTIONAL             ::  wert1_ijk(3)
563          REAL                          ::  wert
564          REAL, OPTIONAL                ::  wert1
565          REAL, INTENT(IN)              ::  feld(i1:i2,j1:j2,k1:k2)
566
567       END SUBROUTINE global_min_max
568
569    END INTERFACE
570
571    SAVE
572
573 END MODULE interfaces
574
575
576
577 MODULE pointer_interfaces
578
579!------------------------------------------------------------------------------!
580! Description:
581! ------------
582! Interfaces for subroutines with pointer arguments called in
583! prognostic_equations
584!------------------------------------------------------------------------------!
585
586    INTERFACE
587
588       SUBROUTINE advec_s_bc( sk, sk_char )
589
590          CHARACTER (LEN=*), INTENT(IN)   ::  sk_char
591          REAL, DIMENSION(:,:,:), POINTER ::  sk
592
593       END SUBROUTINE advec_s_bc
594
595    END INTERFACE
596
597
598    SAVE
599
600 END MODULE pointer_interfaces
601
602
603
604
605 MODULE model_1d
606
607!------------------------------------------------------------------------------!
608! Description:
609! ------------
610! Definition of variables for the 1D-model
611!------------------------------------------------------------------------------!
612
613    INTEGER ::  current_timestep_number_1d = 0, damp_level_ind_1d, &
614                last_dt_change_1d = 0 
615
616    LOGICAL ::  run_control_header_1d = .FALSE., stop_dt_1d = .FALSE. 
617
618    REAL ::     damp_level_1d = -1.0, dt_1d = 60.0, dt_max_1d = 300.0, &
619                dt_pr_1d = 9999999.9, dt_run_control_1d = 60.0, &
620                end_time_1d = 864000.0, old_dt_1d = 1.0E-10, &
621                qs1d, simulated_time_1d = 0.0, time_pr_1d = 0.0, &
622                time_run_control_1d = 0.0, ts1d, us1d, usws1d, usws1d_m, &
623                vsws1d, vsws1d_m, z01d
624
625
626    REAL, DIMENSION(:), ALLOCATABLE ::  e1d, e1d_m, e1d_p, kh1d, kh1d_m, km1d, &
627                                        km1d_m, l_black, l1d, l1d_m, rif1d,    &
628                                        te_e, te_em, te_u, te_um, te_v, te_vm, &
629                                        u1d, u1d_m, u1d_p, v1d, v1d_m, v1d_p
630
631    SAVE
632
633 END MODULE model_1d
634
635
636
637
638 MODULE netcdf_control
639
640!------------------------------------------------------------------------------!
641! Description:
642! ------------
643! Definition of parameters and variables for netcdf control.
644!------------------------------------------------------------------------------!
645
646#if defined( __netcdf )
647    USE netcdf
648#endif
649
650    INTEGER, PARAMETER ::  dopr_norm_num = 7, dopts_num = 26, dots_num = 22, &
651                           replace_num = 6
652
653    CHARACTER, DIMENSION( replace_num ) :: &
654                           replace_char = (/ '''', '"', '*', '/', '(', ')' /), &
655                           replace_by   = (/ 'p' , 'p', 's', 'o', '_', '_' /)
656
657    CHARACTER (LEN=6), DIMENSION(dopr_norm_num) ::  dopr_norm_names =   &
658         (/ 'wpt0  ', 'ws2   ', 'tsw2  ', 'ws3   ', 'ws2tsw', 'wstsw2', &
659            'z_i   ' /)
660
661    CHARACTER (LEN=6), DIMENSION(dopr_norm_num) ::  dopr_norm_longnames = &
662         (/ 'wpt0  ', 'w*2   ', 't*w2  ', 'w*3   ', 'w*2t*w', 'w*t*w2',   &
663            'z_i   ' /)
664
665    CHARACTER (LEN=7), DIMENSION(dopts_num) :: dopts_label = &
666          (/ 'tnpt   ', 'x_     ', 'y_     ', 'z_     ', 'z_abs  ', 'u      ', &
667             'v      ', 'w      ', 'u"     ', 'v"     ', 'w"     ', 'npt_up ', &
668             'w_up   ', 'w_down ', 'npt_max', 'npt_min', 'x*2    ', 'y*2    ', &
669             'z*2    ', 'u*2    ', 'v*2    ', 'w*2    ', 'u"2    ', 'v"2    ', &
670             'w"2    ', 'npt*2  ' /)
671
672    CHARACTER (LEN=7), DIMENSION(dopts_num) :: dopts_unit = &
673          (/ 'number ', 'm      ', 'm      ', 'm      ', 'm      ', 'm/s    ', &
674             'm/s    ', 'm/s    ', 'm/s    ', 'm/s    ', 'm/s    ', 'number ', &
675             'm/s    ', 'm/s    ', 'number ', 'number ', 'm2     ', 'm2     ', &
676             'm2     ', 'm2/s2  ', 'm2/s2  ', 'm2/s2  ', 'm2/s2  ', 'm2/s2  ', &
677             'm2/s2  ', 'number2' /)
678
679    CHARACTER (LEN=7), DIMENSION(dots_num) :: dots_label = &
680          (/ 'E      ', 'E*     ', 'dt     ', 'u*     ', 'th*    ', 'umax   ', &
681             'vmax   ', 'wmax   ', 'div_new', 'div_old', 'z_i_wpt', 'z_i_pt ', &
682             'w*     ', 'w"pt"0 ', 'w"pt"  ', 'wpt    ', 'pt(0)  ', 'pt(zp) ', &
683             'splptx ', 'splpty ', 'splptz ', 'mo_L   ' /)
684
685    CHARACTER (LEN=7), DIMENSION(dots_num) :: dots_unit = &
686          (/ 'm2/s2  ', 'm2/s2  ', 's      ', 'm/s    ', 'K      ', 'm/s    ', &
687             'm/s    ', 'm/s    ', 's-1    ', 's-1    ', 'm      ', 'm      ', &
688             'm/s    ', 'K m/s  ', 'K m/s  ', 'k m/s  ', 'K      ', 'K      ', &
689             '%      ', '%      ', '%      ', 'm      ' /)
690
691    CHARACTER (LEN=7), DIMENSION(100) ::  dopr_unit = 'unknown'
692
693    CHARACTER (LEN=7), DIMENSION(0:1,100) ::  do2d_unit, do3d_unit
694
695    CHARACTER (LEN=16), DIMENSION(25) ::  prt_var_names = &
696          (/ 'pt_age          ', 'pt_dvrp_size    ', 'pt_origin_x     ', &
697             'pt_origin_y     ', 'pt_origin_z     ', 'pt_radius       ', &
698             'pt_speed_x      ', 'pt_speed_y      ', 'pt_speed_z      ', &
699             'pt_weight_factor', 'pt_x            ', 'pt_y            ', &
700             'pt_z            ', 'pt_color        ', 'pt_group        ', &
701             'pt_tailpoints   ', 'pt_tail_id      ', 'pt_density_ratio', &
702             'pt_exp_arg      ', 'pt_exp_term     ', 'not_used        ', &
703             'not_used        ', 'not_used        ', 'not_used        ', &
704             'not_used        ' /)
705
706    CHARACTER (LEN=16), DIMENSION(25) ::  prt_var_units = &
707          (/ 'seconds         ', 'meters          ', 'meters          ', &
708             'meters          ', 'meters          ', 'meters          ', &
709             'm/s             ', 'm/s             ', 'm/s             ', &
710             'factor          ', 'meters          ', 'meters          ', &
711             'meters          ', 'none            ', 'none            ', &
712             'none            ', 'none            ', 'ratio           ', &
713             'none            ', 'none            ', 'not_used        ', &
714             'not_used        ', 'not_used        ', 'not_used        ', &
715             'not_used        ' /)
716
717    INTEGER ::  id_dim_prtnum, id_dim_time_pr, id_dim_time_prt, &
718                id_dim_time_pts, id_dim_time_sp, id_dim_time_ts, id_dim_x_sp, &
719                id_dim_y_sp, id_dim_zu_sp, id_dim_zw_sp, id_set_pr, &
720                id_set_prt, id_set_pts, id_set_sp, id_set_ts, id_var_prtnum, &
721                id_var_rnop_prt, id_var_time_pr, id_var_time_prt, &
722                id_var_time_pts, id_var_time_sp, id_var_time_ts, id_var_x_sp, &
723                id_var_y_sp, id_var_zu_sp, id_var_zw_sp, nc_stat
724
725    INTEGER, DIMENSION(0:1) ::  id_dim_time_xy, id_dim_time_xz, &
726                id_dim_time_yz, id_dim_time_3d, id_dim_x_xy, id_dim_xu_xy, &
727                id_dim_x_xz, id_dim_xu_xz, id_dim_x_yz, id_dim_xu_yz, &
728                id_dim_x_3d, id_dim_xu_3d, id_dim_y_xy, id_dim_yv_xy, &
729                id_dim_y_xz, id_dim_yv_xz, id_dim_y_yz, id_dim_yv_yz, &
730                id_dim_y_3d, id_dim_yv_3d, id_dim_zu_xy, id_dim_zu1_xy, &
731                id_dim_zu_xz, id_dim_zu_yz, id_dim_zu_3d, id_dim_zw_xy, &
732                id_dim_zw_xz, id_dim_zw_yz, id_dim_zw_3d, id_set_xy, &
733                id_set_xz, id_set_yz, id_set_3d, id_var_ind_x_yz, &
734                id_var_ind_y_xz, id_var_ind_z_xy, id_var_time_xy, &
735                id_var_time_xz, id_var_time_yz, id_var_time_3d, id_var_x_xy, &
736                id_var_xu_xy, id_var_x_xz, id_var_xu_xz, id_var_x_yz, &
737                id_var_xu_yz, id_var_x_3d, id_var_xu_3d, id_var_y_xy, &
738                id_var_yv_xy, id_var_y_xz, id_var_yv_xz, id_var_y_yz, &
739                id_var_yv_yz, id_var_y_3d, id_var_yv_3d, id_var_zu_xy, &
740                id_var_zu1_xy, id_var_zu_xz, id_var_zu_yz, id_var_zu_3d, &
741                id_var_zw_xy, id_var_zw_xz, id_var_zw_yz, id_var_zw_3d
742
743    INTEGER, DIMENSION(10)  ::  id_var_dospx, id_var_dospy, nc_precision 
744    INTEGER, DIMENSION(20)  ::  id_var_prt
745    INTEGER, DIMENSION(dopr_norm_num) ::  id_var_norm_dopr
746
747    INTEGER, DIMENSION(dopts_num,0:10) ::  id_var_dopts
748    INTEGER, DIMENSION(0:1,100)        ::  id_var_do2d, id_var_do3d
749    INTEGER, DIMENSION(100,0:9)        ::  id_dim_z_pr, id_var_dopr, &
750                                           id_var_z_pr
751    INTEGER, DIMENSION(dots_num,0:9)   ::  id_var_dots
752
753
754    SAVE
755
756 END MODULE netcdf_control
757
758
759
760 MODULE particle_attributes
761
762!------------------------------------------------------------------------------!
763! Description:
764! ------------
765! Definition of variables used to compute particle transport
766!------------------------------------------------------------------------------!
767
768    USE array_kind
769
770    CHARACTER (LEN=15)  ::  bc_par_lr = 'cyclic',  bc_par_ns = 'cyclic', &
771                            bc_par_b  = 'reflect', bc_par_t  = 'absorb'
772
773#if defined( __parallel )
774    INTEGER ::  mpi_particle_type
775#endif
776    INTEGER ::  ibc_par_lr, ibc_par_ns, ibc_par_b, ibc_par_t,                  &
777                iran_part = -1234567, maximum_number_of_particles = 1000,      &
778                maximum_number_of_tailpoints = 100,                            &
779                maximum_number_of_tails = 0,                                   &
780                number_of_initial_particles = 0, number_of_particles = 0,      &
781                number_of_particle_groups = 1, number_of_tails = 0,            &
782                number_of_initial_tails = 0, particles_per_point = 1,          &
783                particle_file_count = 0, skip_particles_for_tail = 100,        &
784                total_number_of_particles, total_number_of_tails = 0
785
786    INTEGER, PARAMETER ::  max_number_of_particle_groups = 10
787
788    INTEGER, DIMENSION(:), ALLOCATABLE     ::  new_tail_id
789    INTEGER, DIMENSION(:,:,:), ALLOCATABLE ::  prt_count, prt_start_index
790
791    LOGICAL ::  particle_advection = .FALSE., random_start_position = .FALSE., &
792                read_particles_from_restartfile = .TRUE.,                      &
793                uniform_particles = .TRUE., use_particle_tails = .FALSE.,      &
794                use_sgs_for_particles = .FALSE.,                               &
795                vertical_particle_advection = .TRUE.,                          &
796                write_particle_statistics = .FALSE.
797    LOGICAL, DIMENSION(:), ALLOCATABLE ::  particle_mask, tail_mask
798
799    REAL    ::  c_0 = 3.0, dt_min_part = 0.0002,                               &
800                dt_write_particle_data = 9999999.9, dvrp_psize = 9999999.9,    &
801                end_time_prel = 9999999.9, initial_weighting_factor = 1.0,     &
802                maximum_tailpoint_age = 100000.0,                              &
803                minimum_tailpoint_distance = 0.0,                              &
804                particle_advection_start = 0.0, sgs_wfu_part = 0.3333333,      &
805                sgs_wfv_part = 0.3333333, sgs_wfw_part = 0.3333333,            &
806                time_write_particle_data = 0.0
807
808    REAL, DIMENSION(max_number_of_particle_groups) ::  &
809                density_ratio = 9999999.9, pdx = 9999999.9, pdy = 9999999.9, &
810                pdz = 9999999.9, psb = 9999999.9, psl = 9999999.9,           &
811                psn = 9999999.9, psr = 9999999.9, pss = 9999999.9,           &
812                pst = 9999999.9, radius = 9999999.9
813
814    REAL, DIMENSION(:,:,:), ALLOCATABLE ::  particle_tail_coordinates
815
816
817    TYPE particle_type
818       SEQUENCE
819       REAL    ::  age, dt_sum, dvrp_psize, e_m, origin_x, origin_y, origin_z, &
820                   radius, speed_x, speed_x_sgs, speed_y, speed_y_sgs,         &
821                   speed_z, speed_z_sgs, weight_factor, x, y, z
822       INTEGER ::  color, group, tailpoints, tail_id
823    END TYPE particle_type
824
825    TYPE(particle_type), DIMENSION(:), ALLOCATABLE ::  initial_particles, &
826                                                       particles
827
828    TYPE particle_groups_type
829       SEQUENCE
830       REAL    ::  density_ratio, radius, exp_arg, exp_term
831    END TYPE particle_groups_type
832
833    TYPE(particle_groups_type), DIMENSION(max_number_of_particle_groups) ::&
834                   particle_groups
835
836    SAVE
837
838 END MODULE particle_attributes
839
840
841
842
843
844 MODULE pegrid
845
846!------------------------------------------------------------------------------!
847! Description:
848! ------------
849! Definition of variables which define processor topology and the exchange of
850! ghost point layers. This modules must be placed in all routines which contain
851! MPI-calls.
852!------------------------------------------------------------------------------!
853
854#if defined( __parallel )
855#if defined( __lcmuk )
856    USE MPI
857!    INCLUDE "mpif.h"
858#else
859    INCLUDE "mpif.h"
860#endif
861#endif
862    CHARACTER(LEN=5)       ::  myid_char = '', myid_char_14 = ''
863    INTEGER                ::  myid=0, npex = -1, npey = -1, numprocs = 1, &
864                               tasks_per_node = -9999, threads_per_task = 1
865
866#if defined( __parallel )
867    INTEGER ::  comm1dx, comm1dy, comm2d, comm_palm, ierr, myidx, myidy,       &
868                ndim = 2, ngp_y, ngp_yz_p, pleft, pnorth, pright, psouth,      &
869                sendrecvcount_xy, sendrecvcount_yz, sendrecvcount_zx,          &
870                sendrecvcount_zyd, sendrecvcount_yxd,                          &
871                type_x, type_x_int, type_xz_p, ibuf(12), pcoord(2), pdims(2),  &
872                status(MPI_STATUS_SIZE)
873
874    INTEGER, DIMENSION(:), ALLOCATABLE ::  ngp_yz, type_xz
875
876    LOGICAL ::  reorder = .TRUE.
877    LOGICAL, DIMENSION(2) ::  cyclic = (/ .TRUE. , .TRUE. /), &
878                              remain_dims
879#endif
880
881    SAVE
882
883 END MODULE pegrid
884
885
886
887
888 MODULE profil_parameter
889
890!------------------------------------------------------------------------------!
891! Description:
892! ------------
893! Definition of variables which control PROFIL-output
894!------------------------------------------------------------------------------!
895
896    INTEGER, PARAMETER ::  crmax = 100
897
898    CHARACTER (LEN=10), DIMENSION(100) ::  dopr_label = ' '
899
900    CHARACTER (LEN=10), DIMENSION(crmax) ::  cross_normalized_x = ' ', &
901                                             cross_normalized_y = ' '
902
903    CHARACTER (LEN=20), DIMENSION(20) ::  cross_ts_profiles = &
904                           (/ ' E E*               ', ' dt                 ', &
905                              ' u* w*              ', ' th*                ', &
906                              ' umax vmax wmax     ', ' div_old div_new    ', &
907                              ' z_i_wpt z_i_pt     ', ' w"pt"0 w"pt" wpt   ', &
908                              ' pt(0) pt(zp)       ', ' splux spluy spluz  ', &
909                              ' L                  ',                         &
910                            ( '                    ', i9 = 1, 9 ) /)
911
912    CHARACTER (LEN=40), DIMENSION(crmax) ::  cross_xtext = &
913                           (/ 'windspeed in ms>->1         ', &
914                              'pot. temperature in K       ', &
915                              'heat flux in K ms>->1       ', &
916                              'momentum flux in m>2s>2     ', &
917                              'eddy diffusivity in m>2s>->1', &
918                              'mixing length in m          ', &
919                            ( '                            ', i9 = 1, 94 ) /)
920
921    CHARACTER (LEN=100), DIMENSION(crmax) ::  cross_profiles = &
922                           (/ ' u v                           ', &
923                              ' pt                            ', &
924                              ' w"pt" w*pt* w*pt*BC wpt wptBC ', &
925                              ' w"u" w*u* wu w"v" w*v* wv     ', &
926                              ' km kh                         ', &
927                              ' l                             ', &
928                         ( '                               ', i9 = 1, 94 ) /)
929
930    INTEGER ::  profile_columns = 3, profile_rows = 2, profile_number = 0
931
932    INTEGER ::  cross_linecolors(100,crmax) = 1, &
933                cross_linestyles(100,crmax) = 0, &
934                cross_profile_numbers(100,crmax) = 0, &
935                cross_pnc_local(crmax), cross_profile_number_count(crmax) = 0, &
936                cross_ts_numbers(crmax,crmax) = 0, &
937                cross_ts_number_count(crmax) = 0, dopr_crossindex(100) = 0, &
938                dopr_index(100) = 0, dopr_initial_index(100) = 0, &
939                dots_crossindex(100) = 0, dots_index(100) = 0, &
940                linecolors(10) = (/ 2, 3, 4,  5, 7, 8, 12, 15, 16, 23 /), &
941                linestyles(11) = (/ 0, 7, 3, 10, 4, 1,  9,  2,  5,  8, 6 /)
942               
943
944    REAL ::  cross_normx_factor(100,crmax) = 1.0, &
945             cross_normy_factor(100,crmax) = 1.0, &
946             cross_ts_uymax(20) = &
947                             (/ 999.999, 999.999, 999.999, 999.999, 999.999,   &
948                                999.999, 999.999, 999.999, 999.999, 999.999,   &
949                                999.999, 999.999, 999.999, 999.999, 999.999,   &
950                                999.999, 999.999, 999.999, 999.999, 999.999 /),&
951             cross_ts_uymax_computed(20) = 999.999, &
952             cross_ts_uymin(20) = &
953                             (/ 999.999, 999.999, 999.999,  -5.000, 999.999,   &
954                                999.999,   0.000, 999.999, 999.999, 999.999,   &
955                                999.999, 999.999, 999.999, 999.999, 999.999,   &
956                                999.999, 999.999, 999.999, 999.999, 999.999 /),&
957             cross_ts_uymin_computed(20) = 999.999, &
958             cross_uxmax(crmax) = 0.0, cross_uxmax_computed(crmax) = -1.0, &
959             cross_uxmax_normalized(crmax) = 0.0, &
960             cross_uxmax_normalized_computed(crmax) = -1.0, &
961             cross_uxmin(crmax) = 0.0, cross_uxmin_computed(crmax) =  1.0, &
962             cross_uxmin_normalized(crmax) = 0.0, &
963             cross_uxmin_normalized_computed(crmax) = 1.0, &
964             cross_uymax(crmax), cross_uymin(crmax)
965
966    SAVE
967
968 END MODULE profil_parameter
969
970
971
972
973 MODULE spectrum
974
975!------------------------------------------------------------------------------!
976! Description:
977! ------------
978! Definition of quantities used for computing spectra
979!------------------------------------------------------------------------------!
980
981    CHARACTER (LEN=6),  DIMENSION(1:5) ::  header_char = (/ 'PS(u) ', 'PS(v) ',&
982                                           'PS(w) ', 'PS(pt)', 'PS(q) ' /)
983    CHARACTER (LEN=2),  DIMENSION(10)  ::  spectra_direction = 'x'
984    CHARACTER (LEN=10), DIMENSION(10)  ::  data_output_sp  = ' '
985    CHARACTER (LEN=25), DIMENSION(1:5) ::  utext_char =                    &
986                                           (/ '-power spectrum of u     ', &
987                                              '-power spectrum of v     ', &
988                                              '-power spectrum of w     ', &
989                                              '-power spectrum of ^1185 ', &
990                                              '-power spectrum of q     ' /)
991    CHARACTER (LEN=39), DIMENSION(1:5) ::  ytext_char =                        &
992                                 (/ 'k ^2236 ^2566^2569<u(k) in m>2s>->2    ', &
993                                    'k ^2236 ^2566^2569<v(k) in m>2s>->2    ', &
994                                    'k ^2236 ^2566^2569<w(k) in m>2s>->2    ', &
995                                    'k ^2236 ^2566^2569<^1185(k) in m>2s>->2', &
996                                    'k ^2236 ^2566^2569<q(k) in m>2s>->2    ' /)
997
998    INTEGER ::  klist_x = 0, klist_y = 0, n_sp_x = 0, n_sp_y = 0
999
1000    INTEGER ::  comp_spectra_level(10) = 999999,                   &
1001                lstyles(10) = (/ 0, 7, 3, 10, 1, 4, 9, 2, 6, 8 /), &
1002                plot_spectra_level(10) = 999999
1003
1004    REAL    ::  time_to_start_sp = 0.0
1005
1006    SAVE
1007
1008 END MODULE spectrum
1009
1010
1011
1012
1013 MODULE statistics
1014
1015!------------------------------------------------------------------------------!
1016! Description:
1017! ------------
1018! Definition of statistical quantities, e.g. global sums
1019!------------------------------------------------------------------------------!
1020
1021    CHARACTER (LEN=40) ::  region(0:9)
1022    INTEGER ::  statistic_regions = 0, var_hom = 80, var_sum = 80
1023    INTEGER ::  u_max_ijk(3), v_max_ijk(3), w_max_ijk(3)
1024    LOGICAL ::  flow_statistics_called = .FALSE.
1025    REAL ::     u_max, v_max, w_max
1026    REAL, DIMENSION(:), ALLOCATABLE       ::  sums_divnew_l, sums_divold_l
1027    REAL, DIMENSION(:,:), ALLOCATABLE     ::  sums, sums_wsts_bc_l
1028    REAL, DIMENSION(:,:,:), ALLOCATABLE   ::  hom_sum, rmask, spectrum_x, &
1029                                              spectrum_y, sums_l, sums_l_l, &
1030                                              sums_up_fraction_l
1031    REAL, DIMENSION(:,:,:,:), ALLOCATABLE ::  hom
1032
1033    SAVE
1034
1035 END MODULE statistics
1036
1037
1038
1039
1040 MODULE transpose_indices
1041
1042!------------------------------------------------------------------------------!
1043! Description:
1044! ------------
1045! Definition of indices for transposed arrays
1046!------------------------------------------------------------------------------!
1047
1048    INTEGER ::  nxl_y, nxl_yd, nxl_z, nxr_y, nxr_ya, nxr_yd, nxr_yda, nxr_z, &
1049                nxr_za, nyn_x, nyn_xa, nyn_z, nyn_za, nys_x, nys_z, nzb_x,   &
1050                nzb_y, nzb_yd, nzt_x, nzt_xa, nzt_y, nzt_ya, nzt_yd, nzt_yda
1051               
1052
1053    SAVE
1054
1055 END MODULE transpose_indices
Note: See TracBrowser for help on using the repository browser.