Show
Ignore:
Timestamp:
05/10/08 09:03:02 (6 months ago)
Author:
peter
Message:

Merging all changes from mainline upto r2033, except r1902.

Files:
1 modified

Legend:

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

    r1822 r2034  
    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" 
     
    10311031                return 1; 
    10321032        } 
     1033 
     1034        if( punch.lgTraceConvergeBase ) 
     1035        { 
     1036                if( iteration > 1 && punch.lgTraceConvergeBaseHash ) 
     1037                { 
     1038                        static int iter_punch=-1; 
     1039                        if( iteration !=iter_punch ) 
     1040                                fprintf( punch.ipDRout, "%s\n",punch.chHashString ); 
     1041                        iter_punch = iteration; 
     1042                } 
     1043 
     1044                fprintf( punch.ipTraceConvergeBase,  
     1045                "%li\t%.4e\t%.4e\t%.4e\n", 
     1046                nzone , thermal.htot , thermal.ctot , dense.eden  ); 
     1047        } 
     1048 
    10331049        return 0; 
    10341050}