[4017] | 1 | ! !> @file header.f90 |
---|
[2000] | 2 | !------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1036] | 4 | ! |
---|
[2000] | 5 | ! PALM is free software: you can redistribute it and/or modify it under the |
---|
| 6 | ! terms of the GNU General Public License as published by the Free Software |
---|
| 7 | ! Foundation, either version 3 of the License, or (at your option) any later |
---|
| 8 | ! version. |
---|
[1036] | 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 | ! |
---|
[4360] | 17 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
[2000] | 18 | !------------------------------------------------------------------------------! |
---|
[1036] | 19 | ! |
---|
[254] | 20 | ! Current revisions: |
---|
[1] | 21 | ! ----------------- |
---|
[3589] | 22 | ! |
---|
[4309] | 23 | ! |
---|
[3589] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: header.f90 4360 2020-01-07 11:25:50Z maronga $ |
---|
[4339] | 27 | ! Bugfix, character length too short, caused crash on NEC. |
---|
| 28 | ! |
---|
| 29 | ! 4309 2019-11-26 18:49:59Z suehring |
---|
[4309] | 30 | ! replaced recycling_yshift by y_shift |
---|
| 31 | ! |
---|
| 32 | ! 4301 2019-11-22 12:09:09Z oliver.maas |
---|
[4301] | 33 | ! |
---|
| 34 | ! 4297 2019-11-21 10:37:50Z oliver.maas |
---|
[4300] | 35 | ! Adjusted format for simulated time and related quantities |
---|
| 36 | ! |
---|
| 37 | ! 4297 2019-11-21 10:37:50Z oliver.maas |
---|
[4297] | 38 | ! adjusted message to the changed parameter recycling_yshift |
---|
| 39 | ! |
---|
| 40 | ! 4227 2019-09-10 18:04:34Z gronemeier |
---|
[4227] | 41 | ! implement new palm_date_time_mod |
---|
| 42 | ! |
---|
| 43 | ! 4223 2019-09-10 09:20:47Z gronemeier |
---|
[4196] | 44 | ! Write information about rotation angle |
---|
| 45 | ! |
---|
| 46 | ! 4182 2019-08-22 15:20:23Z scharf |
---|
[4182] | 47 | ! Corrected "Former revisions" section |
---|
| 48 | ! |
---|
| 49 | ! 4168 2019-08-16 13:50:17Z suehring |
---|
[4168] | 50 | ! Replace function get_topography_top_index by topo_top_ind |
---|
| 51 | ! |
---|
| 52 | ! 4069 2019-07-01 14:05:51Z Giersch |
---|
[4069] | 53 | ! Masked output running index mid has been introduced as a local variable to |
---|
| 54 | ! avoid runtime error (Loop variable has been modified) in time_integration |
---|
| 55 | ! |
---|
| 56 | ! 4023 2019-06-12 13:20:01Z maronga |
---|
[4023] | 57 | ! Renamed "coupling start time" to "spinup time" |
---|
| 58 | ! |
---|
| 59 | ! 4017 2019-06-06 12:16:46Z schwenkel |
---|
[3761] | 60 | ! unused variable removed |
---|
| 61 | ! |
---|
| 62 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
[3637] | 63 | ! Implementation of the PALM module interface |
---|
[3298] | 64 | ! |
---|
[4182] | 65 | ! Revision 1.1 1997/08/11 06:17:20 raasch |
---|
| 66 | ! Initial revision |
---|
| 67 | ! |
---|
| 68 | ! |
---|
[1] | 69 | ! Description: |
---|
| 70 | ! ------------ |
---|
[1764] | 71 | !> Writing a header with all important information about the current run. |
---|
[1682] | 72 | !> This subroutine is called three times, two times at the beginning |
---|
| 73 | !> (writing information on files RUN_CONTROL and HEADER) and one time at the |
---|
| 74 | !> end of the run, then writing additional information about CPU-usage on file |
---|
| 75 | !> header. |
---|
[411] | 76 | !-----------------------------------------------------------------------------! |
---|
[1682] | 77 | SUBROUTINE header |
---|
| 78 | |
---|
[1] | 79 | |
---|
[1320] | 80 | USE arrays_3d, & |
---|
[2232] | 81 | ONLY: pt_init, q_init, s_init, sa_init, ug, vg, w_subs, zu, zw |
---|
[3274] | 82 | |
---|
| 83 | USE basic_constants_and_equations_mod, & |
---|
[3761] | 84 | ONLY: g, kappa |
---|
[3274] | 85 | |
---|
| 86 | USE bulk_cloud_model_mod, & |
---|
[3637] | 87 | ONLY: bulk_cloud_model |
---|
[3274] | 88 | |
---|
[1] | 89 | USE control_parameters |
---|
[1849] | 90 | |
---|
[1320] | 91 | USE cpulog, & |
---|
| 92 | ONLY: log_point_s |
---|
[3298] | 93 | |
---|
[1320] | 94 | USE grid_variables, & |
---|
| 95 | ONLY: dx, dy |
---|
[2817] | 96 | |
---|
[1320] | 97 | USE indices, & |
---|
| 98 | ONLY: mg_loc_ind, nnx, nny, nnz, nx, ny, nxl_mg, nxr_mg, nyn_mg, & |
---|
[4168] | 99 | nys_mg, nzt, nzt_mg, topo_top_ind |
---|
[3637] | 100 | |
---|
[1320] | 101 | USE kinds |
---|
[1849] | 102 | |
---|
[2338] | 103 | USE model_1d_mod, & |
---|
[1320] | 104 | ONLY: damp_level_ind_1d, dt_pr_1d, dt_run_control_1d, end_time_1d |
---|
[2338] | 105 | |
---|
[3637] | 106 | USE module_interface, & |
---|
| 107 | ONLY: module_interface_header |
---|
| 108 | |
---|
[1783] | 109 | USE netcdf_interface, & |
---|
| 110 | ONLY: netcdf_data_format, netcdf_data_format_string, netcdf_deflate |
---|
[3448] | 111 | |
---|
[3294] | 112 | USE ocean_mod, & |
---|
[3637] | 113 | ONLY: ibc_sa_t, prho_reference, sa_surface, & |
---|
[3302] | 114 | sa_vertical_gradient, sa_vertical_gradient_level, & |
---|
| 115 | sa_vertical_gradient_level_ind |
---|
[3294] | 116 | |
---|
[4227] | 117 | USE palm_date_time_mod, & |
---|
| 118 | ONLY: get_date_time |
---|
| 119 | |
---|
[1] | 120 | USE pegrid |
---|
[1484] | 121 | |
---|
[2967] | 122 | #if defined( __parallel ) |
---|
[1791] | 123 | USE pmc_handle_communicator, & |
---|
| 124 | ONLY: pmc_get_model_info |
---|
[2967] | 125 | #endif |
---|
[1791] | 126 | |
---|
[1764] | 127 | USE pmc_interface, & |
---|
[1797] | 128 | ONLY: nested_run, nesting_datatransfer_mode, nesting_mode |
---|
[1764] | 129 | |
---|
[2232] | 130 | USE surface_mod, & |
---|
[4168] | 131 | ONLY: surf_def_h |
---|
[2232] | 132 | |
---|
[3083] | 133 | USE turbulence_closure_mod, & |
---|
| 134 | ONLY: rans_const_c, rans_const_sigma |
---|
| 135 | |
---|
[1] | 136 | IMPLICIT NONE |
---|
| 137 | |
---|
[1320] | 138 | |
---|
[3552] | 139 | CHARACTER (LEN=2) :: do2d_mode !< mode of 2D data output (xy, xz, yz) |
---|
[1320] | 140 | |
---|
[3552] | 141 | CHARACTER (LEN=5) :: section_chr !< string indicating grid information where to output 2D slices |
---|
[1320] | 142 | |
---|
[3552] | 143 | CHARACTER (LEN=10) :: host_chr !< string for hostname |
---|
[1320] | 144 | |
---|
[3552] | 145 | CHARACTER (LEN=16) :: begin_chr !< string indication start time for the data output |
---|
[4339] | 146 | CHARACTER (LEN=16) :: coor_chr !< dummy string |
---|
[1320] | 147 | |
---|
[3552] | 148 | CHARACTER (LEN=26) :: ver_rev !< string for run identification |
---|
[1791] | 149 | |
---|
[3552] | 150 | CHARACTER (LEN=32) :: cpl_name !< name of child domain (nesting mode only) |
---|
[1320] | 151 | |
---|
[3552] | 152 | CHARACTER (LEN=40) :: output_format !< netcdf format |
---|
[4017] | 153 | |
---|
[3552] | 154 | CHARACTER (LEN=70) :: char1 !< dummy varialbe used for various strings |
---|
| 155 | CHARACTER (LEN=70) :: char2 !< string containing informating about the advected distance in case of Galilei transformation |
---|
[4227] | 156 | CHARACTER (LEN=23) :: date_time_str !< string for date and time information |
---|
[3552] | 157 | CHARACTER (LEN=70) :: dopr_chr !< string indicating profile output variables |
---|
| 158 | CHARACTER (LEN=70) :: do2d_xy !< string indicating 2D-xy output variables |
---|
| 159 | CHARACTER (LEN=70) :: do2d_xz !< string indicating 2D-xz output variables |
---|
| 160 | CHARACTER (LEN=70) :: do2d_yz !< string indicating 2D-yz output variables |
---|
| 161 | CHARACTER (LEN=70) :: do3d_chr !< string indicating 3D output variables |
---|
| 162 | CHARACTER (LEN=70) :: domask_chr !< string indicating masked output variables |
---|
| 163 | CHARACTER (LEN=70) :: run_classification !< string classifying type of run, e.g. nested, coupled, etc. |
---|
[1320] | 164 | |
---|
[3552] | 165 | CHARACTER (LEN=85) :: r_upper !< string indicating model top boundary condition for various quantities |
---|
| 166 | CHARACTER (LEN=85) :: r_lower !< string indicating bottom boundary condition for various quantities |
---|
[1320] | 167 | |
---|
[3552] | 168 | CHARACTER (LEN=86) :: coordinates !< string indicating height coordinates for profile-prescribed variables |
---|
| 169 | CHARACTER (LEN=86) :: gradients !< string indicating gradients of profile-prescribed variables between the prescribed height coordinates |
---|
| 170 | CHARACTER (LEN=86) :: slices !< string indicating grid coordinates of profile-prescribed subsidence velocity |
---|
| 171 | CHARACTER (LEN=86) :: temperatures !< string indicating profile-prescribed subsidence velocities |
---|
| 172 | CHARACTER (LEN=86) :: ugcomponent !< string indicating profile-prescribed geostrophic u-component |
---|
| 173 | CHARACTER (LEN=86) :: vgcomponent !< string indicating profile-prescribed geostrophic v-component |
---|
[1] | 174 | |
---|
[3552] | 175 | CHARACTER (LEN=1), DIMENSION(1:3) :: dir = (/ 'x', 'y', 'z' /) !< string indicating masking steps along certain direction |
---|
[410] | 176 | |
---|
[3552] | 177 | INTEGER(iwp) :: av !< index indicating average output quantities |
---|
| 178 | INTEGER(iwp) :: bh !< building height in generic single-building setup |
---|
| 179 | INTEGER(iwp) :: blx !< building width in grid points along x in generic single-building setup |
---|
| 180 | INTEGER(iwp) :: bly !< building width in grid points along y in generic single-building setup |
---|
| 181 | INTEGER(iwp) :: bxl !< index for left building wall in generic single-building setup |
---|
| 182 | INTEGER(iwp) :: bxr !< index for right building wall in generic single-building setup |
---|
| 183 | INTEGER(iwp) :: byn !< index for north building wall in generic single-building setup |
---|
| 184 | INTEGER(iwp) :: bys !< index for south building wall in generic single-building setup |
---|
| 185 | INTEGER(iwp) :: ch !< canyon depth in generic street-canyon setup |
---|
| 186 | INTEGER(iwp) :: count !< number of masked output locations |
---|
| 187 | INTEGER(iwp) :: cpl_parent_id !< parent ID for the respective child model |
---|
| 188 | INTEGER(iwp) :: cwx !< canyon width along x in generic street-canyon setup |
---|
| 189 | INTEGER(iwp) :: cwy !< canyon width along y in generic street-canyon setup |
---|
| 190 | INTEGER(iwp) :: cxl !< index for left canyon wall in generic street-canyon setup |
---|
| 191 | INTEGER(iwp) :: cxr !< index for right canyon wall in generic street-canyon setup |
---|
| 192 | INTEGER(iwp) :: cyn !< index for north canyon wall in generic street-canyon setup |
---|
| 193 | INTEGER(iwp) :: cys !< index for south canyon wall in generic street-canyon setup |
---|
| 194 | INTEGER(iwp) :: dim !< running index for masking output locations |
---|
| 195 | INTEGER(iwp) :: i !< running index for various loops |
---|
| 196 | INTEGER(iwp) :: io !< file unit of HEADER file |
---|
| 197 | INTEGER(iwp) :: l !< substring length |
---|
| 198 | INTEGER(iwp) :: ll !< substring length |
---|
[4069] | 199 | INTEGER(iwp) :: mid !< masked output running index |
---|
[3552] | 200 | INTEGER(iwp) :: my_cpl_id !< run id in a nested model setup |
---|
| 201 | INTEGER(iwp) :: n !< running index over number of couplers in a nested model setup |
---|
| 202 | INTEGER(iwp) :: ncpl !< number of coupler in a nested model setup |
---|
| 203 | INTEGER(iwp) :: npe_total !< number of total PEs in a coupler (parent + child) |
---|
[1320] | 204 | |
---|
[1826] | 205 | |
---|
[3552] | 206 | REAL(wp) :: cpuseconds_per_simulated_second !< CPU time (in s) per simulated second |
---|
[1791] | 207 | REAL(wp) :: lower_left_coord_x !< x-coordinate of nest domain |
---|
| 208 | REAL(wp) :: lower_left_coord_y !< y-coordinate of nest domain |
---|
[1] | 209 | |
---|
| 210 | ! |
---|
| 211 | !-- Open the output file. At the end of the simulation, output is directed |
---|
| 212 | !-- to unit 19. |
---|
| 213 | IF ( ( runnr == 0 .OR. force_print_header ) .AND. & |
---|
| 214 | .NOT. simulated_time_at_begin /= simulated_time ) THEN |
---|
| 215 | io = 15 ! header output on file RUN_CONTROL |
---|
| 216 | ELSE |
---|
| 217 | io = 19 ! header output on file HEADER |
---|
| 218 | ENDIF |
---|
| 219 | CALL check_open( io ) |
---|
| 220 | |
---|
| 221 | ! |
---|
| 222 | !-- At the end of the run, output file (HEADER) will be rewritten with |
---|
[1551] | 223 | !-- new information |
---|
[1] | 224 | IF ( io == 19 .AND. simulated_time_at_begin /= simulated_time ) REWIND( 19 ) |
---|
| 225 | |
---|
| 226 | ! |
---|
| 227 | !-- Determine kind of model run |
---|
| 228 | IF ( TRIM( initializing_actions ) == 'read_restart_data' ) THEN |
---|
[1764] | 229 | run_classification = 'restart run' |
---|
[328] | 230 | ELSEIF ( TRIM( initializing_actions ) == 'cyclic_fill' ) THEN |
---|
[1764] | 231 | run_classification = 'run with cyclic fill of 3D - prerun data' |
---|
[147] | 232 | ELSEIF ( INDEX( initializing_actions, 'set_constant_profiles' ) /= 0 ) THEN |
---|
[1764] | 233 | run_classification = 'run without 1D - prerun' |
---|
[197] | 234 | ELSEIF ( INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 ) THEN |
---|
[1764] | 235 | run_classification = 'run with 1D - prerun' |
---|
[2696] | 236 | ELSEIF ( INDEX( initializing_actions, 'inifor' ) /= 0 ) THEN |
---|
| 237 | run_classification = 'run initialized with COSMO data' |
---|
[197] | 238 | ELSEIF ( INDEX( initializing_actions, 'by_user' ) /=0 ) THEN |
---|
[1764] | 239 | run_classification = 'run initialized by user' |
---|
[3045] | 240 | ELSEIF ( INDEX( initializing_actions, 'initialize_vortex' ) /=0 ) THEN |
---|
| 241 | run_classification = 'run additionally initialized by a Rankine-vortex' |
---|
| 242 | ELSEIF ( INDEX( initializing_actions, 'initialize_ptanom' ) /=0 ) THEN |
---|
| 243 | run_classification = 'run additionally initialized by temperature anomaly' |
---|
[1] | 244 | ELSE |
---|
[254] | 245 | message_string = ' unknown action(s): ' // TRIM( initializing_actions ) |
---|
| 246 | CALL message( 'header', 'PA0191', 0, 0, 0, 6, 0 ) |
---|
[1] | 247 | ENDIF |
---|
[3241] | 248 | IF ( nested_run ) run_classification = 'nested ' // run_classification(1:63) |
---|
[3294] | 249 | IF ( ocean_mode ) THEN |
---|
[3241] | 250 | run_classification = 'ocean - ' // run_classification(1:61) |
---|
[97] | 251 | ELSE |
---|
[3241] | 252 | run_classification = 'atmosphere - ' // run_classification(1:57) |
---|
[97] | 253 | ENDIF |
---|
[1] | 254 | |
---|
| 255 | ! |
---|
| 256 | !-- Run-identification, date, time, host |
---|
| 257 | host_chr = host(1:10) |
---|
[75] | 258 | ver_rev = TRIM( version ) // ' ' // TRIM( revision ) |
---|
[102] | 259 | WRITE ( io, 100 ) ver_rev, TRIM( run_classification ) |
---|
[291] | 260 | IF ( TRIM( coupling_mode ) /= 'uncoupled' ) THEN |
---|
[2298] | 261 | WRITE ( io, 101 ) coupling_mode |
---|
[291] | 262 | ENDIF |
---|
[1108] | 263 | #if defined( __parallel ) |
---|
[2299] | 264 | IF ( coupling_start_time /= 0.0_wp .AND. .NOT. spinup ) THEN |
---|
[1106] | 265 | IF ( coupling_start_time > simulated_time_at_begin ) THEN |
---|
| 266 | WRITE ( io, 109 ) |
---|
| 267 | ELSE |
---|
| 268 | WRITE ( io, 114 ) |
---|
| 269 | ENDIF |
---|
| 270 | ENDIF |
---|
[1108] | 271 | #endif |
---|
[1429] | 272 | IF ( ensemble_member_nr /= 0 ) THEN |
---|
| 273 | WRITE ( io, 512 ) run_date, run_identifier, run_time, runnr, & |
---|
| 274 | ADJUSTR( host_chr ), ensemble_member_nr |
---|
| 275 | ELSE |
---|
| 276 | WRITE ( io, 102 ) run_date, run_identifier, run_time, runnr, & |
---|
[102] | 277 | ADJUSTR( host_chr ) |
---|
[1429] | 278 | ENDIF |
---|
[1] | 279 | #if defined( __parallel ) |
---|
[1482] | 280 | IF ( npex == -1 .AND. npey == -1 ) THEN |
---|
[1] | 281 | char1 = 'calculated' |
---|
| 282 | ELSE |
---|
| 283 | char1 = 'predefined' |
---|
| 284 | ENDIF |
---|
| 285 | IF ( threads_per_task == 1 ) THEN |
---|
[102] | 286 | WRITE ( io, 103 ) numprocs, pdims(1), pdims(2), TRIM( char1 ) |
---|
[1] | 287 | ELSE |
---|
[102] | 288 | WRITE ( io, 104 ) numprocs*threads_per_task, numprocs, & |
---|
[1] | 289 | threads_per_task, pdims(1), pdims(2), TRIM( char1 ) |
---|
| 290 | ENDIF |
---|
[2300] | 291 | |
---|
| 292 | IF ( pdims(2) == 1 ) THEN |
---|
[102] | 293 | WRITE ( io, 107 ) 'x' |
---|
[1] | 294 | ELSEIF ( pdims(1) == 1 ) THEN |
---|
[102] | 295 | WRITE ( io, 107 ) 'y' |
---|
[1] | 296 | ENDIF |
---|
[759] | 297 | IF ( numprocs /= maximum_parallel_io_streams ) THEN |
---|
| 298 | WRITE ( io, 108 ) maximum_parallel_io_streams |
---|
| 299 | ENDIF |
---|
[1] | 300 | #endif |
---|
[1764] | 301 | |
---|
| 302 | ! |
---|
| 303 | !-- Nesting informations |
---|
| 304 | IF ( nested_run ) THEN |
---|
[1791] | 305 | |
---|
[2967] | 306 | #if defined( __parallel ) |
---|
[1797] | 307 | WRITE ( io, 600 ) TRIM( nesting_mode ), & |
---|
| 308 | TRIM( nesting_datatransfer_mode ) |
---|
[1791] | 309 | CALL pmc_get_model_info( ncpl = ncpl, cpl_id = my_cpl_id ) |
---|
| 310 | |
---|
| 311 | DO n = 1, ncpl |
---|
| 312 | CALL pmc_get_model_info( request_for_cpl_id = n, cpl_name = cpl_name,& |
---|
| 313 | cpl_parent_id = cpl_parent_id, & |
---|
| 314 | lower_left_x = lower_left_coord_x, & |
---|
| 315 | lower_left_y = lower_left_coord_y, & |
---|
| 316 | npe_total = npe_total ) |
---|
| 317 | IF ( n == my_cpl_id ) THEN |
---|
| 318 | char1 = '*' |
---|
| 319 | ELSE |
---|
| 320 | char1 = ' ' |
---|
| 321 | ENDIF |
---|
| 322 | WRITE ( io, 601 ) TRIM( char1 ), n, cpl_parent_id, npe_total, & |
---|
| 323 | lower_left_coord_x, lower_left_coord_y, & |
---|
| 324 | TRIM( cpl_name ) |
---|
| 325 | ENDDO |
---|
[2967] | 326 | #endif |
---|
| 327 | |
---|
[1764] | 328 | ENDIF |
---|
[1] | 329 | WRITE ( io, 99 ) |
---|
| 330 | |
---|
| 331 | ! |
---|
| 332 | !-- Numerical schemes |
---|
| 333 | WRITE ( io, 110 ) |
---|
[2696] | 334 | IF ( rans_mode ) THEN |
---|
| 335 | WRITE ( io, 124 ) TRIM( turbulence_closure ), 'RANS' |
---|
| 336 | ELSE |
---|
| 337 | WRITE ( io, 124 ) TRIM( turbulence_closure ), 'LES' |
---|
| 338 | ENDIF |
---|
[2037] | 339 | WRITE ( io, 121 ) TRIM( approximation ) |
---|
[1] | 340 | IF ( psolver(1:7) == 'poisfft' ) THEN |
---|
| 341 | WRITE ( io, 111 ) TRIM( fft_method ) |
---|
[1216] | 342 | IF ( transpose_compute_overlap ) WRITE( io, 115 ) |
---|
[1] | 343 | ELSEIF ( psolver == 'sor' ) THEN |
---|
| 344 | WRITE ( io, 112 ) nsor_ini, nsor, omega_sor |
---|
[1575] | 345 | ELSEIF ( psolver(1:9) == 'multigrid' ) THEN |
---|
| 346 | WRITE ( io, 135 ) TRIM(psolver), cycle_mg, maximum_grid_level, ngsrb |
---|
[1] | 347 | IF ( mg_cycles == -1 ) THEN |
---|
| 348 | WRITE ( io, 140 ) residual_limit |
---|
| 349 | ELSE |
---|
| 350 | WRITE ( io, 141 ) mg_cycles |
---|
| 351 | ENDIF |
---|
| 352 | IF ( mg_switch_to_pe0_level == 0 ) THEN |
---|
| 353 | WRITE ( io, 136 ) nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, & |
---|
| 354 | nzt_mg(1) |
---|
[197] | 355 | ELSEIF ( mg_switch_to_pe0_level /= -1 ) THEN |
---|
[1] | 356 | WRITE ( io, 137 ) mg_switch_to_pe0_level, & |
---|
| 357 | mg_loc_ind(2,0)-mg_loc_ind(1,0)+1, & |
---|
| 358 | mg_loc_ind(4,0)-mg_loc_ind(3,0)+1, & |
---|
| 359 | nzt_mg(mg_switch_to_pe0_level), & |
---|
| 360 | nxr_mg(1)-nxl_mg(1)+1, nyn_mg(1)-nys_mg(1)+1, & |
---|
| 361 | nzt_mg(1) |
---|
| 362 | ENDIF |
---|
[1931] | 363 | IF ( psolver == 'multigrid_noopt' .AND. masking_method ) WRITE ( io, 144 ) |
---|
[1] | 364 | ENDIF |
---|
| 365 | IF ( call_psolver_at_all_substeps .AND. timestep_scheme(1:5) == 'runge' ) & |
---|
| 366 | THEN |
---|
| 367 | WRITE ( io, 142 ) |
---|
| 368 | ENDIF |
---|
| 369 | |
---|
| 370 | IF ( momentum_advec == 'pw-scheme' ) THEN |
---|
| 371 | WRITE ( io, 113 ) |
---|
[1299] | 372 | ELSEIF (momentum_advec == 'ws-scheme' ) THEN |
---|
[667] | 373 | WRITE ( io, 503 ) |
---|
[1] | 374 | ENDIF |
---|
| 375 | IF ( scalar_advec == 'pw-scheme' ) THEN |
---|
| 376 | WRITE ( io, 116 ) |
---|
[667] | 377 | ELSEIF ( scalar_advec == 'ws-scheme' ) THEN |
---|
| 378 | WRITE ( io, 504 ) |
---|
[1] | 379 | ELSE |
---|
| 380 | WRITE ( io, 118 ) |
---|
| 381 | ENDIF |
---|
[63] | 382 | |
---|
| 383 | WRITE ( io, 139 ) TRIM( loop_optimization ) |
---|
| 384 | |
---|
[1] | 385 | IF ( galilei_transformation ) THEN |
---|
| 386 | IF ( use_ug_for_galilei_tr ) THEN |
---|
[868] | 387 | char1 = '0.6 * geostrophic wind' |
---|
[1] | 388 | ELSE |
---|
| 389 | char1 = 'mean wind in model domain' |
---|
| 390 | ENDIF |
---|
| 391 | IF ( simulated_time_at_begin == simulated_time ) THEN |
---|
| 392 | char2 = 'at the start of the run' |
---|
| 393 | ELSE |
---|
| 394 | char2 = 'at the end of the run' |
---|
| 395 | ENDIF |
---|
[1353] | 396 | WRITE ( io, 119 ) TRIM( char1 ), TRIM( char2 ), & |
---|
| 397 | advected_distance_x/1000.0_wp, & |
---|
| 398 | advected_distance_y/1000.0_wp |
---|
[1] | 399 | ENDIF |
---|
[1001] | 400 | WRITE ( io, 122 ) timestep_scheme |
---|
[87] | 401 | IF ( use_upstream_for_tke ) WRITE ( io, 143 ) |
---|
[1353] | 402 | IF ( rayleigh_damping_factor /= 0.0_wp ) THEN |
---|
[3294] | 403 | IF ( .NOT. ocean_mode ) THEN |
---|
[108] | 404 | WRITE ( io, 123 ) 'above', rayleigh_damping_height, & |
---|
| 405 | rayleigh_damping_factor |
---|
| 406 | ELSE |
---|
| 407 | WRITE ( io, 123 ) 'below', rayleigh_damping_height, & |
---|
| 408 | rayleigh_damping_factor |
---|
| 409 | ENDIF |
---|
[1] | 410 | ENDIF |
---|
[940] | 411 | IF ( neutral ) WRITE ( io, 131 ) pt_surface |
---|
[75] | 412 | IF ( humidity ) THEN |
---|
[3274] | 413 | IF ( .NOT. bulk_cloud_model ) THEN |
---|
[1] | 414 | WRITE ( io, 129 ) |
---|
| 415 | ELSE |
---|
| 416 | WRITE ( io, 130 ) |
---|
| 417 | ENDIF |
---|
| 418 | ENDIF |
---|
| 419 | IF ( passive_scalar ) WRITE ( io, 134 ) |
---|
[240] | 420 | IF ( conserve_volume_flow ) THEN |
---|
[241] | 421 | WRITE ( io, 150 ) conserve_volume_flow_mode |
---|
| 422 | IF ( TRIM( conserve_volume_flow_mode ) == 'bulk_velocity' ) THEN |
---|
| 423 | WRITE ( io, 151 ) u_bulk, v_bulk |
---|
| 424 | ENDIF |
---|
[240] | 425 | ELSEIF ( dp_external ) THEN |
---|
| 426 | IF ( dp_smooth ) THEN |
---|
[241] | 427 | WRITE ( io, 152 ) dpdxy, dp_level_b, ', vertically smoothed.' |
---|
[240] | 428 | ELSE |
---|
[241] | 429 | WRITE ( io, 152 ) dpdxy, dp_level_b, '.' |
---|
[240] | 430 | ENDIF |
---|
| 431 | ENDIF |
---|
[1] | 432 | WRITE ( io, 99 ) |
---|
| 433 | |
---|
| 434 | ! |
---|
[1551] | 435 | !-- Runtime and timestep information |
---|
[1] | 436 | WRITE ( io, 200 ) |
---|
| 437 | IF ( .NOT. dt_fixed ) THEN |
---|
| 438 | WRITE ( io, 201 ) dt_max, cfl_factor |
---|
| 439 | ELSE |
---|
| 440 | WRITE ( io, 202 ) dt |
---|
| 441 | ENDIF |
---|
| 442 | WRITE ( io, 203 ) simulated_time_at_begin, end_time |
---|
| 443 | |
---|
[1322] | 444 | IF ( time_restart /= 9999999.9_wp .AND. & |
---|
[1] | 445 | simulated_time_at_begin == simulated_time ) THEN |
---|
[1322] | 446 | IF ( dt_restart == 9999999.9_wp ) THEN |
---|
[1] | 447 | WRITE ( io, 204 ) ' Restart at: ',time_restart |
---|
| 448 | ELSE |
---|
| 449 | WRITE ( io, 205 ) ' Restart at: ',time_restart, dt_restart |
---|
| 450 | ENDIF |
---|
| 451 | ENDIF |
---|
| 452 | |
---|
| 453 | IF ( simulated_time_at_begin /= simulated_time ) THEN |
---|
| 454 | i = MAX ( log_point_s(10)%counts, 1 ) |
---|
[1353] | 455 | IF ( ( simulated_time - simulated_time_at_begin ) == 0.0_wp ) THEN |
---|
| 456 | cpuseconds_per_simulated_second = 0.0_wp |
---|
[1] | 457 | ELSE |
---|
| 458 | cpuseconds_per_simulated_second = log_point_s(10)%sum / & |
---|
| 459 | ( simulated_time - & |
---|
| 460 | simulated_time_at_begin ) |
---|
| 461 | ENDIF |
---|
[1322] | 462 | WRITE ( io, 206 ) simulated_time, log_point_s(10)%sum, & |
---|
| 463 | log_point_s(10)%sum / REAL( i, KIND=wp ), & |
---|
[1] | 464 | cpuseconds_per_simulated_second |
---|
[1322] | 465 | IF ( time_restart /= 9999999.9_wp .AND. time_restart < end_time ) THEN |
---|
| 466 | IF ( dt_restart == 9999999.9_wp ) THEN |
---|
[1106] | 467 | WRITE ( io, 204 ) ' Next restart at: ',time_restart |
---|
[1] | 468 | ELSE |
---|
[1106] | 469 | WRITE ( io, 205 ) ' Next restart at: ',time_restart, dt_restart |
---|
[1] | 470 | ENDIF |
---|
| 471 | ENDIF |
---|
| 472 | ENDIF |
---|
| 473 | |
---|
[1324] | 474 | |
---|
[1] | 475 | ! |
---|
[291] | 476 | !-- Start time for coupled runs, if independent precursor runs for atmosphere |
---|
[1106] | 477 | !-- and ocean are used or have been used. In this case, coupling_start_time |
---|
| 478 | !-- defines the time when the coupling is switched on. |
---|
[1353] | 479 | IF ( coupling_start_time /= 0.0_wp ) THEN |
---|
[1106] | 480 | WRITE ( io, 207 ) coupling_start_time |
---|
[291] | 481 | ENDIF |
---|
| 482 | |
---|
| 483 | ! |
---|
[1] | 484 | !-- Computational grid |
---|
[3294] | 485 | IF ( .NOT. ocean_mode ) THEN |
---|
[3065] | 486 | WRITE ( io, 250 ) dx, dy |
---|
| 487 | |
---|
| 488 | DO i = 1, number_stretch_level_start+1 |
---|
| 489 | WRITE ( io, 253 ) i, dz(i) |
---|
| 490 | ENDDO |
---|
| 491 | |
---|
| 492 | WRITE( io, 251 ) (nx+1)*dx, (ny+1)*dy, zu(nzt+1) |
---|
| 493 | |
---|
| 494 | IF ( ANY( dz_stretch_level_start_index < nzt+1 ) ) THEN |
---|
| 495 | WRITE( io, '(A)', advance='no') ' Vertical stretching starts at height:' |
---|
| 496 | DO i = 1, number_stretch_level_start |
---|
| 497 | WRITE ( io, '(F10.1,A3)', advance='no' ) dz_stretch_level_start(i), ' m,' |
---|
| 498 | ENDDO |
---|
| 499 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching starts at index: ' |
---|
| 500 | DO i = 1, number_stretch_level_start |
---|
| 501 | WRITE ( io, '(I12,A1)', advance='no' ) dz_stretch_level_start_index(i), ',' |
---|
| 502 | ENDDO |
---|
| 503 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching ends at height: ' |
---|
| 504 | DO i = 1, number_stretch_level_start |
---|
| 505 | WRITE ( io, '(F10.1,A3)', advance='no' ) dz_stretch_level_end(i), ' m,' |
---|
| 506 | ENDDO |
---|
| 507 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching ends at index: ' |
---|
| 508 | DO i = 1, number_stretch_level_start |
---|
| 509 | WRITE ( io, '(I12,A1)', advance='no' ) dz_stretch_level_end_index(i), ',' |
---|
| 510 | ENDDO |
---|
| 511 | WRITE( io, '(/,A)', advance='no') ' Factor used for stretching: ' |
---|
| 512 | DO i = 1, number_stretch_level_start |
---|
| 513 | WRITE ( io, '(F12.3,A1)', advance='no' ) dz_stretch_factor_array(i), ',' |
---|
| 514 | ENDDO |
---|
[94] | 515 | ENDIF |
---|
[3065] | 516 | |
---|
[94] | 517 | ELSE |
---|
[3065] | 518 | WRITE ( io, 250 ) dx, dy |
---|
| 519 | DO i = 1, number_stretch_level_start+1 |
---|
| 520 | WRITE ( io, 253 ) i, dz(i) |
---|
| 521 | ENDDO |
---|
| 522 | |
---|
| 523 | WRITE ( io, 251 ) (nx+1)*dx, (ny+1)*dy, zu(0) |
---|
| 524 | |
---|
| 525 | IF ( ANY( dz_stretch_level_start_index > 0 ) ) THEN |
---|
| 526 | WRITE( io, '(A)', advance='no') ' Vertical stretching starts at height:' |
---|
| 527 | DO i = 1, number_stretch_level_start |
---|
| 528 | WRITE ( io, '(F10.1,A3)', advance='no' ) dz_stretch_level_start(i), ' m,' |
---|
| 529 | ENDDO |
---|
| 530 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching starts at index: ' |
---|
| 531 | DO i = 1, number_stretch_level_start |
---|
| 532 | WRITE ( io, '(I12,A1)', advance='no' ) dz_stretch_level_start_index(i), ',' |
---|
| 533 | ENDDO |
---|
| 534 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching ends at height: ' |
---|
| 535 | DO i = 1, number_stretch_level_start |
---|
| 536 | WRITE ( io, '(F10.1,A3)', advance='no' ) dz_stretch_level_end(i), ' m,' |
---|
| 537 | ENDDO |
---|
| 538 | WRITE( io, '(/,A)', advance='no') ' Vertical stretching ends at index: ' |
---|
| 539 | DO i = 1, number_stretch_level_start |
---|
| 540 | WRITE ( io, '(I12,A1)', advance='no' ) dz_stretch_level_end_index(i), ',' |
---|
| 541 | ENDDO |
---|
| 542 | WRITE( io, '(/,A)', advance='no') ' Factor used for stretching: ' |
---|
| 543 | DO i = 1, number_stretch_level_start |
---|
| 544 | WRITE ( io, '(F12.3,A1)', advance='no' ) dz_stretch_factor_array(i), ',' |
---|
| 545 | ENDDO |
---|
[94] | 546 | ENDIF |
---|
[1] | 547 | ENDIF |
---|
[3065] | 548 | WRITE ( io, 254 ) nx, ny, nzt+1, MIN( nnx, nx+1 ), MIN( nny, ny+1 ), & |
---|
[1] | 549 | MIN( nnz+2, nzt+2 ) |
---|
| 550 | IF ( sloping_surface ) WRITE ( io, 260 ) alpha_surface |
---|
| 551 | |
---|
| 552 | ! |
---|
[1365] | 553 | !-- Profile for the large scale vertial velocity |
---|
| 554 | !-- Building output strings, starting with surface value |
---|
| 555 | IF ( large_scale_subsidence ) THEN |
---|
| 556 | temperatures = ' 0.0' |
---|
| 557 | gradients = '------' |
---|
| 558 | slices = ' 0' |
---|
| 559 | coordinates = ' 0.0' |
---|
| 560 | i = 1 |
---|
| 561 | DO WHILE ( subs_vertical_gradient_level_i(i) /= -9999 ) |
---|
| 562 | |
---|
| 563 | WRITE (coor_chr,'(E10.2,7X)') & |
---|
| 564 | w_subs(subs_vertical_gradient_level_i(i)) |
---|
| 565 | temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) |
---|
| 566 | |
---|
| 567 | WRITE (coor_chr,'(E10.2,7X)') subs_vertical_gradient(i) |
---|
| 568 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 569 | |
---|
| 570 | WRITE (coor_chr,'(I10,7X)') subs_vertical_gradient_level_i(i) |
---|
| 571 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 572 | |
---|
| 573 | WRITE (coor_chr,'(F10.2,7X)') subs_vertical_gradient_level(i) |
---|
| 574 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 575 | |
---|
| 576 | IF ( i == 10 ) THEN |
---|
| 577 | EXIT |
---|
| 578 | ELSE |
---|
| 579 | i = i + 1 |
---|
| 580 | ENDIF |
---|
| 581 | |
---|
| 582 | ENDDO |
---|
| 583 | |
---|
| 584 | |
---|
| 585 | IF ( .NOT. large_scale_forcing ) THEN |
---|
| 586 | WRITE ( io, 426 ) TRIM( coordinates ), TRIM( temperatures ), & |
---|
| 587 | TRIM( gradients ), TRIM( slices ) |
---|
| 588 | ENDIF |
---|
| 589 | |
---|
| 590 | |
---|
| 591 | ENDIF |
---|
| 592 | |
---|
| 593 | !-- Profile of the geostrophic wind (component ug) |
---|
| 594 | !-- Building output strings |
---|
| 595 | WRITE ( ugcomponent, '(F6.2)' ) ug_surface |
---|
| 596 | gradients = '------' |
---|
| 597 | slices = ' 0' |
---|
| 598 | coordinates = ' 0.0' |
---|
| 599 | i = 1 |
---|
| 600 | DO WHILE ( ug_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 601 | |
---|
| 602 | WRITE (coor_chr,'(F6.2,1X)') ug(ug_vertical_gradient_level_ind(i)) |
---|
| 603 | ugcomponent = TRIM( ugcomponent ) // ' ' // TRIM( coor_chr ) |
---|
| 604 | |
---|
| 605 | WRITE (coor_chr,'(F6.2,1X)') ug_vertical_gradient(i) |
---|
| 606 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 607 | |
---|
| 608 | WRITE (coor_chr,'(I6,1X)') ug_vertical_gradient_level_ind(i) |
---|
| 609 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 610 | |
---|
| 611 | WRITE (coor_chr,'(F6.1,1X)') ug_vertical_gradient_level(i) |
---|
| 612 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 613 | |
---|
| 614 | IF ( i == 10 ) THEN |
---|
| 615 | EXIT |
---|
| 616 | ELSE |
---|
| 617 | i = i + 1 |
---|
| 618 | ENDIF |
---|
| 619 | |
---|
| 620 | ENDDO |
---|
| 621 | |
---|
| 622 | IF ( .NOT. large_scale_forcing ) THEN |
---|
| 623 | WRITE ( io, 423 ) TRIM( coordinates ), TRIM( ugcomponent ), & |
---|
| 624 | TRIM( gradients ), TRIM( slices ) |
---|
| 625 | ENDIF |
---|
| 626 | |
---|
| 627 | !-- Profile of the geostrophic wind (component vg) |
---|
| 628 | !-- Building output strings |
---|
| 629 | WRITE ( vgcomponent, '(F6.2)' ) vg_surface |
---|
| 630 | gradients = '------' |
---|
| 631 | slices = ' 0' |
---|
| 632 | coordinates = ' 0.0' |
---|
| 633 | i = 1 |
---|
| 634 | DO WHILE ( vg_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 635 | |
---|
| 636 | WRITE (coor_chr,'(F6.2,1X)') vg(vg_vertical_gradient_level_ind(i)) |
---|
| 637 | vgcomponent = TRIM( vgcomponent ) // ' ' // TRIM( coor_chr ) |
---|
| 638 | |
---|
| 639 | WRITE (coor_chr,'(F6.2,1X)') vg_vertical_gradient(i) |
---|
| 640 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 641 | |
---|
| 642 | WRITE (coor_chr,'(I6,1X)') vg_vertical_gradient_level_ind(i) |
---|
| 643 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 644 | |
---|
| 645 | WRITE (coor_chr,'(F6.1,1X)') vg_vertical_gradient_level(i) |
---|
| 646 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 647 | |
---|
| 648 | IF ( i == 10 ) THEN |
---|
| 649 | EXIT |
---|
| 650 | ELSE |
---|
| 651 | i = i + 1 |
---|
| 652 | ENDIF |
---|
| 653 | |
---|
| 654 | ENDDO |
---|
| 655 | |
---|
| 656 | IF ( .NOT. large_scale_forcing ) THEN |
---|
| 657 | WRITE ( io, 424 ) TRIM( coordinates ), TRIM( vgcomponent ), & |
---|
| 658 | TRIM( gradients ), TRIM( slices ) |
---|
| 659 | ENDIF |
---|
| 660 | |
---|
| 661 | ! |
---|
[1] | 662 | !-- Topography |
---|
| 663 | WRITE ( io, 270 ) topography |
---|
| 664 | SELECT CASE ( TRIM( topography ) ) |
---|
| 665 | |
---|
| 666 | CASE ( 'flat' ) |
---|
| 667 | ! no actions necessary |
---|
| 668 | |
---|
| 669 | CASE ( 'single_building' ) |
---|
| 670 | blx = INT( building_length_x / dx ) |
---|
| 671 | bly = INT( building_length_y / dy ) |
---|
[1675] | 672 | bh = MINLOC( ABS( zw - building_height ), 1 ) - 1 |
---|
| 673 | IF ( ABS( zw(bh ) - building_height ) == & |
---|
| 674 | ABS( zw(bh+1) - building_height ) ) bh = bh + 1 |
---|
[1] | 675 | |
---|
[1322] | 676 | IF ( building_wall_left == 9999999.9_wp ) THEN |
---|
[1] | 677 | building_wall_left = ( nx + 1 - blx ) / 2 * dx |
---|
| 678 | ENDIF |
---|
[1353] | 679 | bxl = INT ( building_wall_left / dx + 0.5_wp ) |
---|
[1] | 680 | bxr = bxl + blx |
---|
| 681 | |
---|
[1322] | 682 | IF ( building_wall_south == 9999999.9_wp ) THEN |
---|
[1] | 683 | building_wall_south = ( ny + 1 - bly ) / 2 * dy |
---|
| 684 | ENDIF |
---|
[1353] | 685 | bys = INT ( building_wall_south / dy + 0.5_wp ) |
---|
[1] | 686 | byn = bys + bly |
---|
| 687 | |
---|
| 688 | WRITE ( io, 271 ) building_length_x, building_length_y, & |
---|
| 689 | building_height, bxl, bxr, bys, byn |
---|
| 690 | |
---|
[240] | 691 | CASE ( 'single_street_canyon' ) |
---|
[1675] | 692 | ch = MINLOC( ABS( zw - canyon_height ), 1 ) - 1 |
---|
| 693 | IF ( ABS( zw(ch ) - canyon_height ) == & |
---|
| 694 | ABS( zw(ch+1) - canyon_height ) ) ch = ch + 1 |
---|
[1322] | 695 | IF ( canyon_width_x /= 9999999.9_wp ) THEN |
---|
[240] | 696 | ! |
---|
| 697 | !-- Street canyon in y direction |
---|
| 698 | cwx = NINT( canyon_width_x / dx ) |
---|
[1322] | 699 | IF ( canyon_wall_left == 9999999.9_wp ) THEN |
---|
[240] | 700 | canyon_wall_left = ( nx + 1 - cwx ) / 2 * dx |
---|
| 701 | ENDIF |
---|
| 702 | cxl = NINT( canyon_wall_left / dx ) |
---|
| 703 | cxr = cxl + cwx |
---|
| 704 | WRITE ( io, 272 ) 'y', canyon_height, ch, 'u', cxl, cxr |
---|
| 705 | |
---|
[1322] | 706 | ELSEIF ( canyon_width_y /= 9999999.9_wp ) THEN |
---|
[240] | 707 | ! |
---|
| 708 | !-- Street canyon in x direction |
---|
| 709 | cwy = NINT( canyon_width_y / dy ) |
---|
[1322] | 710 | IF ( canyon_wall_south == 9999999.9_wp ) THEN |
---|
[240] | 711 | canyon_wall_south = ( ny + 1 - cwy ) / 2 * dy |
---|
| 712 | ENDIF |
---|
| 713 | cys = NINT( canyon_wall_south / dy ) |
---|
| 714 | cyn = cys + cwy |
---|
| 715 | WRITE ( io, 272 ) 'x', canyon_height, ch, 'v', cys, cyn |
---|
| 716 | ENDIF |
---|
| 717 | |
---|
[2232] | 718 | CASE ( 'tunnel' ) |
---|
| 719 | IF ( tunnel_width_x /= 9999999.9_wp ) THEN |
---|
| 720 | ! |
---|
| 721 | !-- Tunnel axis in y direction |
---|
| 722 | IF ( tunnel_length == 9999999.9_wp .OR. & |
---|
| 723 | tunnel_length >= ( nx + 1 ) * dx ) THEN |
---|
| 724 | WRITE ( io, 273 ) 'y', tunnel_height, tunnel_wall_depth, & |
---|
| 725 | tunnel_width_x |
---|
| 726 | ELSE |
---|
| 727 | WRITE ( io, 274 ) 'y', tunnel_height, tunnel_wall_depth, & |
---|
| 728 | tunnel_width_x, tunnel_length |
---|
| 729 | ENDIF |
---|
| 730 | |
---|
| 731 | ELSEIF ( tunnel_width_y /= 9999999.9_wp ) THEN |
---|
| 732 | ! |
---|
| 733 | !-- Tunnel axis in x direction |
---|
| 734 | IF ( tunnel_length == 9999999.9_wp .OR. & |
---|
| 735 | tunnel_length >= ( ny + 1 ) * dy ) THEN |
---|
| 736 | WRITE ( io, 273 ) 'x', tunnel_height, tunnel_wall_depth, & |
---|
| 737 | tunnel_width_y |
---|
| 738 | ELSE |
---|
| 739 | WRITE ( io, 274 ) 'x', tunnel_height, tunnel_wall_depth, & |
---|
| 740 | tunnel_width_y, tunnel_length |
---|
| 741 | ENDIF |
---|
| 742 | ENDIF |
---|
| 743 | |
---|
[1] | 744 | END SELECT |
---|
| 745 | |
---|
[256] | 746 | IF ( TRIM( topography ) /= 'flat' ) THEN |
---|
| 747 | IF ( TRIM( topography_grid_convention ) == ' ' ) THEN |
---|
| 748 | IF ( TRIM( topography ) == 'single_building' .OR. & |
---|
| 749 | TRIM( topography ) == 'single_street_canyon' ) THEN |
---|
| 750 | WRITE ( io, 278 ) |
---|
| 751 | ELSEIF ( TRIM( topography ) == 'read_from_file' ) THEN |
---|
| 752 | WRITE ( io, 279 ) |
---|
| 753 | ENDIF |
---|
| 754 | ELSEIF ( TRIM( topography_grid_convention ) == 'cell_edge' ) THEN |
---|
| 755 | WRITE ( io, 278 ) |
---|
| 756 | ELSEIF ( TRIM( topography_grid_convention ) == 'cell_center' ) THEN |
---|
| 757 | WRITE ( io, 279 ) |
---|
| 758 | ENDIF |
---|
| 759 | ENDIF |
---|
| 760 | |
---|
[2550] | 761 | !-- Complex terrain |
---|
| 762 | IF ( complex_terrain ) THEN |
---|
| 763 | WRITE( io, 280 ) |
---|
| 764 | IF ( turbulent_inflow ) THEN |
---|
[4168] | 765 | WRITE( io, 281 ) zu(topo_top_ind(0,0,0)) |
---|
[2550] | 766 | ENDIF |
---|
| 767 | IF ( TRIM( initializing_actions ) == 'cyclic_fill' ) THEN |
---|
| 768 | WRITE( io, 282 ) |
---|
| 769 | ENDIF |
---|
| 770 | ENDIF |
---|
[3302] | 771 | ! |
---|
[1] | 772 | !-- Boundary conditions |
---|
| 773 | IF ( ibc_p_b == 0 ) THEN |
---|
[1826] | 774 | r_lower = 'p(0) = 0 |' |
---|
[1] | 775 | ELSEIF ( ibc_p_b == 1 ) THEN |
---|
[1826] | 776 | r_lower = 'p(0) = p(1) |' |
---|
[1] | 777 | ENDIF |
---|
| 778 | IF ( ibc_p_t == 0 ) THEN |
---|
[1826] | 779 | r_upper = 'p(nzt+1) = 0 |' |
---|
[1] | 780 | ELSE |
---|
[1826] | 781 | r_upper = 'p(nzt+1) = p(nzt) |' |
---|
[1] | 782 | ENDIF |
---|
| 783 | |
---|
| 784 | IF ( ibc_uv_b == 0 ) THEN |
---|
[1826] | 785 | r_lower = TRIM( r_lower ) // ' uv(0) = -uv(1) |' |
---|
[1] | 786 | ELSE |
---|
[1826] | 787 | r_lower = TRIM( r_lower ) // ' uv(0) = uv(1) |' |
---|
[1] | 788 | ENDIF |
---|
[132] | 789 | IF ( TRIM( bc_uv_t ) == 'dirichlet_0' ) THEN |
---|
[1826] | 790 | r_upper = TRIM( r_upper ) // ' uv(nzt+1) = 0 |' |
---|
[132] | 791 | ELSEIF ( ibc_uv_t == 0 ) THEN |
---|
[1826] | 792 | r_upper = TRIM( r_upper ) // ' uv(nzt+1) = ug(nzt+1), vg(nzt+1) |' |
---|
[1] | 793 | ELSE |
---|
[1826] | 794 | r_upper = TRIM( r_upper ) // ' uv(nzt+1) = uv(nzt) |' |
---|
[1] | 795 | ENDIF |
---|
| 796 | |
---|
| 797 | IF ( ibc_pt_b == 0 ) THEN |
---|
[1551] | 798 | IF ( land_surface ) THEN |
---|
[1826] | 799 | r_lower = TRIM( r_lower ) // ' pt(0) = from soil model' |
---|
[1551] | 800 | ELSE |
---|
[1826] | 801 | r_lower = TRIM( r_lower ) // ' pt(0) = pt_surface' |
---|
[1551] | 802 | ENDIF |
---|
[102] | 803 | ELSEIF ( ibc_pt_b == 1 ) THEN |
---|
[1826] | 804 | r_lower = TRIM( r_lower ) // ' pt(0) = pt(1)' |
---|
[102] | 805 | ELSEIF ( ibc_pt_b == 2 ) THEN |
---|
[1826] | 806 | r_lower = TRIM( r_lower ) // ' pt(0) = from coupled model' |
---|
[1] | 807 | ENDIF |
---|
| 808 | IF ( ibc_pt_t == 0 ) THEN |
---|
[1826] | 809 | r_upper = TRIM( r_upper ) // ' pt(nzt+1) = pt_top' |
---|
[19] | 810 | ELSEIF( ibc_pt_t == 1 ) THEN |
---|
[1826] | 811 | r_upper = TRIM( r_upper ) // ' pt(nzt+1) = pt(nzt)' |
---|
[19] | 812 | ELSEIF( ibc_pt_t == 2 ) THEN |
---|
[1826] | 813 | r_upper = TRIM( r_upper ) // ' pt(nzt+1) = pt(nzt) + dpt/dz_ini' |
---|
[667] | 814 | |
---|
[1] | 815 | ENDIF |
---|
| 816 | |
---|
[1826] | 817 | WRITE ( io, 300 ) r_lower, r_upper |
---|
[1] | 818 | |
---|
| 819 | IF ( .NOT. constant_diffusion ) THEN |
---|
| 820 | IF ( ibc_e_b == 1 ) THEN |
---|
[1826] | 821 | r_lower = 'e(0) = e(1)' |
---|
[1] | 822 | ELSE |
---|
[1826] | 823 | r_lower = 'e(0) = e(1) = (u*/0.1)**2' |
---|
[1] | 824 | ENDIF |
---|
[1826] | 825 | r_upper = 'e(nzt+1) = e(nzt) = e(nzt-1)' |
---|
[1] | 826 | |
---|
[1826] | 827 | WRITE ( io, 301 ) 'e', r_lower, r_upper |
---|
[1] | 828 | |
---|
| 829 | ENDIF |
---|
| 830 | |
---|
[3294] | 831 | IF ( ocean_mode ) THEN |
---|
[1826] | 832 | r_lower = 'sa(0) = sa(1)' |
---|
[97] | 833 | IF ( ibc_sa_t == 0 ) THEN |
---|
[1826] | 834 | r_upper = 'sa(nzt+1) = sa_surface' |
---|
[1] | 835 | ELSE |
---|
[1826] | 836 | r_upper = 'sa(nzt+1) = sa(nzt)' |
---|
[1] | 837 | ENDIF |
---|
[1826] | 838 | WRITE ( io, 301 ) 'sa', r_lower, r_upper |
---|
[97] | 839 | ENDIF |
---|
[1] | 840 | |
---|
[97] | 841 | IF ( humidity ) THEN |
---|
| 842 | IF ( ibc_q_b == 0 ) THEN |
---|
[1551] | 843 | IF ( land_surface ) THEN |
---|
[1826] | 844 | r_lower = 'q(0) = from soil model' |
---|
[1551] | 845 | ELSE |
---|
[1826] | 846 | r_lower = 'q(0) = q_surface' |
---|
[1551] | 847 | ENDIF |
---|
| 848 | |
---|
[97] | 849 | ELSE |
---|
[1992] | 850 | r_lower = 'q(0) = q(1)' |
---|
[97] | 851 | ENDIF |
---|
| 852 | IF ( ibc_q_t == 0 ) THEN |
---|
[1992] | 853 | r_upper = 'q(nzt+1) = q_top' |
---|
[97] | 854 | ELSE |
---|
[1992] | 855 | r_upper = 'q(nzt+1) = q(nzt) + dq/dz' |
---|
[97] | 856 | ENDIF |
---|
[1826] | 857 | WRITE ( io, 301 ) 'q', r_lower, r_upper |
---|
[97] | 858 | ENDIF |
---|
[1] | 859 | |
---|
[97] | 860 | IF ( passive_scalar ) THEN |
---|
[1960] | 861 | IF ( ibc_s_b == 0 ) THEN |
---|
[1992] | 862 | r_lower = 's(0) = s_surface' |
---|
[97] | 863 | ELSE |
---|
[1992] | 864 | r_lower = 's(0) = s(1)' |
---|
[97] | 865 | ENDIF |
---|
[1960] | 866 | IF ( ibc_s_t == 0 ) THEN |
---|
[1992] | 867 | r_upper = 's(nzt+1) = s_top' |
---|
| 868 | ELSEIF ( ibc_s_t == 1 ) THEN |
---|
| 869 | r_upper = 's(nzt+1) = s(nzt)' |
---|
| 870 | ELSEIF ( ibc_s_t == 2 ) THEN |
---|
| 871 | r_upper = 's(nzt+1) = s(nzt) + ds/dz' |
---|
[97] | 872 | ENDIF |
---|
[1826] | 873 | WRITE ( io, 301 ) 's', r_lower, r_upper |
---|
[1] | 874 | ENDIF |
---|
| 875 | |
---|
| 876 | IF ( use_surface_fluxes ) THEN |
---|
| 877 | WRITE ( io, 303 ) |
---|
| 878 | IF ( constant_heatflux ) THEN |
---|
[1299] | 879 | IF ( large_scale_forcing .AND. lsf_surf ) THEN |
---|
[2232] | 880 | IF ( surf_def_h(0)%ns >= 1 ) WRITE ( io, 306 ) surf_def_h(0)%shf(1) |
---|
[1241] | 881 | ELSE |
---|
| 882 | WRITE ( io, 306 ) surface_heatflux |
---|
| 883 | ENDIF |
---|
[1] | 884 | IF ( random_heatflux ) WRITE ( io, 307 ) |
---|
| 885 | ENDIF |
---|
[75] | 886 | IF ( humidity .AND. constant_waterflux ) THEN |
---|
[1299] | 887 | IF ( large_scale_forcing .AND. lsf_surf ) THEN |
---|
[2232] | 888 | WRITE ( io, 311 ) surf_def_h(0)%qsws(1) |
---|
[1241] | 889 | ELSE |
---|
| 890 | WRITE ( io, 311 ) surface_waterflux |
---|
| 891 | ENDIF |
---|
[1] | 892 | ENDIF |
---|
[1960] | 893 | IF ( passive_scalar .AND. constant_scalarflux ) THEN |
---|
| 894 | WRITE ( io, 313 ) surface_scalarflux |
---|
[1] | 895 | ENDIF |
---|
| 896 | ENDIF |
---|
| 897 | |
---|
[19] | 898 | IF ( use_top_fluxes ) THEN |
---|
| 899 | WRITE ( io, 304 ) |
---|
[102] | 900 | IF ( coupling_mode == 'uncoupled' ) THEN |
---|
[151] | 901 | WRITE ( io, 320 ) top_momentumflux_u, top_momentumflux_v |
---|
[102] | 902 | IF ( constant_top_heatflux ) THEN |
---|
| 903 | WRITE ( io, 306 ) top_heatflux |
---|
| 904 | ENDIF |
---|
| 905 | ELSEIF ( coupling_mode == 'ocean_to_atmosphere' ) THEN |
---|
| 906 | WRITE ( io, 316 ) |
---|
[19] | 907 | ENDIF |
---|
[3294] | 908 | IF ( ocean_mode .AND. constant_top_salinityflux ) & |
---|
[97] | 909 | WRITE ( io, 309 ) top_salinityflux |
---|
[1960] | 910 | IF ( humidity ) WRITE ( io, 315 ) |
---|
[1992] | 911 | IF ( passive_scalar .AND. constant_top_scalarflux ) & |
---|
| 912 | WRITE ( io, 302 ) top_scalarflux |
---|
[19] | 913 | ENDIF |
---|
| 914 | |
---|
[1691] | 915 | IF ( constant_flux_layer ) THEN |
---|
| 916 | WRITE ( io, 305 ) (zu(1)-zu(0)), roughness_length, & |
---|
| 917 | z0h_factor*roughness_length, kappa, & |
---|
| 918 | zeta_min, zeta_max |
---|
[1] | 919 | IF ( .NOT. constant_heatflux ) WRITE ( io, 308 ) |
---|
[75] | 920 | IF ( humidity .AND. .NOT. constant_waterflux ) THEN |
---|
[1] | 921 | WRITE ( io, 312 ) |
---|
| 922 | ENDIF |
---|
[1960] | 923 | IF ( passive_scalar .AND. .NOT. constant_scalarflux ) THEN |
---|
[1] | 924 | WRITE ( io, 314 ) |
---|
| 925 | ENDIF |
---|
| 926 | ELSE |
---|
| 927 | IF ( INDEX(initializing_actions, 'set_1d-model_profiles') /= 0 ) THEN |
---|
[1691] | 928 | WRITE ( io, 310 ) zeta_min, zeta_max |
---|
[1] | 929 | ENDIF |
---|
| 930 | ENDIF |
---|
| 931 | |
---|
| 932 | WRITE ( io, 317 ) bc_lr, bc_ns |
---|
[707] | 933 | IF ( .NOT. bc_lr_cyc .OR. .NOT. bc_ns_cyc ) THEN |
---|
[1159] | 934 | WRITE ( io, 318 ) use_cmax, pt_damping_width, pt_damping_factor |
---|
[151] | 935 | IF ( turbulent_inflow ) THEN |
---|
[4301] | 936 | IF ( y_shift == 0 ) THEN |
---|
[1560] | 937 | WRITE ( io, 319 ) recycling_width, recycling_plane, & |
---|
| 938 | inflow_damping_height, inflow_damping_width |
---|
| 939 | ELSE |
---|
[4301] | 940 | WRITE ( io, 322 ) y_shift, recycling_width, recycling_plane, & |
---|
[1560] | 941 | inflow_damping_height, inflow_damping_width |
---|
| 942 | END IF |
---|
[151] | 943 | ENDIF |
---|
[2050] | 944 | IF ( turbulent_outflow ) THEN |
---|
| 945 | WRITE ( io, 323 ) outflow_source_plane, INT(outflow_source_plane/dx) |
---|
| 946 | ENDIF |
---|
[1] | 947 | ENDIF |
---|
| 948 | |
---|
| 949 | ! |
---|
[1365] | 950 | !-- Initial Profiles |
---|
| 951 | WRITE ( io, 321 ) |
---|
| 952 | ! |
---|
| 953 | !-- Initial wind profiles |
---|
| 954 | IF ( u_profile(1) /= 9999999.9_wp ) WRITE ( io, 427 ) |
---|
| 955 | |
---|
| 956 | ! |
---|
| 957 | !-- Initial temperature profile |
---|
| 958 | !-- Building output strings, starting with surface temperature |
---|
| 959 | WRITE ( temperatures, '(F6.2)' ) pt_surface |
---|
| 960 | gradients = '------' |
---|
| 961 | slices = ' 0' |
---|
| 962 | coordinates = ' 0.0' |
---|
| 963 | i = 1 |
---|
| 964 | DO WHILE ( pt_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 965 | |
---|
| 966 | WRITE (coor_chr,'(F7.2)') pt_init(pt_vertical_gradient_level_ind(i)) |
---|
| 967 | temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) |
---|
| 968 | |
---|
| 969 | WRITE (coor_chr,'(F7.2)') pt_vertical_gradient(i) |
---|
| 970 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 971 | |
---|
| 972 | WRITE (coor_chr,'(I7)') pt_vertical_gradient_level_ind(i) |
---|
| 973 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 974 | |
---|
| 975 | WRITE (coor_chr,'(F7.1)') pt_vertical_gradient_level(i) |
---|
| 976 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 977 | |
---|
| 978 | IF ( i == 10 ) THEN |
---|
| 979 | EXIT |
---|
| 980 | ELSE |
---|
| 981 | i = i + 1 |
---|
| 982 | ENDIF |
---|
| 983 | |
---|
| 984 | ENDDO |
---|
| 985 | |
---|
| 986 | IF ( .NOT. nudging ) THEN |
---|
| 987 | WRITE ( io, 420 ) TRIM( coordinates ), TRIM( temperatures ), & |
---|
| 988 | TRIM( gradients ), TRIM( slices ) |
---|
| 989 | ELSE |
---|
| 990 | WRITE ( io, 428 ) |
---|
| 991 | ENDIF |
---|
| 992 | |
---|
| 993 | ! |
---|
| 994 | !-- Initial humidity profile |
---|
| 995 | !-- Building output strings, starting with surface humidity |
---|
[1960] | 996 | IF ( humidity ) THEN |
---|
[1365] | 997 | WRITE ( temperatures, '(E8.1)' ) q_surface |
---|
| 998 | gradients = '--------' |
---|
| 999 | slices = ' 0' |
---|
| 1000 | coordinates = ' 0.0' |
---|
| 1001 | i = 1 |
---|
| 1002 | DO WHILE ( q_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 1003 | |
---|
| 1004 | WRITE (coor_chr,'(E8.1,4X)') q_init(q_vertical_gradient_level_ind(i)) |
---|
| 1005 | temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) |
---|
| 1006 | |
---|
| 1007 | WRITE (coor_chr,'(E8.1,4X)') q_vertical_gradient(i) |
---|
| 1008 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 1009 | |
---|
| 1010 | WRITE (coor_chr,'(I8,4X)') q_vertical_gradient_level_ind(i) |
---|
| 1011 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 1012 | |
---|
| 1013 | WRITE (coor_chr,'(F8.1,4X)') q_vertical_gradient_level(i) |
---|
| 1014 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 1015 | |
---|
| 1016 | IF ( i == 10 ) THEN |
---|
| 1017 | EXIT |
---|
| 1018 | ELSE |
---|
| 1019 | i = i + 1 |
---|
| 1020 | ENDIF |
---|
| 1021 | |
---|
| 1022 | ENDDO |
---|
| 1023 | |
---|
[1960] | 1024 | IF ( .NOT. nudging ) THEN |
---|
| 1025 | WRITE ( io, 421 ) TRIM( coordinates ), TRIM( temperatures ), & |
---|
[1365] | 1026 | TRIM( gradients ), TRIM( slices ) |
---|
| 1027 | ENDIF |
---|
| 1028 | ENDIF |
---|
[1960] | 1029 | ! |
---|
| 1030 | !-- Initial scalar profile |
---|
| 1031 | !-- Building output strings, starting with surface humidity |
---|
| 1032 | IF ( passive_scalar ) THEN |
---|
| 1033 | WRITE ( temperatures, '(E8.1)' ) s_surface |
---|
| 1034 | gradients = '--------' |
---|
| 1035 | slices = ' 0' |
---|
| 1036 | coordinates = ' 0.0' |
---|
| 1037 | i = 1 |
---|
| 1038 | DO WHILE ( s_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 1039 | |
---|
[2073] | 1040 | WRITE (coor_chr,'(E8.1,4X)') s_init(s_vertical_gradient_level_ind(i)) |
---|
[1960] | 1041 | temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) |
---|
[1365] | 1042 | |
---|
[1960] | 1043 | WRITE (coor_chr,'(E8.1,4X)') s_vertical_gradient(i) |
---|
| 1044 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 1045 | |
---|
| 1046 | WRITE (coor_chr,'(I8,4X)') s_vertical_gradient_level_ind(i) |
---|
| 1047 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 1048 | |
---|
| 1049 | WRITE (coor_chr,'(F8.1,4X)') s_vertical_gradient_level(i) |
---|
| 1050 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 1051 | |
---|
| 1052 | IF ( i == 10 ) THEN |
---|
| 1053 | EXIT |
---|
| 1054 | ELSE |
---|
| 1055 | i = i + 1 |
---|
| 1056 | ENDIF |
---|
| 1057 | |
---|
| 1058 | ENDDO |
---|
| 1059 | |
---|
| 1060 | WRITE ( io, 422 ) TRIM( coordinates ), TRIM( temperatures ), & |
---|
| 1061 | TRIM( gradients ), TRIM( slices ) |
---|
| 1062 | ENDIF |
---|
| 1063 | |
---|
[1365] | 1064 | ! |
---|
| 1065 | !-- Initial salinity profile |
---|
| 1066 | !-- Building output strings, starting with surface salinity |
---|
[3294] | 1067 | IF ( ocean_mode ) THEN |
---|
[1365] | 1068 | WRITE ( temperatures, '(F6.2)' ) sa_surface |
---|
| 1069 | gradients = '------' |
---|
| 1070 | slices = ' 0' |
---|
| 1071 | coordinates = ' 0.0' |
---|
| 1072 | i = 1 |
---|
| 1073 | DO WHILE ( sa_vertical_gradient_level_ind(i) /= -9999 ) |
---|
| 1074 | |
---|
| 1075 | WRITE (coor_chr,'(F7.2)') sa_init(sa_vertical_gradient_level_ind(i)) |
---|
| 1076 | temperatures = TRIM( temperatures ) // ' ' // TRIM( coor_chr ) |
---|
| 1077 | |
---|
| 1078 | WRITE (coor_chr,'(F7.2)') sa_vertical_gradient(i) |
---|
| 1079 | gradients = TRIM( gradients ) // ' ' // TRIM( coor_chr ) |
---|
| 1080 | |
---|
| 1081 | WRITE (coor_chr,'(I7)') sa_vertical_gradient_level_ind(i) |
---|
| 1082 | slices = TRIM( slices ) // ' ' // TRIM( coor_chr ) |
---|
| 1083 | |
---|
| 1084 | WRITE (coor_chr,'(F7.1)') sa_vertical_gradient_level(i) |
---|
| 1085 | coordinates = TRIM( coordinates ) // ' ' // TRIM( coor_chr ) |
---|
| 1086 | |
---|
| 1087 | IF ( i == 10 ) THEN |
---|
| 1088 | EXIT |
---|
| 1089 | ELSE |
---|
| 1090 | i = i + 1 |
---|
| 1091 | ENDIF |
---|
| 1092 | |
---|
| 1093 | ENDDO |
---|
| 1094 | |
---|
| 1095 | WRITE ( io, 425 ) TRIM( coordinates ), TRIM( temperatures ), & |
---|
| 1096 | TRIM( gradients ), TRIM( slices ) |
---|
| 1097 | ENDIF |
---|
| 1098 | |
---|
| 1099 | |
---|
| 1100 | ! |
---|
[1] | 1101 | !-- Listing of 1D-profiles |
---|
[151] | 1102 | WRITE ( io, 325 ) dt_dopr_listing |
---|
[1353] | 1103 | IF ( averaging_interval_pr /= 0.0_wp ) THEN |
---|
[151] | 1104 | WRITE ( io, 326 ) averaging_interval_pr, dt_averaging_input_pr |
---|
[1] | 1105 | ENDIF |
---|
| 1106 | |
---|
| 1107 | ! |
---|
| 1108 | !-- DATA output |
---|
| 1109 | WRITE ( io, 330 ) |
---|
[1353] | 1110 | IF ( averaging_interval_pr /= 0.0_wp ) THEN |
---|
[151] | 1111 | WRITE ( io, 326 ) averaging_interval_pr, dt_averaging_input_pr |
---|
[1] | 1112 | ENDIF |
---|
| 1113 | |
---|
| 1114 | ! |
---|
| 1115 | !-- 1D-profiles |
---|
[346] | 1116 | dopr_chr = 'Profile:' |
---|
[1] | 1117 | IF ( dopr_n /= 0 ) THEN |
---|
| 1118 | WRITE ( io, 331 ) |
---|
| 1119 | |
---|
| 1120 | output_format = '' |
---|
[1783] | 1121 | output_format = netcdf_data_format_string |
---|
| 1122 | IF ( netcdf_deflate == 0 ) THEN |
---|
| 1123 | WRITE ( io, 344 ) output_format |
---|
| 1124 | ELSE |
---|
| 1125 | WRITE ( io, 354 ) TRIM( output_format ), netcdf_deflate |
---|
| 1126 | ENDIF |
---|
[1] | 1127 | |
---|
| 1128 | DO i = 1, dopr_n |
---|
| 1129 | dopr_chr = TRIM( dopr_chr ) // ' ' // TRIM( data_output_pr(i) ) // ',' |
---|
| 1130 | IF ( LEN_TRIM( dopr_chr ) >= 60 ) THEN |
---|
| 1131 | WRITE ( io, 332 ) dopr_chr |
---|
| 1132 | dopr_chr = ' :' |
---|
| 1133 | ENDIF |
---|
| 1134 | ENDDO |
---|
| 1135 | |
---|
| 1136 | IF ( dopr_chr /= '' ) THEN |
---|
| 1137 | WRITE ( io, 332 ) dopr_chr |
---|
| 1138 | ENDIF |
---|
| 1139 | WRITE ( io, 333 ) dt_dopr, averaging_interval_pr, dt_averaging_input_pr |
---|
[1353] | 1140 | IF ( skip_time_dopr /= 0.0_wp ) WRITE ( io, 339 ) skip_time_dopr |
---|
[1] | 1141 | ENDIF |
---|
| 1142 | |
---|
| 1143 | ! |
---|
| 1144 | !-- 2D-arrays |
---|
| 1145 | DO av = 0, 1 |
---|
| 1146 | |
---|
| 1147 | i = 1 |
---|
| 1148 | do2d_xy = '' |
---|
| 1149 | do2d_xz = '' |
---|
| 1150 | do2d_yz = '' |
---|
| 1151 | DO WHILE ( do2d(av,i) /= ' ' ) |
---|
| 1152 | |
---|
| 1153 | l = MAX( 2, LEN_TRIM( do2d(av,i) ) ) |
---|
| 1154 | do2d_mode = do2d(av,i)(l-1:l) |
---|
| 1155 | |
---|
| 1156 | SELECT CASE ( do2d_mode ) |
---|
| 1157 | CASE ( 'xy' ) |
---|
| 1158 | ll = LEN_TRIM( do2d_xy ) |
---|
| 1159 | do2d_xy = do2d_xy(1:ll) // ' ' // do2d(av,i)(1:l-3) // ',' |
---|
| 1160 | CASE ( 'xz' ) |
---|
| 1161 | ll = LEN_TRIM( do2d_xz ) |
---|
| 1162 | do2d_xz = do2d_xz(1:ll) // ' ' // do2d(av,i)(1:l-3) // ',' |
---|
| 1163 | CASE ( 'yz' ) |
---|
| 1164 | ll = LEN_TRIM( do2d_yz ) |
---|
| 1165 | do2d_yz = do2d_yz(1:ll) // ' ' // do2d(av,i)(1:l-3) // ',' |
---|
| 1166 | END SELECT |
---|
| 1167 | |
---|
| 1168 | i = i + 1 |
---|
| 1169 | |
---|
| 1170 | ENDDO |
---|
| 1171 | |
---|
| 1172 | IF ( ( ( do2d_xy /= '' .AND. section(1,1) /= -9999 ) .OR. & |
---|
| 1173 | ( do2d_xz /= '' .AND. section(1,2) /= -9999 ) .OR. & |
---|
[1327] | 1174 | ( do2d_yz /= '' .AND. section(1,3) /= -9999 ) ) ) THEN |
---|
[1] | 1175 | |
---|
| 1176 | IF ( av == 0 ) THEN |
---|
| 1177 | WRITE ( io, 334 ) '' |
---|
| 1178 | ELSE |
---|
| 1179 | WRITE ( io, 334 ) '(time-averaged)' |
---|
| 1180 | ENDIF |
---|
| 1181 | |
---|
| 1182 | IF ( do2d_at_begin ) THEN |
---|
| 1183 | begin_chr = 'and at the start' |
---|
| 1184 | ELSE |
---|
| 1185 | begin_chr = '' |
---|
| 1186 | ENDIF |
---|
| 1187 | |
---|
| 1188 | output_format = '' |
---|
[1783] | 1189 | output_format = netcdf_data_format_string |
---|
| 1190 | IF ( netcdf_deflate == 0 ) THEN |
---|
| 1191 | WRITE ( io, 344 ) output_format |
---|
| 1192 | ELSE |
---|
| 1193 | WRITE ( io, 354 ) TRIM( output_format ), netcdf_deflate |
---|
| 1194 | ENDIF |
---|
[1] | 1195 | |
---|
| 1196 | IF ( do2d_xy /= '' .AND. section(1,1) /= -9999 ) THEN |
---|
| 1197 | i = 1 |
---|
| 1198 | slices = '/' |
---|
| 1199 | coordinates = '/' |
---|
| 1200 | ! |
---|
[1551] | 1201 | !-- Building strings with index and coordinate information of the |
---|
[1] | 1202 | !-- slices |
---|
| 1203 | DO WHILE ( section(i,1) /= -9999 ) |
---|
| 1204 | |
---|
| 1205 | WRITE (section_chr,'(I5)') section(i,1) |
---|
| 1206 | section_chr = ADJUSTL( section_chr ) |
---|
| 1207 | slices = TRIM( slices ) // TRIM( section_chr ) // '/' |
---|
| 1208 | |
---|
[206] | 1209 | IF ( section(i,1) == -1 ) THEN |
---|
[1353] | 1210 | WRITE (coor_chr,'(F10.1)') -1.0_wp |
---|
[206] | 1211 | ELSE |
---|
| 1212 | WRITE (coor_chr,'(F10.1)') zu(section(i,1)) |
---|
| 1213 | ENDIF |
---|
[1] | 1214 | coor_chr = ADJUSTL( coor_chr ) |
---|
| 1215 | coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/' |
---|
| 1216 | |
---|
| 1217 | i = i + 1 |
---|
| 1218 | ENDDO |
---|
| 1219 | IF ( av == 0 ) THEN |
---|
| 1220 | WRITE ( io, 335 ) 'XY', do2d_xy, dt_do2d_xy, & |
---|
| 1221 | TRIM( begin_chr ), 'k', TRIM( slices ), & |
---|
| 1222 | TRIM( coordinates ) |
---|
[1353] | 1223 | IF ( skip_time_do2d_xy /= 0.0_wp ) THEN |
---|
[1] | 1224 | WRITE ( io, 339 ) skip_time_do2d_xy |
---|
| 1225 | ENDIF |
---|
| 1226 | ELSE |
---|
| 1227 | WRITE ( io, 342 ) 'XY', do2d_xy, dt_data_output_av, & |
---|
| 1228 | TRIM( begin_chr ), averaging_interval, & |
---|
| 1229 | dt_averaging_input, 'k', TRIM( slices ), & |
---|
| 1230 | TRIM( coordinates ) |
---|
[1353] | 1231 | IF ( skip_time_data_output_av /= 0.0_wp ) THEN |
---|
[1] | 1232 | WRITE ( io, 339 ) skip_time_data_output_av |
---|
| 1233 | ENDIF |
---|
| 1234 | ENDIF |
---|
[1308] | 1235 | IF ( netcdf_data_format > 4 ) THEN |
---|
| 1236 | WRITE ( io, 352 ) ntdim_2d_xy(av) |
---|
| 1237 | ELSE |
---|
| 1238 | WRITE ( io, 353 ) |
---|
| 1239 | ENDIF |
---|
[1] | 1240 | ENDIF |
---|
| 1241 | |
---|
| 1242 | IF ( do2d_xz /= '' .AND. section(1,2) /= -9999 ) THEN |
---|
| 1243 | i = 1 |
---|
| 1244 | slices = '/' |
---|
| 1245 | coordinates = '/' |
---|
| 1246 | ! |
---|
[1551] | 1247 | !-- Building strings with index and coordinate information of the |
---|
[1] | 1248 | !-- slices |
---|
| 1249 | DO WHILE ( section(i,2) /= -9999 ) |
---|
| 1250 | |
---|
| 1251 | WRITE (section_chr,'(I5)') section(i,2) |
---|
| 1252 | section_chr = ADJUSTL( section_chr ) |
---|
| 1253 | slices = TRIM( slices ) // TRIM( section_chr ) // '/' |
---|
| 1254 | |
---|
| 1255 | WRITE (coor_chr,'(F10.1)') section(i,2) * dy |
---|
| 1256 | coor_chr = ADJUSTL( coor_chr ) |
---|
| 1257 | coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/' |
---|
| 1258 | |
---|
| 1259 | i = i + 1 |
---|
| 1260 | ENDDO |
---|
| 1261 | IF ( av == 0 ) THEN |
---|
| 1262 | WRITE ( io, 335 ) 'XZ', do2d_xz, dt_do2d_xz, & |
---|
| 1263 | TRIM( begin_chr ), 'j', TRIM( slices ), & |
---|
| 1264 | TRIM( coordinates ) |
---|
[1353] | 1265 | IF ( skip_time_do2d_xz /= 0.0_wp ) THEN |
---|
[1] | 1266 | WRITE ( io, 339 ) skip_time_do2d_xz |
---|
| 1267 | ENDIF |
---|
| 1268 | ELSE |
---|
| 1269 | WRITE ( io, 342 ) 'XZ', do2d_xz, dt_data_output_av, & |
---|
| 1270 | TRIM( begin_chr ), averaging_interval, & |
---|
| 1271 | dt_averaging_input, 'j', TRIM( slices ), & |
---|
| 1272 | TRIM( coordinates ) |
---|
[1353] | 1273 | IF ( skip_time_data_output_av /= 0.0_wp ) THEN |
---|
[1] | 1274 | WRITE ( io, 339 ) skip_time_data_output_av |
---|
| 1275 | ENDIF |
---|
| 1276 | ENDIF |
---|
[1308] | 1277 | IF ( netcdf_data_format > 4 ) THEN |
---|
| 1278 | WRITE ( io, 352 ) ntdim_2d_xz(av) |
---|
| 1279 | ELSE |
---|
| 1280 | WRITE ( io, 353 ) |
---|
| 1281 | ENDIF |
---|
[1] | 1282 | ENDIF |
---|
| 1283 | |
---|
| 1284 | IF ( do2d_yz /= '' .AND. section(1,3) /= -9999 ) THEN |
---|
| 1285 | i = 1 |
---|
| 1286 | slices = '/' |
---|
| 1287 | coordinates = '/' |
---|
| 1288 | ! |
---|
[1551] | 1289 | !-- Building strings with index and coordinate information of the |
---|
[1] | 1290 | !-- slices |
---|
| 1291 | DO WHILE ( section(i,3) /= -9999 ) |
---|
| 1292 | |
---|
| 1293 | WRITE (section_chr,'(I5)') section(i,3) |
---|
| 1294 | section_chr = ADJUSTL( section_chr ) |
---|
| 1295 | slices = TRIM( slices ) // TRIM( section_chr ) // '/' |
---|
| 1296 | |
---|
| 1297 | WRITE (coor_chr,'(F10.1)') section(i,3) * dx |
---|
| 1298 | coor_chr = ADJUSTL( coor_chr ) |
---|
| 1299 | coordinates = TRIM( coordinates ) // TRIM( coor_chr ) // '/' |
---|
| 1300 | |
---|
| 1301 | i = i + 1 |
---|
| 1302 | ENDDO |
---|
| 1303 | IF ( av == 0 ) THEN |
---|
| 1304 | WRITE ( io, 335 ) 'YZ', do2d_yz, dt_do2d_yz, & |
---|
| 1305 | TRIM( begin_chr ), 'i', TRIM( slices ), & |
---|
| 1306 | TRIM( coordinates ) |
---|
[1353] | 1307 | IF ( skip_time_do2d_yz /= 0.0_wp ) THEN |
---|
[1] | 1308 | WRITE ( io, 339 ) skip_time_do2d_yz |
---|
| 1309 | ENDIF |
---|
| 1310 | ELSE |
---|
| 1311 | WRITE ( io, 342 ) 'YZ', do2d_yz, dt_data_output_av, & |
---|
| 1312 | TRIM( begin_chr ), averaging_interval, & |
---|
| 1313 | dt_averaging_input, 'i', TRIM( slices ), & |
---|
| 1314 | TRIM( coordinates ) |
---|
[1353] | 1315 | IF ( skip_time_data_output_av /= 0.0_wp ) THEN |
---|
[1] | 1316 | WRITE ( io, 339 ) skip_time_data_output_av |
---|
| 1317 | ENDIF |
---|
| 1318 | ENDIF |
---|
[1308] | 1319 | IF ( netcdf_data_format > 4 ) THEN |
---|
| 1320 | WRITE ( io, 352 ) ntdim_2d_yz(av) |
---|
| 1321 | ELSE |
---|
| 1322 | WRITE ( io, 353 ) |
---|
| 1323 | ENDIF |
---|
[1] | 1324 | ENDIF |
---|
| 1325 | |
---|
| 1326 | ENDIF |
---|
| 1327 | |
---|
| 1328 | ENDDO |
---|
| 1329 | |
---|
| 1330 | ! |
---|
| 1331 | !-- 3d-arrays |
---|
| 1332 | DO av = 0, 1 |
---|
| 1333 | |
---|
| 1334 | i = 1 |
---|
| 1335 | do3d_chr = '' |
---|
| 1336 | DO WHILE ( do3d(av,i) /= ' ' ) |
---|
| 1337 | |
---|
| 1338 | do3d_chr = TRIM( do3d_chr ) // ' ' // TRIM( do3d(av,i) ) // ',' |
---|
| 1339 | i = i + 1 |
---|
| 1340 | |
---|
| 1341 | ENDDO |
---|
| 1342 | |
---|
| 1343 | IF ( do3d_chr /= '' ) THEN |
---|
| 1344 | IF ( av == 0 ) THEN |
---|
| 1345 | WRITE ( io, 336 ) '' |
---|
| 1346 | ELSE |
---|
| 1347 | WRITE ( io, 336 ) '(time-averaged)' |
---|
| 1348 | ENDIF |
---|
| 1349 | |
---|
[1783] | 1350 | output_format = netcdf_data_format_string |
---|
| 1351 | IF ( netcdf_deflate == 0 ) THEN |
---|
| 1352 | WRITE ( io, 344 ) output_format |
---|
| 1353 | ELSE |
---|
| 1354 | WRITE ( io, 354 ) TRIM( output_format ), netcdf_deflate |
---|
| 1355 | ENDIF |
---|
[1] | 1356 | |
---|
| 1357 | IF ( do3d_at_begin ) THEN |
---|
| 1358 | begin_chr = 'and at the start' |
---|
| 1359 | ELSE |
---|
| 1360 | begin_chr = '' |
---|
| 1361 | ENDIF |
---|
| 1362 | IF ( av == 0 ) THEN |
---|
| 1363 | WRITE ( io, 337 ) do3d_chr, dt_do3d, TRIM( begin_chr ), & |
---|
| 1364 | zu(nz_do3d), nz_do3d |
---|
| 1365 | ELSE |
---|
| 1366 | WRITE ( io, 343 ) do3d_chr, dt_data_output_av, & |
---|
| 1367 | TRIM( begin_chr ), averaging_interval, & |
---|
| 1368 | dt_averaging_input, zu(nz_do3d), nz_do3d |
---|
| 1369 | ENDIF |
---|
| 1370 | |
---|
[1308] | 1371 | IF ( netcdf_data_format > 4 ) THEN |
---|
| 1372 | WRITE ( io, 352 ) ntdim_3d(av) |
---|
| 1373 | ELSE |
---|
| 1374 | WRITE ( io, 353 ) |
---|
| 1375 | ENDIF |
---|
| 1376 | |
---|
[1] | 1377 | IF ( av == 0 ) THEN |
---|
[1353] | 1378 | IF ( skip_time_do3d /= 0.0_wp ) THEN |
---|
[1] | 1379 | WRITE ( io, 339 ) skip_time_do3d |
---|
| 1380 | ENDIF |
---|
| 1381 | ELSE |
---|
[1353] | 1382 | IF ( skip_time_data_output_av /= 0.0_wp ) THEN |
---|
[1] | 1383 | WRITE ( io, 339 ) skip_time_data_output_av |
---|
| 1384 | ENDIF |
---|
| 1385 | ENDIF |
---|
| 1386 | |
---|
| 1387 | ENDIF |
---|
| 1388 | |
---|
| 1389 | ENDDO |
---|
| 1390 | |
---|
| 1391 | ! |
---|
[410] | 1392 | !-- masked arrays |
---|
| 1393 | IF ( masks > 0 ) WRITE ( io, 345 ) & |
---|
| 1394 | mask_scale_x, mask_scale_y, mask_scale_z |
---|
| 1395 | DO mid = 1, masks |
---|
| 1396 | DO av = 0, 1 |
---|
| 1397 | |
---|
| 1398 | i = 1 |
---|
| 1399 | domask_chr = '' |
---|
| 1400 | DO WHILE ( domask(mid,av,i) /= ' ' ) |
---|
| 1401 | domask_chr = TRIM( domask_chr ) // ' ' // & |
---|
| 1402 | TRIM( domask(mid,av,i) ) // ',' |
---|
| 1403 | i = i + 1 |
---|
| 1404 | ENDDO |
---|
| 1405 | |
---|
| 1406 | IF ( domask_chr /= '' ) THEN |
---|
| 1407 | IF ( av == 0 ) THEN |
---|
| 1408 | WRITE ( io, 346 ) '', mid |
---|
| 1409 | ELSE |
---|
| 1410 | WRITE ( io, 346 ) ' (time-averaged)', mid |
---|
| 1411 | ENDIF |
---|
| 1412 | |
---|
[1783] | 1413 | output_format = netcdf_data_format_string |
---|
[1308] | 1414 | !-- Parallel output not implemented for mask data, hence |
---|
| 1415 | !-- output_format must be adjusted. |
---|
| 1416 | IF ( netcdf_data_format == 5 ) output_format = 'netCDF4/HDF5' |
---|
| 1417 | IF ( netcdf_data_format == 6 ) output_format = 'netCDF4/HDF5 classic' |
---|
[1783] | 1418 | IF ( netcdf_deflate == 0 ) THEN |
---|
| 1419 | WRITE ( io, 344 ) output_format |
---|
| 1420 | ELSE |
---|
| 1421 | WRITE ( io, 354 ) TRIM( output_format ), netcdf_deflate |
---|
| 1422 | ENDIF |
---|
[410] | 1423 | |
---|
| 1424 | IF ( av == 0 ) THEN |
---|
| 1425 | WRITE ( io, 347 ) domask_chr, dt_domask(mid) |
---|
| 1426 | ELSE |
---|
| 1427 | WRITE ( io, 348 ) domask_chr, dt_data_output_av, & |
---|
| 1428 | averaging_interval, dt_averaging_input |
---|
| 1429 | ENDIF |
---|
| 1430 | |
---|
| 1431 | IF ( av == 0 ) THEN |
---|
[1353] | 1432 | IF ( skip_time_domask(mid) /= 0.0_wp ) THEN |
---|
[410] | 1433 | WRITE ( io, 339 ) skip_time_domask(mid) |
---|
| 1434 | ENDIF |
---|
| 1435 | ELSE |
---|
[1353] | 1436 | IF ( skip_time_data_output_av /= 0.0_wp ) THEN |
---|
[410] | 1437 | WRITE ( io, 339 ) skip_time_data_output_av |
---|
| 1438 | ENDIF |
---|
| 1439 | ENDIF |
---|
| 1440 | ! |
---|
| 1441 | !-- output locations |
---|
| 1442 | DO dim = 1, 3 |
---|
[1353] | 1443 | IF ( mask(mid,dim,1) >= 0.0_wp ) THEN |
---|
[410] | 1444 | count = 0 |
---|
[1353] | 1445 | DO WHILE ( mask(mid,dim,count+1) >= 0.0_wp ) |
---|
[410] | 1446 | count = count + 1 |
---|
| 1447 | ENDDO |
---|
| 1448 | WRITE ( io, 349 ) dir(dim), dir(dim), mid, dir(dim), & |
---|
| 1449 | mask(mid,dim,:count) |
---|
[1353] | 1450 | ELSEIF ( mask_loop(mid,dim,1) < 0.0_wp .AND. & |
---|
| 1451 | mask_loop(mid,dim,2) < 0.0_wp .AND. & |
---|
| 1452 | mask_loop(mid,dim,3) == 0.0_wp ) THEN |
---|
[410] | 1453 | WRITE ( io, 350 ) dir(dim), dir(dim) |
---|
[1353] | 1454 | ELSEIF ( mask_loop(mid,dim,3) == 0.0_wp ) THEN |
---|
[410] | 1455 | WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), & |
---|
| 1456 | mask_loop(mid,dim,1:2) |
---|
| 1457 | ELSE |
---|
| 1458 | WRITE ( io, 351 ) dir(dim), dir(dim), mid, dir(dim), & |
---|
| 1459 | mask_loop(mid,dim,1:3) |
---|
| 1460 | ENDIF |
---|
| 1461 | ENDDO |
---|
| 1462 | ENDIF |
---|
| 1463 | |
---|
| 1464 | ENDDO |
---|
| 1465 | ENDDO |
---|
| 1466 | |
---|
| 1467 | ! |
---|
[1] | 1468 | !-- Timeseries |
---|
[1322] | 1469 | IF ( dt_dots /= 9999999.9_wp ) THEN |
---|
[1] | 1470 | WRITE ( io, 340 ) |
---|
| 1471 | |
---|
[1783] | 1472 | output_format = netcdf_data_format_string |
---|
| 1473 | IF ( netcdf_deflate == 0 ) THEN |
---|
| 1474 | WRITE ( io, 344 ) output_format |
---|
| 1475 | ELSE |
---|
| 1476 | WRITE ( io, 354 ) TRIM( output_format ), netcdf_deflate |
---|
| 1477 | ENDIF |
---|
[1] | 1478 | WRITE ( io, 341 ) dt_dots |
---|
| 1479 | ENDIF |
---|
| 1480 | |
---|
| 1481 | WRITE ( io, 99 ) |
---|
| 1482 | |
---|
| 1483 | ! |
---|
| 1484 | !-- Physical quantities |
---|
| 1485 | WRITE ( io, 400 ) |
---|
| 1486 | |
---|
| 1487 | ! |
---|
| 1488 | !-- Geostrophic parameters |
---|
[4196] | 1489 | WRITE ( io, 410 ) latitude, longitude, rotation_angle, omega, f, fs |
---|
[1] | 1490 | |
---|
[3241] | 1491 | ! |
---|
[4227] | 1492 | !-- Day and time during model start |
---|
| 1493 | CALL get_date_time( 0.0_wp, date_time_str=date_time_str ) |
---|
| 1494 | WRITE ( io, 456 ) TRIM( date_time_str ) |
---|
| 1495 | |
---|
[1] | 1496 | ! |
---|
| 1497 | !-- Other quantities |
---|
| 1498 | WRITE ( io, 411 ) g |
---|
[1551] | 1499 | |
---|
[1179] | 1500 | WRITE ( io, 412 ) TRIM( reference_state ) |
---|
| 1501 | IF ( use_single_reference_value ) THEN |
---|
[3294] | 1502 | IF ( ocean_mode ) THEN |
---|
[1179] | 1503 | WRITE ( io, 413 ) prho_reference |
---|
[97] | 1504 | ELSE |
---|
[1179] | 1505 | WRITE ( io, 414 ) pt_reference |
---|
[97] | 1506 | ENDIF |
---|
| 1507 | ENDIF |
---|
[1] | 1508 | |
---|
| 1509 | ! |
---|
[824] | 1510 | !-- Cloud physcis parameters / quantities / numerical methods |
---|
| 1511 | WRITE ( io, 430 ) |
---|
[3274] | 1512 | IF ( humidity .AND. .NOT. bulk_cloud_model .AND. .NOT. cloud_droplets) THEN |
---|
[824] | 1513 | WRITE ( io, 431 ) |
---|
[3274] | 1514 | ENDIF |
---|
[824] | 1515 | ! |
---|
[1] | 1516 | !-- LES / turbulence parameters |
---|
| 1517 | WRITE ( io, 450 ) |
---|
| 1518 | |
---|
| 1519 | !-- |
---|
| 1520 | ! ... LES-constants used must still be added here |
---|
| 1521 | !-- |
---|
| 1522 | IF ( constant_diffusion ) THEN |
---|
| 1523 | WRITE ( io, 451 ) km_constant, km_constant/prandtl_number, & |
---|
| 1524 | prandtl_number |
---|
| 1525 | ENDIF |
---|
| 1526 | IF ( .NOT. constant_diffusion) THEN |
---|
[1353] | 1527 | IF ( e_init > 0.0_wp ) WRITE ( io, 455 ) e_init |
---|
| 1528 | IF ( e_min > 0.0_wp ) WRITE ( io, 454 ) e_min |
---|
[1] | 1529 | IF ( wall_adjustment ) WRITE ( io, 453 ) wall_adjustment_factor |
---|
| 1530 | ENDIF |
---|
[3083] | 1531 | IF ( rans_mode ) THEN |
---|
| 1532 | WRITE ( io, 457 ) rans_const_c, rans_const_sigma |
---|
| 1533 | ENDIF |
---|
[1] | 1534 | ! |
---|
| 1535 | !-- Special actions during the run |
---|
| 1536 | WRITE ( io, 470 ) |
---|
| 1537 | IF ( create_disturbances ) THEN |
---|
| 1538 | WRITE ( io, 471 ) dt_disturb, disturbance_amplitude, & |
---|
| 1539 | zu(disturbance_level_ind_b), disturbance_level_ind_b,& |
---|
| 1540 | zu(disturbance_level_ind_t), disturbance_level_ind_t |
---|
[707] | 1541 | IF ( .NOT. bc_lr_cyc .OR. .NOT. bc_ns_cyc ) THEN |
---|
[1] | 1542 | WRITE ( io, 472 ) inflow_disturbance_begin, inflow_disturbance_end |
---|
| 1543 | ELSE |
---|
| 1544 | WRITE ( io, 473 ) disturbance_energy_limit |
---|
| 1545 | ENDIF |
---|
| 1546 | WRITE ( io, 474 ) TRIM( random_generator ) |
---|
| 1547 | ENDIF |
---|
[1353] | 1548 | IF ( pt_surface_initial_change /= 0.0_wp ) THEN |
---|
[1] | 1549 | WRITE ( io, 475 ) pt_surface_initial_change |
---|
| 1550 | ENDIF |
---|
[1353] | 1551 | IF ( humidity .AND. q_surface_initial_change /= 0.0_wp ) THEN |
---|
[1] | 1552 | WRITE ( io, 476 ) q_surface_initial_change |
---|
| 1553 | ENDIF |
---|
[1353] | 1554 | IF ( passive_scalar .AND. q_surface_initial_change /= 0.0_wp ) THEN |
---|
[1] | 1555 | WRITE ( io, 477 ) q_surface_initial_change |
---|
| 1556 | ENDIF |
---|
| 1557 | |
---|
| 1558 | ! |
---|
| 1559 | !-- Parameters of 1D-model |
---|
| 1560 | IF ( INDEX( initializing_actions, 'set_1d-model_profiles' ) /= 0 ) THEN |
---|
| 1561 | WRITE ( io, 500 ) end_time_1d, dt_run_control_1d, dt_pr_1d, & |
---|
| 1562 | mixing_length_1d, dissipation_1d |
---|
| 1563 | IF ( damp_level_ind_1d /= nzt+1 ) THEN |
---|
| 1564 | WRITE ( io, 502 ) zu(damp_level_ind_1d), damp_level_ind_1d |
---|
| 1565 | ENDIF |
---|
| 1566 | ENDIF |
---|
| 1567 | |
---|
| 1568 | ! |
---|
[3637] | 1569 | !-- Header information from other modules |
---|
| 1570 | CALL module_interface_header( io ) |
---|
[1] | 1571 | |
---|
[3637] | 1572 | |
---|
[1] | 1573 | WRITE ( io, 99 ) |
---|
| 1574 | |
---|
| 1575 | ! |
---|
| 1576 | !-- Write buffer contents to disc immediately |
---|
[1808] | 1577 | FLUSH( io ) |
---|
[1] | 1578 | |
---|
| 1579 | ! |
---|
| 1580 | !-- Here the FORMATs start |
---|
| 1581 | |
---|
| 1582 | 99 FORMAT (1X,78('-')) |
---|
[1468] | 1583 | 100 FORMAT (/1X,'******************************',4X,44('-')/ & |
---|
| 1584 | 1X,'* ',A,' *',4X,A/ & |
---|
| 1585 | 1X,'******************************',4X,44('-')) |
---|
[2298] | 1586 | 101 FORMAT (35X,'coupled run: ',A/ & |
---|
[1468] | 1587 | 35X,42('-')) |
---|
[3529] | 1588 | 102 FORMAT (/' Date: ',A10,4X,'Run: ',A34/ & |
---|
[1468] | 1589 | ' Time: ',A8,4X,'Run-No.: ',I2.2/ & |
---|
[1106] | 1590 | ' Run on host: ',A10) |
---|
[1] | 1591 | #if defined( __parallel ) |
---|
[1468] | 1592 | 103 FORMAT (' Number of PEs:',10X,I6,4X,'Processor grid (x,y): (',I4,',',I4, & |
---|
[1] | 1593 | ')',1X,A) |
---|
[1468] | 1594 | 104 FORMAT (' Number of PEs:',10X,I6,4X,'Tasks:',I4,' threads per task:',I4/ & |
---|
| 1595 | 35X,'Processor grid (x,y): (',I4,',',I4,')',1X,A) |
---|
| 1596 | 107 FORMAT (35X,'A 1d-decomposition along ',A,' is used') |
---|
| 1597 | 108 FORMAT (35X,'Max. # of parallel I/O streams is ',I5) |
---|
| 1598 | 109 FORMAT (35X,'Precursor run for coupled atmos-ocean run'/ & |
---|
| 1599 | 35X,42('-')) |
---|
| 1600 | 114 FORMAT (35X,'Coupled atmosphere-ocean run following'/ & |
---|
| 1601 | 35X,'independent precursor runs'/ & |
---|
| 1602 | 35X,42('-')) |
---|
[1] | 1603 | #endif |
---|
| 1604 | 110 FORMAT (/' Numerical Schemes:'/ & |
---|
| 1605 | ' -----------------'/) |
---|
[2696] | 1606 | 124 FORMAT (' --> Use the ',A,' turbulence closure (',A,' mode).') |
---|
[2037] | 1607 | 121 FORMAT (' --> Use the ',A,' approximation for the model equations.') |
---|
[1] | 1608 | 111 FORMAT (' --> Solve perturbation pressure via FFT using ',A,' routines') |
---|
| 1609 | 112 FORMAT (' --> Solve perturbation pressure via SOR-Red/Black-Schema'/ & |
---|
[1697] | 1610 | ' Iterations (initial/other): ',I3,'/',I3,' omega =',F6.3) |
---|
[1] | 1611 | 113 FORMAT (' --> Momentum advection via Piascek-Williams-Scheme (Form C3)', & |
---|
| 1612 | ' or Upstream') |
---|
[1216] | 1613 | 115 FORMAT (' FFT and transpositions are overlapping') |
---|
[1] | 1614 | 116 FORMAT (' --> Scalar advection via Piascek-Williams-Scheme (Form C3)', & |
---|
| 1615 | ' or Upstream') |
---|
| 1616 | 118 FORMAT (' --> Scalar advection via Bott-Chlond-Scheme') |
---|
[1106] | 1617 | 119 FORMAT (' --> Galilei-Transform applied to horizontal advection:'/ & |
---|
| 1618 | ' translation velocity = ',A/ & |
---|
[1] | 1619 | ' distance advected ',A,': ',F8.3,' km(x) ',F8.3,' km(y)') |
---|
| 1620 | 122 FORMAT (' --> Time differencing scheme: ',A) |
---|
[108] | 1621 | 123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ & |
---|
[1697] | 1622 | ' maximum damping coefficient:',F6.3, ' 1/s') |
---|
[1] | 1623 | 129 FORMAT (' --> Additional prognostic equation for the specific humidity') |
---|
| 1624 | 130 FORMAT (' --> Additional prognostic equation for the total water content') |
---|
[940] | 1625 | 131 FORMAT (' --> No pt-equation solved. Neutral stratification with pt = ', & |
---|
| 1626 | F6.2, ' K assumed') |
---|
[1] | 1627 | 134 FORMAT (' --> Additional prognostic equation for a passive scalar') |
---|
[1575] | 1628 | 135 FORMAT (' --> Solve perturbation pressure via ',A,' method (', & |
---|
[1] | 1629 | A,'-cycle)'/ & |
---|
| 1630 | ' number of grid levels: ',I2/ & |
---|
| 1631 | ' Gauss-Seidel red/black iterations: ',I2) |
---|
| 1632 | 136 FORMAT (' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', & |
---|
| 1633 | I3,')') |
---|
| 1634 | 137 FORMAT (' level data gathered on PE0 at level: ',I2/ & |
---|
| 1635 | ' gridpoints of coarsest subdomain (x,y,z): (',I3,',',I3,',', & |
---|
| 1636 | I3,')'/ & |
---|
| 1637 | ' gridpoints of coarsest domain (x,y,z): (',I3,',',I3,',', & |
---|
| 1638 | I3,')') |
---|
[63] | 1639 | 139 FORMAT (' --> Loop optimization method: ',A) |
---|
[1] | 1640 | 140 FORMAT (' maximum residual allowed: ',E10.3) |
---|
| 1641 | 141 FORMAT (' fixed number of multigrid cycles: ',I4) |
---|
| 1642 | 142 FORMAT (' perturbation pressure is calculated at every Runge-Kutta ', & |
---|
| 1643 | 'step') |
---|
[87] | 1644 | 143 FORMAT (' Euler/upstream scheme is used for the SGS turbulent ', & |
---|
| 1645 | 'kinetic energy') |
---|
[927] | 1646 | 144 FORMAT (' masking method is used') |
---|
[1] | 1647 | 150 FORMAT (' --> Volume flow at the right and north boundary will be ', & |
---|
[241] | 1648 | 'conserved'/ & |
---|
| 1649 | ' using the ',A,' mode') |
---|
| 1650 | 151 FORMAT (' with u_bulk = ',F7.3,' m/s and v_bulk = ',F7.3,' m/s') |
---|
[306] | 1651 | 152 FORMAT (' --> External pressure gradient directly prescribed by the user:',& |
---|
| 1652 | /' ',2(1X,E12.5),'Pa/m in x/y direction', & |
---|
| 1653 | /' starting from dp_level_b =', F8.3, 'm', A /) |
---|
[1] | 1654 | 200 FORMAT (//' Run time and time step information:'/ & |
---|
| 1655 | ' ----------------------------------'/) |
---|
[1106] | 1656 | 201 FORMAT ( ' Timestep: variable maximum value: ',F6.3,' s', & |
---|
[1697] | 1657 | ' CFL-factor:',F5.2) |
---|
[1106] | 1658 | 202 FORMAT ( ' Timestep: dt = ',F6.3,' s'/) |
---|
[4300] | 1659 | 203 FORMAT ( ' Start time: ',F11.3,' s'/ & |
---|
| 1660 | ' End time: ',F11.3,' s') |
---|
| 1661 | 204 FORMAT ( A,F11.3,' s') |
---|
| 1662 | 205 FORMAT ( A,F11.3,' s',5X,'restart every',17X,F11.3,' s') |
---|
| 1663 | 206 FORMAT (/' Time reached: ',F11.3,' s'/ & |
---|
| 1664 | ' CPU-time used: ',F9.3,' s per timestep: ',F9.3,' s'/ & |
---|
| 1665 | ' per second of simulated time: ',F9.3,' s') |
---|
| 1666 | 207 FORMAT ( ' Spinup time: ',F11.3,' s') |
---|
[1] | 1667 | 250 FORMAT (//' Computational grid and domain size:'/ & |
---|
| 1668 | ' ----------------------------------'// & |
---|
[3065] | 1669 | ' Grid length: dx = ',F8.3,' m dy = ',F8.3, ' m') |
---|
| 1670 | 251 FORMAT ( /' Domain size: x = ',F10.3,' m y = ',F10.3, & |
---|
[1] | 1671 | ' m z(u) = ',F10.3,' m'/) |
---|
[3065] | 1672 | 253 FORMAT ( ' dz(',I1,') = ', F8.3, ' m') |
---|
| 1673 | 254 FORMAT (//' Number of gridpoints (x,y,z): (0:',I4,', 0:',I4,', 0:',I4,')'/ & |
---|
[1] | 1674 | ' Subdomain size (x,y,z): ( ',I4,', ',I4,', ',I4,')'/) |
---|
| 1675 | 260 FORMAT (/' The model has a slope in x-direction. Inclination angle: ',F6.2,& |
---|
| 1676 | ' degrees') |
---|
[1551] | 1677 | 270 FORMAT (//' Topography information:'/ & |
---|
| 1678 | ' ----------------------'// & |
---|
[1] | 1679 | 1X,'Topography: ',A) |
---|
| 1680 | 271 FORMAT ( ' Building size (x/y/z) in m: ',F5.1,' / ',F5.1,' / ',F5.1/ & |
---|
| 1681 | ' Horizontal index bounds (l/r/s/n): ',I4,' / ',I4,' / ',I4, & |
---|
| 1682 | ' / ',I4) |
---|
[240] | 1683 | 272 FORMAT ( ' Single quasi-2D street canyon of infinite length in ',A, & |
---|
| 1684 | ' direction' / & |
---|
| 1685 | ' Canyon height: ', F6.2, 'm, ch = ', I4, '.' / & |
---|
| 1686 | ' Canyon position (',A,'-walls): cxl = ', I4,', cxr = ', I4, '.') |
---|
[2232] | 1687 | 273 FORMAT ( ' Tunnel of infinite length in ',A, & |
---|
| 1688 | ' direction' / & |
---|
| 1689 | ' Tunnel height: ', F6.2, / & |
---|
| 1690 | ' Tunnel-wall depth: ', F6.2 / & |
---|
| 1691 | ' Tunnel width: ', F6.2 ) |
---|
| 1692 | 274 FORMAT ( ' Tunnel in ', A, ' direction.' / & |
---|
| 1693 | ' Tunnel height: ', F6.2, / & |
---|
| 1694 | ' Tunnel-wall depth: ', F6.2 / & |
---|
| 1695 | ' Tunnel width: ', F6.2, / & |
---|
| 1696 | ' Tunnel length: ', F6.2 ) |
---|
[256] | 1697 | 278 FORMAT (' Topography grid definition convention:'/ & |
---|
| 1698 | ' cell edge (staggered grid points'/ & |
---|
| 1699 | ' (u in x-direction, v in y-direction))' /) |
---|
| 1700 | 279 FORMAT (' Topography grid definition convention:'/ & |
---|
| 1701 | ' cell center (scalar grid points)' /) |
---|
[2550] | 1702 | 280 FORMAT (' Complex terrain simulation is activated.') |
---|
| 1703 | 281 FORMAT (' --> Mean inflow profiles are adjusted.' / & |
---|
| 1704 | ' --> Elevation of inflow boundary: ', F7.1, ' m' ) |
---|
| 1705 | 282 FORMAT (' --> Initial data from 3D-precursor run is shifted' / & |
---|
| 1706 | ' vertically depending on local surface height.') |
---|
[1] | 1707 | 300 FORMAT (//' Boundary conditions:'/ & |
---|
| 1708 | ' -------------------'// & |
---|
| 1709 | ' p uv ', & |
---|
[1551] | 1710 | ' pt'// & |
---|
[1] | 1711 | ' B. bound.: ',A/ & |
---|
| 1712 | ' T. bound.: ',A) |
---|
[97] | 1713 | 301 FORMAT (/' ',A// & |
---|
[1] | 1714 | ' B. bound.: ',A/ & |
---|
| 1715 | ' T. bound.: ',A) |
---|
[19] | 1716 | 303 FORMAT (/' Bottom surface fluxes are used in diffusion terms at k=1') |
---|
| 1717 | 304 FORMAT (/' Top surface fluxes are used in diffusion terms at k=nzt') |
---|
[2270] | 1718 | 305 FORMAT (//' Constant flux layer between bottom surface and first ', & |
---|
| 1719 | 'computational u,v-level:'// & |
---|
| 1720 | ' z_mo = ',F6.2,' m z0 =',F7.4,' m z0h =',F8.5,& |
---|
[1697] | 1721 | ' m kappa =',F5.2/ & |
---|
| 1722 | ' Rif value range: ',F8.2,' <= rif <=',F6.2) |
---|
[97] | 1723 | 306 FORMAT (' Predefined constant heatflux: ',F9.6,' K m/s') |
---|
[1] | 1724 | 307 FORMAT (' Heatflux has a random normal distribution') |
---|
| 1725 | 308 FORMAT (' Predefined surface temperature') |
---|
[97] | 1726 | 309 FORMAT (' Predefined constant salinityflux: ',F9.6,' psu m/s') |
---|
[1] | 1727 | 310 FORMAT (//' 1D-Model:'// & |
---|
| 1728 | ' Rif value range: ',F6.2,' <= rif <=',F6.2) |
---|
[1960] | 1729 | 311 FORMAT (' Predefined constant humidity flux: ',E10.3,' kg/kg m/s') |
---|
[1] | 1730 | 312 FORMAT (' Predefined surface humidity') |
---|
| 1731 | 313 FORMAT (' Predefined constant scalar flux: ',E10.3,' kg/(m**2 s)') |
---|
| 1732 | 314 FORMAT (' Predefined scalar value at the surface') |
---|
[1992] | 1733 | 302 FORMAT (' Predefined constant scalarflux: ',F9.6,' kg/(m**2 s)') |
---|
| 1734 | 315 FORMAT (' Humidity flux at top surface is 0.0') |
---|
[102] | 1735 | 316 FORMAT (' Sensible heatflux and momentum flux from coupled ', & |
---|
| 1736 | 'atmosphere model') |
---|
[1] | 1737 | 317 FORMAT (//' Lateral boundaries:'/ & |
---|
| 1738 | ' left/right: ',A/ & |
---|
| 1739 | ' north/south: ',A) |
---|
[1159] | 1740 | 318 FORMAT (/' use_cmax: ',L1 / & |
---|
| 1741 | ' pt damping layer width = ',F8.2,' m, pt ', & |
---|
[1697] | 1742 | 'damping factor =',F7.4) |
---|
[151] | 1743 | 319 FORMAT (' turbulence recycling at inflow switched on'/ & |
---|
| 1744 | ' width of recycling domain: ',F7.1,' m grid index: ',I4/ & |
---|
| 1745 | ' inflow damping height: ',F6.1,' m width: ',F6.1,' m') |
---|
| 1746 | 320 FORMAT (' Predefined constant momentumflux: u: ',F9.6,' m**2/s**2'/ & |
---|
[103] | 1747 | ' v: ',F9.6,' m**2/s**2') |
---|
[1365] | 1748 | 321 FORMAT (//' Initial profiles:'/ & |
---|
| 1749 | ' ----------------') |
---|
[1560] | 1750 | 322 FORMAT (' turbulence recycling at inflow switched on'/ & |
---|
[4301] | 1751 | ' y-shift of the recycled inflow turbulence is',I3,' PE'/ & |
---|
[1560] | 1752 | ' width of recycling domain: ',F7.1,' m grid index: ',I4/ & |
---|
[1592] | 1753 | ' inflow damping height: ',F6.1,' m width: ',F6.1,' m'/) |
---|
[2050] | 1754 | 323 FORMAT (' turbulent outflow conditon switched on'/ & |
---|
| 1755 | ' position of outflow source plane: ',F7.1,' m ', & |
---|
| 1756 | 'grid index: ', I4) |
---|
[151] | 1757 | 325 FORMAT (//' List output:'/ & |
---|
[1] | 1758 | ' -----------'// & |
---|
| 1759 | ' 1D-Profiles:'/ & |
---|
[2883] | 1760 | ' Output every ',F10.2,' s') |
---|
[151] | 1761 | 326 FORMAT (' Time averaged over ',F8.2,' s'/ & |
---|
[1] | 1762 | ' Averaging input every ',F8.2,' s') |
---|
| 1763 | 330 FORMAT (//' Data output:'/ & |
---|
| 1764 | ' -----------'/) |
---|
| 1765 | 331 FORMAT (/' 1D-Profiles:') |
---|
| 1766 | 332 FORMAT (/' ',A) |
---|
| 1767 | 333 FORMAT (' Output every ',F8.2,' s',/ & |
---|
| 1768 | ' Time averaged over ',F8.2,' s'/ & |
---|
| 1769 | ' Averaging input every ',F8.2,' s') |
---|
| 1770 | 334 FORMAT (/' 2D-Arrays',A,':') |
---|
| 1771 | 335 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ & |
---|
| 1772 | ' Output every ',F8.2,' s ',A/ & |
---|
| 1773 | ' Cross sections at ',A1,' = ',A/ & |
---|
| 1774 | ' scalar-coordinates: ',A,' m'/) |
---|
| 1775 | 336 FORMAT (/' 3D-Arrays',A,':') |
---|
| 1776 | 337 FORMAT (/' Arrays: ',A/ & |
---|
| 1777 | ' Output every ',F8.2,' s ',A/ & |
---|
| 1778 | ' Upper output limit at ',F8.2,' m (GP ',I4,')'/) |
---|
| 1779 | 339 FORMAT (' No output during initial ',F8.2,' s') |
---|
| 1780 | 340 FORMAT (/' Time series:') |
---|
| 1781 | 341 FORMAT (' Output every ',F8.2,' s'/) |
---|
| 1782 | 342 FORMAT (/' ',A2,'-cross-section Arrays: ',A/ & |
---|
| 1783 | ' Output every ',F8.2,' s ',A/ & |
---|
| 1784 | ' Time averaged over ',F8.2,' s'/ & |
---|
| 1785 | ' Averaging input every ',F8.2,' s'/ & |
---|
| 1786 | ' Cross sections at ',A1,' = ',A/ & |
---|
| 1787 | ' scalar-coordinates: ',A,' m'/) |
---|
| 1788 | 343 FORMAT (/' Arrays: ',A/ & |
---|
| 1789 | ' Output every ',F8.2,' s ',A/ & |
---|
| 1790 | ' Time averaged over ',F8.2,' s'/ & |
---|
| 1791 | ' Averaging input every ',F8.2,' s'/ & |
---|
| 1792 | ' Upper output limit at ',F8.2,' m (GP ',I4,')'/) |
---|
[292] | 1793 | 344 FORMAT (' Output format: ',A/) |
---|
[410] | 1794 | 345 FORMAT (/' Scaling lengths for output locations of all subsequent mask IDs:',/ & |
---|
| 1795 | ' mask_scale_x (in x-direction): ',F9.3, ' m',/ & |
---|
| 1796 | ' mask_scale_y (in y-direction): ',F9.3, ' m',/ & |
---|
| 1797 | ' mask_scale_z (in z-direction): ',F9.3, ' m' ) |
---|
| 1798 | 346 FORMAT (/' Masked data output',A,' for mask ID ',I2, ':') |
---|
| 1799 | 347 FORMAT (' Variables: ',A/ & |
---|
| 1800 | ' Output every ',F8.2,' s') |
---|
| 1801 | 348 FORMAT (' Variables: ',A/ & |
---|
| 1802 | ' Output every ',F8.2,' s'/ & |
---|
| 1803 | ' Time averaged over ',F8.2,' s'/ & |
---|
| 1804 | ' Averaging input every ',F8.2,' s') |
---|
| 1805 | 349 FORMAT (/' Output locations in ',A,'-direction in multiples of ', & |
---|
| 1806 | 'mask_scale_',A,' predefined by array mask_',I2.2,'_',A,':'/ & |
---|
| 1807 | 13(' ',8(F8.2,',')/) ) |
---|
| 1808 | 350 FORMAT (/' Output locations in ',A,'-direction: ', & |
---|
| 1809 | 'all gridpoints along ',A,'-direction (default).' ) |
---|
| 1810 | 351 FORMAT (/' Output locations in ',A,'-direction in multiples of ', & |
---|
| 1811 | 'mask_scale_',A,' constructed from array mask_',I2.2,'_',A,'_loop:'/ & |
---|
| 1812 | ' loop begin:',F8.2,', end:',F8.2,', stride:',F8.2 ) |
---|
[1313] | 1813 | 352 FORMAT (/' Number of output time levels allowed: ',I3 /) |
---|
| 1814 | 353 FORMAT (/' Number of output time levels allowed: unlimited' /) |
---|
[1783] | 1815 | 354 FORMAT (' Output format: ',A, ' compressed with level: ',I1/) |
---|
[1] | 1816 | 400 FORMAT (//' Physical quantities:'/ & |
---|
| 1817 | ' -------------------'/) |
---|
[4196] | 1818 | 410 FORMAT (' Geograph. latitude : latitude = ',F5.1,' degr'/ & |
---|
| 1819 | ' Geograph. longitude : longitude = ',F5.1,' degr'/ & |
---|
| 1820 | ' Rotation angle : rotation_angle = ',F5.1,' degr'/ & |
---|
[1697] | 1821 | ' Angular velocity : omega =',E10.3,' rad/s'/ & |
---|
[1551] | 1822 | ' Coriolis parameter : f = ',F9.6,' 1/s'/ & |
---|
| 1823 | ' f* = ',F9.6,' 1/s') |
---|
| 1824 | 411 FORMAT (/' Gravity : g = ',F4.1,' m/s**2') |
---|
[1179] | 1825 | 412 FORMAT (/' Reference state used in buoyancy terms: ',A) |
---|
| 1826 | 413 FORMAT (' Reference density in buoyancy terms: ',F8.3,' kg/m**3') |
---|
| 1827 | 414 FORMAT (' Reference temperature in buoyancy terms: ',F8.4,' K') |
---|
[1] | 1828 | 420 FORMAT (/' Characteristic levels of the initial temperature profile:'// & |
---|
| 1829 | ' Height: ',A,' m'/ & |
---|
| 1830 | ' Temperature: ',A,' K'/ & |
---|
| 1831 | ' Gradient: ',A,' K/100m'/ & |
---|
| 1832 | ' Gridpoint: ',A) |
---|
| 1833 | 421 FORMAT (/' Characteristic levels of the initial humidity profile:'// & |
---|
| 1834 | ' Height: ',A,' m'/ & |
---|
| 1835 | ' Humidity: ',A,' kg/kg'/ & |
---|
| 1836 | ' Gradient: ',A,' (kg/kg)/100m'/ & |
---|
| 1837 | ' Gridpoint: ',A) |
---|
| 1838 | 422 FORMAT (/' Characteristic levels of the initial scalar profile:'// & |
---|
| 1839 | ' Height: ',A,' m'/ & |
---|
| 1840 | ' Scalar concentration: ',A,' kg/m**3'/ & |
---|
| 1841 | ' Gradient: ',A,' (kg/m**3)/100m'/ & |
---|
| 1842 | ' Gridpoint: ',A) |
---|
| 1843 | 423 FORMAT (/' Characteristic levels of the geo. wind component ug:'// & |
---|
| 1844 | ' Height: ',A,' m'/ & |
---|
| 1845 | ' ug: ',A,' m/s'/ & |
---|
| 1846 | ' Gradient: ',A,' 1/100s'/ & |
---|
| 1847 | ' Gridpoint: ',A) |
---|
| 1848 | 424 FORMAT (/' Characteristic levels of the geo. wind component vg:'// & |
---|
| 1849 | ' Height: ',A,' m'/ & |
---|
[97] | 1850 | ' vg: ',A,' m/s'/ & |
---|
[1] | 1851 | ' Gradient: ',A,' 1/100s'/ & |
---|
| 1852 | ' Gridpoint: ',A) |
---|
[97] | 1853 | 425 FORMAT (/' Characteristic levels of the initial salinity profile:'// & |
---|
| 1854 | ' Height: ',A,' m'/ & |
---|
| 1855 | ' Salinity: ',A,' psu'/ & |
---|
| 1856 | ' Gradient: ',A,' psu/100m'/ & |
---|
| 1857 | ' Gridpoint: ',A) |
---|
[411] | 1858 | 426 FORMAT (/' Characteristic levels of the subsidence/ascent profile:'// & |
---|
| 1859 | ' Height: ',A,' m'/ & |
---|
| 1860 | ' w_subs: ',A,' m/s'/ & |
---|
| 1861 | ' Gradient: ',A,' (m/s)/100m'/ & |
---|
| 1862 | ' Gridpoint: ',A) |
---|
[767] | 1863 | 427 FORMAT (/' Initial wind profiles (u,v) are interpolated from given'// & |
---|
| 1864 | ' profiles') |
---|
[1241] | 1865 | 428 FORMAT (/' Initial profiles (u, v, pt, q) are taken from file '/ & |
---|
| 1866 | ' NUDGING_DATA') |
---|
[824] | 1867 | 430 FORMAT (//' Cloud physics quantities / methods:'/ & |
---|
| 1868 | ' ----------------------------------'/) |
---|
[1960] | 1869 | 431 FORMAT (' Humidity is considered, bu no condensation') |
---|
[1] | 1870 | 450 FORMAT (//' LES / Turbulence quantities:'/ & |
---|
| 1871 | ' ---------------------------'/) |
---|
[824] | 1872 | 451 FORMAT (' Diffusion coefficients are constant:'/ & |
---|
| 1873 | ' Km = ',F6.2,' m**2/s Kh = ',F6.2,' m**2/s Pr = ',F5.2) |
---|
[1697] | 1874 | 453 FORMAT (' Mixing length is limited to',F5.2,' * z') |
---|
[824] | 1875 | 454 FORMAT (' TKE is not allowed to fall below ',E9.2,' (m/s)**2') |
---|
| 1876 | 455 FORMAT (' initial TKE is prescribed as ',E9.2,' (m/s)**2') |
---|
[4227] | 1877 | 456 FORMAT (/' Date and time at model start : ',A) |
---|
[3083] | 1878 | 457 FORMAT (' RANS-mode constants: c_0 = ',F9.5/ & |
---|
| 1879 | ' c_1 = ',F9.5/ & |
---|
| 1880 | ' c_2 = ',F9.5/ & |
---|
| 1881 | ' c_3 = ',F9.5/ & |
---|
| 1882 | ' c_4 = ',F9.5/ & |
---|
| 1883 | ' sigma_e = ',F9.5/ & |
---|
| 1884 | ' sigma_diss = ',F9.5) |
---|
[1] | 1885 | 470 FORMAT (//' Actions during the simulation:'/ & |
---|
| 1886 | ' -----------------------------'/) |
---|
[94] | 1887 | 471 FORMAT (' Disturbance impulse (u,v) every : ',F6.2,' s'/ & |
---|
[1697] | 1888 | ' Disturbance amplitude : ',F5.2, ' m/s'/ & |
---|
[94] | 1889 | ' Lower disturbance level : ',F8.2,' m (GP ',I4,')'/ & |
---|
| 1890 | ' Upper disturbance level : ',F8.2,' m (GP ',I4,')') |
---|
[1] | 1891 | 472 FORMAT (' Disturbances continued during the run from i/j =',I4, & |
---|
| 1892 | ' to i/j =',I4) |
---|
| 1893 | 473 FORMAT (' Disturbances cease as soon as the disturbance energy exceeds',& |
---|
[1697] | 1894 | F6.3, ' m**2/s**2') |
---|
[1] | 1895 | 474 FORMAT (' Random number generator used : ',A/) |
---|
| 1896 | 475 FORMAT (' The surface temperature is increased (or decreased, ', & |
---|
| 1897 | 'respectively, if'/ & |
---|
| 1898 | ' the value is negative) by ',F5.2,' K at the beginning of the',& |
---|
| 1899 | ' 3D-simulation'/) |
---|
| 1900 | 476 FORMAT (' The surface humidity is increased (or decreased, ',& |
---|
| 1901 | 'respectively, if the'/ & |
---|
| 1902 | ' value is negative) by ',E8.1,' kg/kg at the beginning of', & |
---|
| 1903 | ' the 3D-simulation'/) |
---|
| 1904 | 477 FORMAT (' The scalar value is increased at the surface (or decreased, ',& |
---|
| 1905 | 'respectively, if the'/ & |
---|
| 1906 | ' value is negative) by ',E8.1,' kg/m**3 at the beginning of', & |
---|
| 1907 | ' the 3D-simulation'/) |
---|
| 1908 | 500 FORMAT (//' 1D-Model parameters:'/ & |
---|
| 1909 | ' -------------------'// & |
---|
| 1910 | ' Simulation time: ',F8.1,' s'/ & |
---|
| 1911 | ' Run-controll output every: ',F8.1,' s'/ & |
---|
| 1912 | ' Vertical profile output every: ',F8.1,' s'/ & |
---|
| 1913 | ' Mixing length calculation: ',A/ & |
---|
| 1914 | ' Dissipation calculation: ',A/) |
---|
| 1915 | 502 FORMAT (' Damping layer starts from ',F7.1,' m (GP ',I4,')'/) |
---|
[667] | 1916 | 503 FORMAT (' --> Momentum advection via Wicker-Skamarock-Scheme 5th order') |
---|
| 1917 | 504 FORMAT (' --> Scalar advection via Wicker-Skamarock-Scheme 5th order') |
---|
[3529] | 1918 | 512 FORMAT (/' Date: ',A10,6X,'Run: ',A34/ & |
---|
[1429] | 1919 | ' Time: ',A8,6X,'Run-No.: ',I2.2/ & |
---|
| 1920 | ' Run on host: ',A10,6X,'En-No.: ',I2.2) |
---|
[1791] | 1921 | 600 FORMAT (/' Nesting informations:'/ & |
---|
| 1922 | ' --------------------'/ & |
---|
[1797] | 1923 | ' Nesting mode: ',A/ & |
---|
| 1924 | ' Nesting-datatransfer mode: ',A// & |
---|
[1791] | 1925 | ' Nest id parent number lower left coordinates name'/ & |
---|
| 1926 | ' (*=me) id of PEs x (m) y (m)' ) |
---|
| 1927 | 601 FORMAT (2X,A1,1X,I2.2,6X,I2.2,5X,I5,5X,F8.2,2X,F8.2,5X,A) |
---|
[1] | 1928 | |
---|
| 1929 | END SUBROUTINE header |
---|