1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/*
* Main code for reading a series of time slices Sigma_t stored in files
* and performoning some analysis of it
*
*/
/*
* Copyright (c) 2004 Eric Gourgoulhon & Jerome Novak
*
* This file is part of LORENE.
*
* LORENE is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* LORENE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LORENE; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
char analyse_evol_C[] = "$Header: /cvsroot/Lorene/Codes/Einstein/analyse_evol.C,v 1.4 2014/10/13 08:53:55 j_novak Exp $" ;
/*
* $Id: analyse_evol.C,v 1.4 2014/10/13 08:53:55 j_novak Exp $
* $Log: analyse_evol.C,v $
* Revision 1.4 2014/10/13 08:53:55 j_novak
* Lorene classes and functions now belong to the namespace Lorene.
*
* Revision 1.3 2014/10/06 15:09:44 j_novak
* Modified #include directives to use c++ syntax.
*
* Revision 1.2 2010/10/20 08:00:43 j_novak
* New flag to control output on screen.
*
* Revision 1.1 2004/06/24 20:37:44 e_gourgoulhon
* First version.
*
*
* $Header: /cvsroot/Lorene/Codes/Einstein/analyse_evol.C,v 1.4 2014/10/13 08:53:55 j_novak Exp $
*
*/
// C++ headers
#include "headcpp.h"
// C headers
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <cstdio>
// Lorene headers
#include "time_slice.h"
#include "param.h"
#include "utilitaires.h"
#include "graphique.h"
using namespace Lorene ;
int main(){
ifstream fpar("par_ana_evol.d") ;
if ( !fpar.good() ) {
cout << "Problem with opening the file par_ana_evol.d ! " << endl ;
abort() ;
}
char rootname[80] ;
int jmin, jmax, jstep ;
fpar.ignore(1000,'\n') ; // skip title
fpar.ignore(1000,'\n') ; // skip comment
fpar.getline(rootname, 80) ;
fpar >> jmin ; fpar.ignore(1000,'\n') ;
fpar >> jmax ; fpar.ignore(1000,'\n') ;
fpar >> jstep ; fpar.ignore(1000,'\n') ;
cout << "Root name of files to be read : " << rootname << endl ;
cout << "jmin = " << jmin << endl ;
cout << "jmax = " << jmax << endl ;
cout << "jstep = " << jstep << endl << endl ;
ofstream fresu1("psidot.d") ;
ofstream fresu2("psidot_diff.d") ;
ofstream fresu3("psidot_diff_rel.d") ;
fresu1 << "# t max(abs(d/dt ln Psi)) in each domain" << endl ;
fresu2 <<
"# t Absolute error on the d/dt ln Psi relation in each domain"
<< endl ;
fresu3 <<
"# t Relative error on the d/dt ln Psi relation in each domain"
<< endl ;
for (int j=jmin; j<=jmax; j += jstep) {
char* filename = new char[ strlen(rootname)+10 ] ;
strcpy(filename, rootname) ;
char nomj[7] ;
sprintf(nomj, "%06d", j) ;
strcat(filename, nomj) ;
strcat(filename, ".d") ;
FILE* fich = fopen(filename, "r") ;
if (fich == 0x0) {
cout << "Problem in opening the file " << filename << " ! " << endl ;
perror(" reason") ;
abort() ;
}
Mg3d mgrid(fich) ;
Map_af map(mgrid, fich) ;
Base_vect::bvect_from_file(fich) ; //## skip the triad stored in file
const Base_vect* ptriad = &(map.get_bvect_spher()) ;
// Flat metric f
// -------------
const Metric_flat& ff = map.flat_met_spher() ;
int depth ;
fread_be(&depth, sizeof(int), 1, fich) ;
Tslice_dirac_max sigma(map, *ptriad, ff, fich, false, depth) ;
assert(sigma.get_latest_j() == j) ;
double tc = sigma.get_time()[j] ;
cout <<
"==============================================================\n"
<< " step: " << j << " time = " << tc << endl
<< "==============================================================\n" ;
cout << sigma << endl ;
int nz = mgrid.get_nzone() ;
Tbl tlnpsi_dot(nz) ;
Tbl tdiff(nz) ;
Tbl tdiff_rel(nz) ;
sigma.check_psi_dot(tlnpsi_dot, tdiff, tdiff_rel) ;
fresu1 << tc ;
for (int l = 0; l<nz ; l++) {
fresu1 << " " << tlnpsi_dot(l) ;
}
fresu1 << endl ;
fresu2 << tc ;
for (int l = 0; l<nz ; l++) {
fresu2 << " " << tdiff(l) ;
}
fresu2 << endl ;
fresu3 << tc ;
for (int l = 0; l<nz ; l++) {
fresu3 << " " << tdiff_rel(l) ;
}
fresu3 << endl ;
}
fresu1.close() ;
fresu2.close() ;
fresu3.close() ;
return EXIT_SUCCESS ;
}
|