Show
Ignore:
Timestamp:
05/05/08 05:09:17 (8 months ago)
Author:
rjrw
Message:

Merged from trunk r1941:2022

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/newmole/source/conv_base.cpp

    r1830 r2023  
    66#include "cddefines.h" 
    77#include "dynamics.h" 
    8 #include "hydrogenic.h" 
    98#include "trace.h" 
    109#include "elementnames.h" 
     10#include "punch.h" 
    1111#include "phycon.h" 
    1212#include "secondaries.h" 
     
    980980                return 1; 
    981981        } 
     982 
     983        if( punch.lgTraceConvergeBase ) 
     984        { 
     985                if( iteration > 1 && punch.lgTraceConvergeBaseHash ) 
     986                { 
     987                        static int iter_punch=-1; 
     988                        if( iteration !=iter_punch ) 
     989                                fprintf( punch.ipDRout, "%s\n",punch.chHashString ); 
     990                        iter_punch = iteration; 
     991                } 
     992 
     993                fprintf( punch.ipTraceConvergeBase,  
     994                "%li\t%.4e\t%.4e\t%.4e\n", 
     995                nzone , thermal.htot , thermal.ctot , dense.eden  ); 
     996        } 
     997 
    982998        return 0; 
    983999}