- Timestamp:
- Apr 17, 2018 3:19:27 PM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r2974 r2980 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Further improvement for spinup checks. 28 ! 29 ! 2974 2018-04-16 12:59:52Z gronemeier 27 30 ! Bugfix: check if dt_data_output_av is zero in case of parallel NetCDF output 28 31 ! … … 719 722 INTEGER(iwp) :: lsp !< running index for chem spcs. 720 723 721 LOGICAL :: check_nest !< flag used to check initialization in case of nesting722 724 LOGICAL :: found !< 723 725 … … 1044 1046 !-- Check turbulence closure setup 1045 1047 CALL tcm_check_parameters 1046 1047 1048 ! 1048 1049 !-- Check approximation … … 1399 1400 !-- In case of spinup and nested run, spinup end time must be identical 1400 1401 !-- in order to have synchronously running simulations. 1401 IF ( nested_run .AND. spinup) THEN1402 IF ( nested_run ) THEN 1402 1403 #if defined( __parallel ) 1403 1404 CALL MPI_ALLREDUCE( spinup_time, spinup_time_max, 1, MPI_REAL, & … … 1405 1406 CALL MPI_ALLREDUCE( dt_spinup, dt_spinup_max, 1, MPI_REAL, & 1406 1407 MPI_MAX, MPI_COMM_WORLD, ierr ) 1407 1408 1408 IF ( spinup_time /= spinup_time_max .OR. dt_spinup /= dt_spinup_max ) & 1409 1409 THEN -
palm/trunk/SOURCE/parin.f90
r2975 r2980 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Revise message call 28 ! 29 ! 2975 2018-04-16 15:22:20Z suehring 27 30 ! - Informative message when initializing_actions has been changed 28 31 ! to set_constant_profile in child domain … … 928 931 !-- if user decides to do everything by its own. 929 932 IF ( nest_domain .AND. .NOT. ( & 930 TRIM( initializing_actions ) == 'read_restart_data' .OR. & 933 TRIM( initializing_actions ) == 'read_restart_data' .OR. & 934 TRIM( initializing_actions ) == 'set_constant_profiles' .OR. & 931 935 TRIM( initializing_actions ) == 'by_user' ) ) THEN 932 936 message_string = 'initializing_actions = ' // &
Note: See TracChangeset
for help on using the changeset viewer.