Changeset 931 for palm/trunk/SOURCE
- Timestamp:
- Jun 8, 2012 3:09:28 PM (12 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_namelist_files.f90
r846 r931 4 4 ! Current revisions: 5 5 ! ----------------- 6 ! 6 ! Check of max_pr_user implemented 7 7 ! 8 8 ! Former revisions: … … 33 33 34 34 ! 35 !-- Read number of processors and variable check_restart, which gives 36 !-- information whether the p3d or the pd3f file shall be checked 37 READ (*,*,ERR=10,END=10) numprocs, check_restart 35 !-- Read number of processors, the variable check_restart and max_user_pr. 36 !-- check_restart gives information whether the initalor the restart parameter 37 !-- file must be checked. max_user_pr is usually set by read_var_list 38 !-- (excluded in the namelist file check). 39 READ (*,*,ERR=10,END=10) numprocs, check_restart, max_pr_user 38 40 10 CONTINUE 39 41 … … 43 45 CALL parin 44 46 47 OPEN( 11, FILE='parin_for_check', FORM='FORMATTED' ) 48 WRITE(11, FMT='(I)'), max_pr_user 49 CLOSE(11) 45 50 ! 46 !-- Determine processor topology and local array indices 51 !-- Determine processor topology and local array indicesy 52 47 53 CALL init_pegrid 48 54 -
palm/trunk/SOURCE/user_parin.f90
r842 r931 4 4 ! Current revisions: 5 5 ! ----------------- 6 ! 6 ! Re-enabled check for max_pr_user 7 7 ! 8 8 ! Former revisions: … … 86 86 !-- restart file (already stored in max_pr_user) has to match the one given 87 87 !-- for the current run 88 #if ! defined ( __check )89 88 IF ( TRIM( initializing_actions ) == 'read_restart_data' ) THEN 90 89 IF ( max_pr_user /= max_pr_user_tmp ) THEN … … 99 98 max_pr_user = max_pr_user_tmp 100 99 ENDIF 101 #endif102 100 103 101 100 RETURN
Note: See TracChangeset
for help on using the changeset viewer.