Changeset 4017 for palm/trunk/SOURCE/time_integration.f90
- Timestamp:
- Jun 6, 2019 12:16:46 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/time_integration.f90
r4010 r4017 544 544 do_sum, dt_3d, dt_averaging_input, dt_averaging_input_pr, dt_coupling, & 545 545 dt_data_output_av, dt_disturb, dt_do2d_xy, dt_do2d_xz, dt_do2d_yz, dt_do3d, & 546 dt_domask,dt_dopts, dt_dopr, dt_dopr_listing, dt_dots, dt_ dvrp, dt_run_control,&546 dt_domask,dt_dopts, dt_dopr, dt_dopr_listing, dt_dots, dt_run_control, & 547 547 end_time, first_call_lpm, first_call_mas, galilei_transformation, humidity, & 548 548 indoor_model, intermediate_timestep_count, intermediate_timestep_count_max, & … … 557 557 time_do2d_xz, time_do2d_yz, time_do3d, time_domask, time_dopr, time_dopr_av, & 558 558 time_dopr_listing, time_dopts, time_dosp, time_dosp_av, time_dots, time_do_av, & 559 time_do_sla, time_disturb, time_ dvrp, time_run_control, time_since_reference_point,&559 time_do_sla, time_disturb, time_run_control, time_since_reference_point, & 560 560 turbulent_inflow, turbulent_outflow, urban_surface, & 561 561 use_initial_profile_as_reference, use_single_reference_value, u_gtrans, v_gtrans, & … … 591 591 ONLY: lsm_boundary_condition, lsm_energy_balance, lsm_soil_model, skip_time_do_lsm 592 592 593 USE l pm_mod,&594 ONLY: lpm 593 USE lagrangian_particle_model_mod, & 594 ONLY: lpm_data_output_ptseries 595 595 596 596 USE lsf_nudging_mod, & … … 846 846 ENDIF 847 847 ENDIF 848 849 #if defined( __dvrp_graphics )850 !851 !-- Time measurement with dvrp software852 CALL DVRP_LOG_EVENT( 2, current_timestep_number )853 #endif854 848 855 849 CALL location_message( 'atmosphere (and/or ocean) time-stepping', 'start' ) … … 1003 997 .AND. intermediate_timestep_count == 1 ) & 1004 998 THEN 1005 CALL lpm999 CALL module_interface_actions( 'after_prognostic_equations' ) 1006 1000 first_call_lpm = .FALSE. 1007 1001 ENDIF … … 1541 1535 ENDIF 1542 1536 ENDDO 1543 time_dvrp = time_dvrp + dt_3d1544 1537 IF ( time_since_reference_point >= skip_time_dosp ) THEN 1545 1538 time_dosp = time_dosp + dt_3d … … 1838 1831 ( time_since_reference_point >= particle_advection_start .AND. & 1839 1832 first_call_lpm ) ) THEN 1840 CALL data_output_ptseries1833 CALL lpm_data_output_ptseries 1841 1834 time_dopts = MOD( time_dopts, MAX( dt_dopts, dt_3d ) ) 1842 1835 ENDIF 1843 1836 ENDIF 1844 1845 !1846 !-- Output of dvrp-graphics (isosurface, particles, slicer)1847 #if defined( __dvrp_graphics )1848 CALL DVRP_LOG_EVENT( -2, current_timestep_number-1 )1849 #endif1850 IF ( time_dvrp >= dt_dvrp ) THEN1851 CALL data_output_dvrp1852 time_dvrp = MOD( time_dvrp, MAX( dt_dvrp, dt_3d ) )1853 ENDIF1854 #if defined( __dvrp_graphics )1855 CALL DVRP_LOG_EVENT( 2, current_timestep_number )1856 #endif1857 1837 1858 1838 ! … … 1934 1914 IF ( myid == 0 ) CALL finish_progress_bar 1935 1915 1936 #if defined( __dvrp_graphics )1937 CALL DVRP_LOG_EVENT( -2, current_timestep_number )1938 #endif1939 1940 1916 CALL location_message( 'atmosphere (and/or ocean) time-stepping', 'finished' ) 1941 1917
Note: See TracChangeset
for help on using the changeset viewer.