Changeset 4848 for palm/trunk/SOURCE/time_integration.f90
- Timestamp:
- Jan 21, 2021 3:51:51 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/time_integration.f90
r4828 r4848 25 25 ! ----------------- 26 26 ! $Id$ 27 ! replaced use_syn_turb_gen by syn_turb_gen 28 ! 29 ! 4828 2021-01-05 11:21:41Z Giersch 27 30 ! Remove leftover write statement from debugging 28 31 ! … … 46 49 ! 4668 2020-09-09 13:00:16Z pavelkrc 47 50 ! Improve debug messages during timestepping 48 ! 51 ! 49 52 ! 4581 2020-06-29 08:49:58Z suehring 50 53 ! Omit explicit pressure forcing via geostrophic wind components in case of 51 54 ! mesoscale nesting. 52 ! 55 ! 53 56 ! 4578 2020-06-25 15:43:32Z gronemeier 54 57 ! bugfix: removed unused variables … … 308 311 skip_time_do2d_yz, skip_time_do3d, skip_time_domask, skip_time_dopr, & 309 312 skip_time_data_output_av, sloping_surface, stop_dt, surface_output, & 313 syn_turb_gen, & 310 314 terminate_coupled, terminate_run, timestep_scheme, time_coupling, time_do2d_xy, & 311 315 time_do2d_xz, time_do2d_yz, time_do3d, time_domask, time_dopr, time_dopr_av, & … … 421 425 USE synthetic_turbulence_generator_mod, & 422 426 ONLY: dt_stg_call, dt_stg_adjust, parametrize_inflow_turbulence, stg_adjust, stg_main, & 423 time_stg_adjust, time_stg_call , use_syn_turb_gen427 time_stg_adjust, time_stg_call 424 428 425 429 USE turbulence_closure_mod, & … … 926 930 ! 927 931 !-- Impose a turbulent inflow using synthetic generated turbulence. 928 IF ( use_syn_turb_gen .AND.&932 IF ( syn_turb_gen .AND. & 929 933 intermediate_timestep_count == intermediate_timestep_count_max ) THEN 930 934 CALL cpu_log( log_point(57), 'synthetic_turbulence_gen', 'start' ) … … 1244 1248 !-- information, update the time counter and if required, adjust the 1245 1249 !-- STG to new atmospheric conditions. 1246 IF ( use_syn_turb_gen ) THEN1250 IF ( syn_turb_gen ) THEN 1247 1251 IF ( parametrize_inflow_turbulence ) THEN 1248 1252 time_stg_adjust = time_stg_adjust + dt_3d
Note: See TracChangeset
for help on using the changeset viewer.