Show
Ignore:
Timestamp:
05/21/07 20:25:16 (20 months ago)
Author:
gary
Message:

most files, remove dead code, correct comments

init_coreload.cpp - start of reorganizing punch commands

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/radius_next.cpp

    r1111 r1144  
    567567 
    568568        /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/ 
    569         /* check whether change in wind velocity constrains DRAD */ 
    570         /*>>chng 04 may 25, 
    571          *  WJH 22 May 2004: disable when we are near the sonic point since 
     569        /* check whether change in wind velocity constrains DRAD  
     570         * WJH 22 May 2004: disable when we are near the sonic point since 
    572571         * the velocity may be jumping all over the place but we just want 
    573572         * to push through it as quickly as we can */ 
     
    575574        { 
    576575                double v = fabs(wind.windv); 
    577                 /* this is fractional accel over length */ 
     576                /* this is fractional acceleration over length */ 
    578577                dVeldRad = fabs(wind.windv-OldWindVelocity)/ 
    579578                        MAX2(v,0.1*timesc.sound_speed_isothermal)/radius.drad; 
     
    16151614                { 
    16161615                        fprintf( punch.ipDRout,  
    1617                                 "Wind, dVeldRad=%10.3e\n",  
    1618                            dVeldRad ); 
     1616                                "Wind, dVeldRad=%.3e windv=%.3e\n",  
     1617                           dVeldRad , 
     1618                           wind.windv); 
    16191619                } 
    16201620