Changeset 376 for palm/trunk


Ignore:
Timestamp:
Sep 3, 2009 10:12:29 AM (15 years ago)
Author:
raasch
Message:

bugfix concerning output of averaged 2d/3d quantities

Location:
palm/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/DOC/app/appendix_a.html

    r359 r376  
    22<html><head>
    33
     4
    45   
    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>
    117
    128   
     
    29542950
    29552951         <td>
    2956       <p>errors in \$inipar &or; no \$inipar-namelist found
     2952      <p>errors in \$inipar &#8744; no \$inipar-namelist found
    29572953                (CRAY-machines only)</p>
    29582954      </td>
     
    35343530    </tr>
    35353531    <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>
    35363538
    35373539        <td style="vertical-align: top;"><a name="UI0001"></a>UI0001</td>
  • palm/trunk/SCRIPTS/mrun

    r374 r376  
    31783178                   then
    31793179                      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
    31813182                      mpiexec -np $ii  ./a.out  $ROPTS  < runfile_atmos
    31823183                   fi
  • palm/trunk/SCRIPTS/subjob

    r374 r376  
    105105     # 25/08/09 - BjornM- adapted for lck
    106106     # 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
    107109
    108110    # VARIABLENVEREINBARUNGEN + DEFAULTWERTE
     
    744746 then
    745747
     748    if [[ "$sgi_feature" != "" ]]
     749    then
     750       feature_directive="#PBS -l feature=$sgi_feature"
     751    else
     752       feature_directive=""
     753    fi
     754
    746755    if [[ $queue = testq  ||  $queue = workq ]]
    747756    then
     
    765774#PBS -l walltime=$timestring
    766775#PBS -l nodes=$nodes:ppn=${tasks_per_node}
    767 #PBS -l feature=$sgi_feature
    768776#PBS -l naccesspolicy=$node_usage
    769777#PBS -o $remote_dayfile
    770778#PBS -j oe
     779$feature_directive
    771780$queue_directive
    772781$email_directive
  • palm/trunk/SOURCE/CURRENT_MODIFICATIONS

    r367 r376  
    121121Errors:
    122122------
     123Bugfix: output of averaged 2d/3d quantities requires that an avaraging
     124interval has been set, respective error message is included (check_parameters)
     125
    123126Bugfix: Output on unit 14 only if requested by write_binary.
    124127(user_last_actions)
  • palm/trunk/SOURCE/check_parameters.f90

    r367 r376  
    44! Actual revisions:
    55! -----------------
     6! Bugfix: output of averaged 2d/3d quantities requires that an avaraging
     7! interval has been set, respective error message is included
    68! bc_lr_cyc and bc_ns_cyc are set,
    79! initializing_actions='read_data_for_recycling' renamed to 'cyclic_fill'
     
    24782480
    24792481!
     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!
    24802491!-- Check sectional planes and store them in one shared array
    24812492    IF ( ANY( section_xy > nz + 1 ) )  THEN
Note: See TracChangeset for help on using the changeset viewer.