!> @file check_for_restart.f90 !--------------------------------------------------------------------------------------------------! ! This file is part of the PALM model system. ! ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General ! Public License as published by the Free Software Foundation, either version 3 of the License, or ! (at your option) any later version. ! ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General ! Public License for more details. ! ! You should have received a copy of the GNU General Public License along with PALM. If not, see ! . ! ! Copyright 1997-2021 Leibniz Universitaet Hannover !--------------------------------------------------------------------------------------------------! ! ! Description: ! ------------ !> Set stop flag, if restart is neccessary because of expiring cpu-time or if it is forced by user. !--------------------------------------------------------------------------------------------------! SUBROUTINE check_for_restart #if defined( __parallel ) USE MPI #endif USE control_parameters, & ONLY: dt_restart, end_time, message_string, run_description_header, simulated_time, & terminate_run, termination_time_needed, time_restart, time_since_reference_point, & write_binary USE kinds USE pegrid USE pmc_interface, & ONLY: atmosphere_ocean_coupled_run, comm_world_nesting, cpl_id, nested_run IMPLICIT NONE INTEGER :: global_communicator !< global communicator to be used here LOGICAL :: terminate_run_l !< LOGICAL :: do_stop_now = .FALSE. !< LOGICAL :: do_restart_now = .FALSE. !< REAL(wp) :: remaining_time !< ! !-- Check remaining CPU-time CALL local_tremain( remaining_time ) ! !-- If necessary set a flag to stop the model run terminate_run_l = .FALSE. IF ( remaining_time <= termination_time_needed .AND. write_binary ) THEN terminate_run_l = .TRUE. ENDIF ! !-- Set the global communicator to be used (depends on the mode in which PALM is running) IF ( nested_run .OR. atmosphere_ocean_coupled_run ) THEN global_communicator = comm_world_nesting ELSE global_communicator = comm2d ENDIF #if defined( __parallel ) ! !-- Make a logical OR for all processes. Stop the model run if at least one process has reached the !-- time limit. IF ( collective_wait ) CALL MPI_BARRIER( global_communicator, ierr ) CALL MPI_ALLREDUCE( terminate_run_l, terminate_run, 1, MPI_LOGICAL, MPI_LOR, & global_communicator, ierr ) #else terminate_run = terminate_run_l #endif ! !-- Output that job will be terminated IF ( terminate_run .AND. myid == 0 ) THEN WRITE( message_string, * ) 'run will be terminated because it is ', & 'running out of job cpu limit & ', & 'remaining time: ', remaining_time, ' s &', & 'termination time needed:', termination_time_needed, ' s' CALL message( 'check_for_restart', 'PA0163', 0, 1, 0, 6, 0 ) ENDIF ! !-- Check if a flag file exists that forces a termination of the model. IF ( myid == 0 ) THEN INQUIRE( FILE="DO_STOP_NOW", EXIST=do_stop_now ) INQUIRE( FILE="DO_RESTART_NOW", EXIST=do_restart_now ) IF ( do_stop_now .OR. do_restart_now ) THEN terminate_run_l = .TRUE. WRITE( message_string, * ) 'run will be terminated because user ', & 'forced a job finalization using a flag', & 'file:', & '&DO_STOP_NOW: ', do_stop_now, & '&DO_RESTART_NOW: ', do_restart_now CALL message( 'check_for_restart', 'PA0398', 0, 0, 0, 6, 0 ) ENDIF ENDIF #if defined( __parallel ) ! !-- Make a logical OR for all processes. Stop the model run if a flag file has been detected above. IF ( collective_wait ) CALL MPI_BARRIER( global_communicator, ierr ) CALL MPI_ALLREDUCE( terminate_run_l, terminate_run, 1, MPI_LOGICAL, MPI_LOR, & global_communicator, ierr ) #else terminate_run = terminate_run_l #endif ! !-- Set the stop flag also, if restart is forced by user settings IF ( time_restart /= 9999999.9_wp .AND. time_restart < time_since_reference_point ) THEN ! !-- Restart is not neccessary, if the end time of the run (given by the user) has been reached. IF ( simulated_time < end_time ) THEN terminate_run = .TRUE. ! !-- Increment restart time, if forced by user, otherwise set restart time to default (no user !-- restart). IF ( dt_restart /= 9999999.9_wp ) THEN time_restart = time_restart + dt_restart ELSE time_restart = 9999999.9_wp ENDIF WRITE( message_string, * ) 'run will be terminated due to user ', & 'settings of ', & 'restart_time / dt_restart, ', & 'new restart time is: ', time_restart, ' s' CALL message( 'check_for_restart', 'PA0164', 0, 0, 0, 6, 0 ) ELSE time_restart = 9999999.9_wp ENDIF ENDIF ! !-- If the run is stopped, set a flag file which is necessary to initiate the start of a !-- continuation run, except if the user forced to stop the run without restart. IF ( terminate_run .AND. myid == 0 .AND. cpl_id == 1 .AND. .NOT. do_stop_now) THEN OPEN ( 90, FILE='CONTINUE_RUN', FORM='FORMATTED' ) WRITE ( 90, '(A)' ) TRIM( run_description_header ) CLOSE ( 90 ) ENDIF END SUBROUTINE check_for_restart