File: visu_evol.C

package info (click to toggle)
lorene 0.0.0~cvs20161116%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 26,444 kB
  • ctags: 13,953
  • sloc: cpp: 212,946; fortran: 21,645; makefile: 1,750; sh: 4
file content (184 lines) | stat: -rw-r--r-- 5,937 bytes parent folder | download | duplicates (2)
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
177
178
179
180
181
182
183
184
/*
 *  Main code for reading a series of time slices Sigma_t stored in files. 
 *
 */

/*
 *   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 visu_evol_C[] = "$Header: /cvsroot/Lorene/Codes/Einstein/visu_evol.C,v 1.5 2014/10/13 08:53:56 j_novak Exp $" ;

/*
 * $Id: visu_evol.C,v 1.5 2014/10/13 08:53:56 j_novak Exp $
 * $Log: visu_evol.C,v $
 * Revision 1.5  2014/10/13 08:53:56  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.4  2014/10/06 15:09:44  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.3  2004/06/24 00:07:28  e_gourgoulhon
 * Introduced the reference 'field' and string 'fieldname' for
 * a easier selection of the field to be visualized.
 * Better determination of the max of the field.
 *
 * Revision 1.2  2004/06/02 21:34:39  e_gourgoulhon
 * Added creation of file anime.dxcont for OpenDX.
 *
 * Revision 1.1  2004/05/31 20:34:20  e_gourgoulhon
 * First version
 *
 *
 * $Header: /cvsroot/Lorene/Codes/Einstein/visu_evol.C,v 1.5 2014/10/13 08:53:56 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_visu_evol.d") ;
    if ( !fpar.good() ) {
        cout << "Problem with opening the file par_visu_evol.d ! " << endl ;
        abort() ;
    }
    
    char rootname[80], rootdxname[80], section_type ; 
    int jmin, jmax, jstep, nu, nv ;
    double a_section, umin, umax, vmin, vmax ;  
    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') ;
    fpar.ignore(1000,'\n') ;    // skip comment
    fpar.getline(rootdxname, 80) ;
    fpar.get(section_type) ; fpar.ignore(1000,'\n') ;
    fpar >> a_section ; fpar.ignore(1000,'\n') ;
    fpar >> umin ;  fpar >> umax ; fpar.ignore(1000,'\n') ;
    fpar >> vmin ;  fpar >> vmax ; fpar.ignore(1000,'\n') ;
    fpar >> nu ; fpar.ignore(1000,'\n') ;
    fpar >> nv ; 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 ; 
    cout << "section_type = " << section_type << endl ; 
    cout << "a_section = " << a_section << endl ; 
    cout << "umin, umax = " << umin << ", " << umax << endl ; 
    cout << "vmin, vmax = " << vmin << ", " << vmax << endl ; 
    cout << "nu x nv = " << nu << " x " << nv << endl ; 
    arrete() ; 
    
    ofstream fdx("anime.dxcont") ; 
    fdx << "fieldname     jmin   jmax  jstep  ampli " << endl ; 
    fdx << rootdxname << "     " << jmin << "   " << jmax << "   " << jstep ;
    
    char fieldname[100] ; 
    
    double max_field = 0 ; 
         
    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* ptriad = Base_vect::bvect_from_file(fich) ; 
        
        // 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 ; 
        
        bool start_dx = ( (j >= jmax - jstep) && (j != jmax) ) ;
        // bool start_dx = false ;
         
        // Selection of the field to be vizualized
        // ---------------------------------------
        const Scalar& field = sigma.gam().ricci_scal() ; 
        strcpy(fieldname, "R") ; 
        
        // field.spectral_display(fieldname) ; 
         
        field.visu_section_anim(section_type, a_section, umin, umax,
		                      vmin, vmax, j, tc, 1, fieldname, rootdxname, 
                                      start_dx, nu, nv) ; 
                                      
        double max_field_j = max(maxabs(field)) ;
        if (max_field_j > max_field) max_field = max_field_j ; 
        
        delete ptriad ; 

    }   
    
    fdx << "   " << 1. / max_field  << endl ; 
    fdx.close() ; 
    
    return EXIT_SUCCESS ; 
}