File: read_tslice.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 (179 lines) | stat: -rw-r--r-- 5,915 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
/*
 *  Main code for reading a time slice Sigma_t stored in file. 
 *
 */

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

/*
 * $Id: read_tslice.C,v 1.6 2014/10/13 08:53:56 j_novak Exp $
 * $Log: read_tslice.C,v $
 * Revision 1.6  2014/10/13 08:53:56  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.5  2014/10/06 15:09:44  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.4  2004/06/24 15:42:16  j_novak
 * Display of log(n) and log(psi) instead of N/psi.
 *
 * Revision 1.3  2004/06/15 10:25:27  e_gourgoulhon
 * Added plot of hrt and hrp.
 *
 * Revision 1.2  2004/05/31 20:32:50  e_gourgoulhon
 * Added graphical outputs.
 *
 * Revision 1.1  2004/05/27 15:25:38  e_gourgoulhon
 * First version.
 *
 *
 * $Header: /cvsroot/Lorene/Codes/Einstein/read_tslice.C,v 1.6 2014/10/13 08:53:56 j_novak Exp $
 *
 */

// C++ headers
#include "headcpp.h"

// C headers
#include <cstdlib>
#include <cmath>
#include <cstring>

// Lorene headers
#include "time_slice.h"
#include "param.h"
#include "utilitaires.h"
#include "graphique.h"

using namespace Lorene ;

int main(int argc, char** argv){
    
    if (argc < 2) {
		cout << 
		"read_tslice : the name of a file containing a configuration"
		<< endl << " must be given in argument !" << endl ; 
		abort() ; 
    }
    
    char* nomresu = argv[1] ; 
    cout << "Name of the file to be read : " << nomresu << endl ;         
    
    FILE* fich = fopen(nomresu, "r") ; 
    if (fich == 0x0) {
    	cout << "Problem in opening the file " << nomresu << " ! " << endl ; 
		perror(" reason") ; 
		abort() ; 
    }
    
    Mg3d mgrid(fich) ;
    Map_af map(mgrid, fich) ;
    
    Base_vect* ptriad_file = Base_vect::bvect_from_file(fich) ; 
    
    cout << "Computational grid :\n" 
         << "------------------ \n" 
         << "  " << mgrid << endl ; 

    cout << "Mapping computational grid --> physical space :\n" 
         << "---------------------------------------------\n" 
         << "  " << map << endl ;  
    
    const Base_vect_spher* triad_s = 
              dynamic_cast<const Base_vect_spher*>(ptriad_file) ; 
    const Base_vect_cart* triad_c = 
              dynamic_cast<const Base_vect_cart*>(ptriad_file) ; 
    
    const Base_vect* ptriad ; 
    
    if ( triad_s != 0x0 ) ptriad = &(map.get_bvect_spher()) ;
    else {
        assert( triad_c != 0x0) ; 
        ptriad = &(map.get_bvect_cart()) ;
    }
     
    delete ptriad_file ; 

   
    // Flat metric f
    // -------------

    const Metric_flat& ff = map.flat_met_spher() ; 
    
    int depth ; 
	fread_be(&depth, sizeof(int), 1, fich) ;	
    
    // Time slice Sigma_t
    // -------------------
    Tslice_dirac_max sigmat(map, *ptriad, ff, fich, false, depth) ;  
    
    fclose(fich) ;     

    Scalar lnn = log(sigmat.nn()) ;
    lnn.std_spectral_base() ;
    
    cout << sigmat << endl ; 
    
    // For graphical outputs:
    char graph_device[40] ; 
    strcpy(graph_device, "/xwin") ;
    int ngraph0 = 20 ;  // index of the first graphic device to be used
    int nz = mgrid.get_nzone() ; 
    double ray_des = 1.25 * map.val_r(nz-2, 1., 0., 0.) ; // outermost radius
                                                          // for plots
    des_meridian(lnn, 0., ray_des, "log(N)", ngraph0,
                     graph_device) ; 
    des_meridian(sigmat.ln_psi(), 0., ray_des, "log(\\gQ)", ngraph0+1,
                     graph_device) ; 
    des_meridian(sigmat.beta()(1), 0., ray_des, "\\gb\\ur\\d", ngraph0+6,
                     graph_device) ; 
    des_meridian(sigmat.beta()(2), 0., ray_des, "\\gb\\u\\gh\\d", ngraph0+7,
                     graph_device) ; 
    des_meridian(sigmat.beta()(3), 0., ray_des, "\\gb\\u\\gf\\d", ngraph0+8,
                     graph_device) ; 
    des_meridian(sigmat.khi(), 0., ray_des, "\\gx", ngraph0+9,
                     graph_device) ; 
    des_meridian(sigmat.mu(), 0., ray_des, "\\gm", ngraph0+10,
                     graph_device) ;
    des_meridian(sigmat.trh(), 0., ray_des, "tr h", ngraph0+11,
                     graph_device) ; 
    des_meridian(sigmat.hh()(1,1), 0., ray_des, "h\\urr\\d", ngraph0+12,
                     graph_device) ; 
    des_meridian(sigmat.hh()(1,2), 0., ray_des, "h\\ur\\gh\\d", ngraph0+13,
                     graph_device) ; 
    des_meridian(sigmat.hh()(1,3), 0., ray_des, "h\\ur\\gf\\d", ngraph0+14,
                     graph_device) ; 
    des_meridian(sigmat.hh()(2,3), 0., ray_des, "h\\u\\gh\\gf\\d", ngraph0+15,
                     graph_device) ; 
    des_meridian(sigmat.hh()(3,3), 0., ray_des, "h\\u\\gf\\gf\\d", ngraph0+16,
                     graph_device) ; 
    des_meridian(sigmat.aa()(1,1), 0., ray_des, "A\\urr\\d", ngraph0+17, 
                         graph_device) ; 
    des_meridian(sigmat.aa()(2,3), 0., ray_des, "A\\u\\gh\\gf\\d", ngraph0+18,
                         graph_device) ; 
    des_meridian(sigmat.aa()(3,3), 0., ray_des, "A\\u\\gf\\gf\\d", ngraph0+19,
                          graph_device) ; 
    arrete() ; 

    return EXIT_SUCCESS ; 
}