Changeset 376
- Timestamp:
- Sep 3, 2009 10:12:29 AM (15 years ago)
- Location:
- palm/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/DOC/app/appendix_a.html
r359 r376 2 2 <html><head> 3 3 4 4 5 5 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> 6 7 8 <title>PALM Appendix A</title></head> 9 10 <body> 6 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>PALM Appendix A</title></head><body> 11 7 12 8 … … 2954 2950 2955 2951 <td> 2956 <p>errors in \$inipar & or; no \$inipar-namelist found2952 <p>errors in \$inipar ∨ no \$inipar-namelist found 2957 2953 (CRAY-machines only)</p> 2958 2954 </td> … … 3534 3530 </tr> 3535 3531 <tr> 3532 <td style="vertical-align: top;"><a name="PA0323"></a>PA0323<br> 3533 </td> 3534 <td style="vertical-align: top;">output of averaged quantity "..." requires to set a non-zero averaging interval<br> 3535 </td> 3536 </tr> 3537 <tr> 3536 3538 3537 3539 <td style="vertical-align: top;"><a name="UI0001"></a>UI0001</td> -
palm/trunk/SCRIPTS/mrun
r374 r376 3178 3178 then 3179 3179 export MV2_NUM_PORTS=2 3180 export MV2_CPU_MAPPING=0,1,4,5,2,3,6,7 3180 # The default setting of MV2_CPU_MAPPING gives best results 3181 # export MV2_CPU_MAPPING=0,1,4,5,2,3,6,7 3181 3182 mpiexec -np $ii ./a.out $ROPTS < runfile_atmos 3182 3183 fi -
palm/trunk/SCRIPTS/subjob
r374 r376 105 105 # 25/08/09 - BjornM- adapted for lck 106 106 # 26/08/09 - Marcus- caurus admitted; optional qos feature hiprio on lcsgi 107 # 03/09/09 - Siggi - PBS sgi feature directive only used if explicitly 108 # set in the config file by the user 107 109 108 110 # VARIABLENVEREINBARUNGEN + DEFAULTWERTE … … 744 746 then 745 747 748 if [[ "$sgi_feature" != "" ]] 749 then 750 feature_directive="#PBS -l feature=$sgi_feature" 751 else 752 feature_directive="" 753 fi 754 746 755 if [[ $queue = testq || $queue = workq ]] 747 756 then … … 765 774 #PBS -l walltime=$timestring 766 775 #PBS -l nodes=$nodes:ppn=${tasks_per_node} 767 #PBS -l feature=$sgi_feature768 776 #PBS -l naccesspolicy=$node_usage 769 777 #PBS -o $remote_dayfile 770 778 #PBS -j oe 779 $feature_directive 771 780 $queue_directive 772 781 $email_directive -
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r367 r376 121 121 Errors: 122 122 ------ 123 Bugfix: output of averaged 2d/3d quantities requires that an avaraging 124 interval has been set, respective error message is included (check_parameters) 125 123 126 Bugfix: Output on unit 14 only if requested by write_binary. 124 127 (user_last_actions) -
palm/trunk/SOURCE/check_parameters.f90
r367 r376 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! Bugfix: output of averaged 2d/3d quantities requires that an avaraging 7 ! interval has been set, respective error message is included 6 8 ! bc_lr_cyc and bc_ns_cyc are set, 7 9 ! initializing_actions='read_data_for_recycling' renamed to 'cyclic_fill' … … 2478 2480 2479 2481 ! 2482 !-- Averaged 2d or 3d output requires that an averaging interval has been set 2483 IF ( doav_n > 0 .AND. averaging_interval == 0.0 ) THEN 2484 WRITE( message_string, * ) 'output of averaged quantity "', & 2485 TRIM( doav(1) ), '_av" requires to set a ', & 2486 'non-zero & averaging interval' 2487 CALL message( 'check_parameters', 'PA0323', 1, 2, 0, 6, 0 ) 2488 ENDIF 2489 2490 ! 2480 2491 !-- Check sectional planes and store them in one shared array 2481 2492 IF ( ANY( section_xy > nz + 1 ) ) THEN
Note: See TracChangeset
for help on using the changeset viewer.