Show
Ignore:
Timestamp:
06/27/08 06:20:29 (7 months ago)
Author:
gary
Message:

these implement two additional command line options for time dependent simulations

print lines cumulative - will print time-integrated spectrum in addition to spectrum for every time step

stop temperature xxx time
iterations/time steps will stop then the temperature of the last zone falls below the number. intended for stopping cals of single cell of cooling gas.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/stopcalc.h

    r1732 r2133  
    2525        long int iptnu; 
    2626 
    27         /** highest allowed temperature, set with stop temperature exceeds command */ 
    28         realnum T2High; 
    29  
    3027        /** this provides a "floor" for the temperature - when the temperature 
    3128         * falls to this limit, go to constant temperature solution */ 
    3229        double TeFloor; 
    3330 
    34         /** tend is lowest temperature, set with stop temperature command */ 
    35         realnum tend; 
     31        /** highest allowed zone temperature, set with stop temperature exceeds command */ 
     32        realnum TempHiStopZone; 
     33        /** highest allowed iteration temperature, set with stop time temperature exceeds command */ 
     34        realnum TempHiStopIteration; 
     35 
     36        /** TempLoStopZone is lowest temperature to allow in radial zone integrations,  
     37         * set with stop temperature command */ 
     38        realnum TempLoStopZone; 
     39        /** TempLoStopIteration is lowest temperature to allow in iterations,  
     40         * set with stop time temperature command, used to stop time dependent sims */ 
     41        realnum TempLoStopIteration; 
    3642 
    3743        /** STOP EFRAC sets this limiting ratio of electron to H densities */