Changeset 2422 for palm/trunk/SOURCE
- Timestamp:
- Sep 8, 2017 8:25:41 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r2375 r2422 25 25 ! ----------------- 26 26 ! $Id$ 27 ! error message in case of missing "restart" file activation string 28 ! 29 ! 2375 2017-08-29 14:10:28Z schwenkel 27 30 ! Added aerosol for bulk microphysics 28 31 ! … … 633 636 #if defined( __parallel ) 634 637 635 !636 !-- NOTE: coupled runs have not been implemented in the check_namelist_files637 !-- program.638 !-- check_namelist_files will need the following information of the other639 !-- model (atmosphere/ocean).640 ! dt_coupling = remote641 ! dt_max = remote642 ! restart_time = remote643 ! dt_restart= remote644 ! simulation_time_since_reference = remote645 ! dx = remote646 647 648 638 IF ( myid == 0 ) THEN 649 639 CALL MPI_SEND( dt_coupling, 1, MPI_REAL, target_id, 11, comm_inter, & … … 792 782 ENDIF 793 783 #else 794 WRITE( message_string, * ) 'coupling requires PALM to be c alled with',&795 ' ''mrun -K parallel'''784 WRITE( message_string, * ) 'coupling requires PALM to be compiled with',& 785 ' cpp-option "-D__parallel"' 796 786 CALL message( 'check_parameters', 'PA0141', 1, 2, 0, 6, 0 ) 797 787 #endif … … 812 802 #endif 813 803 804 ! 805 !-- User settings for restart times requires that "restart" has been given as 806 !-- file activation string. Otherwise, binary output would not be saved by 807 !-- palmrun. 808 IF ( ( restart_time /= 9999999.9_wp .OR. dt_restart /= 9999999.9_wp ) & 809 .AND. .NOT. write_binary ) THEN 810 WRITE( message_string, * ) 'manual restart settings requires file ', & 811 'activation string "restart"' 812 CALL message( 'check_parameters', 'PA0001', 1, 2, 0, 6, 0 ) 813 ENDIF 814 814 815 815 !
Note: See TracChangeset
for help on using the changeset viewer.