File: init_coal.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 (280 lines) | stat: -rw-r--r-- 8,233 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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*
 * Main code for computing initial configuration
 *
 */

/*
 *   Copyright (c) 2004-2005 Francois Limousin
 *                           Jose Luis Jaramillo
 *
 *   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 init_coal_C[] = "$Header: /cvsroot/Lorene/Codes/Bin_hor/init_coal.C,v 1.8 2014/10/13 08:53:53 j_novak Exp $" ;

/*
 * $Id: init_coal.C,v 1.8 2014/10/13 08:53:53 j_novak Exp $
 * $Log: init_coal.C,v $
 * Revision 1.8  2014/10/13 08:53:53  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.7  2014/10/06 15:09:42  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.6  2007/04/13 15:30:58  f_limousin
 * Lots of improvements, generalisation to an arbitrary state of
 * rotation, implementation of the spatial metric given by Samaya.
 *
 * Revision 1.5  2006/08/01 14:13:41  f_limousin
 * New version...
 *
 * Revision 1.4  2006/06/29 08:54:52  f_limousin
 * Boundary conditions and grid writen in resformat.dat
 *
 * Revision 1.3  2006/06/28 13:36:52  f_limousin
 * Convergence to a given irreductible mass
 *
 * Revision 1.2  2006/05/24 16:59:08  f_limousin
 * New version
 *
 *
 * $Header: /cvsroot/Lorene/Codes/Bin_hor/init_coal.C,v 1.8 2014/10/13 08:53:53 j_novak Exp $
 *
 */

//standard
#include <cstdlib>
#include <cmath>

// LORENE
#include "type_parite.h"
#include "nbr_spx.h"
#include "proto.h"
#include "coord.h"
#include "tenseur.h"
#include "tensor.h"
#include "isol_hor.h"
#include "utilitaires.h"
#include "graphique.h"


using namespace Lorene ;

int main() {
    
    char blabla [120] ;
    ifstream param_init("par_init.d") ;
    
    double  precis, relax, radius, separation, lim_nn, mass_irr ;
    int nz, nt, np, nr1, nrp1, bound_nn, bound_psi, search_mass ;
    
    param_init.getline(blabla, 120) ;
    param_init.getline(blabla, 120) ;
    param_init >> separation ; param_init.getline(blabla, 120) ;
    param_init >> nz ; param_init.getline(blabla, 120) ;
    param_init >> nt; param_init.ignore(1000, '\n');
    param_init >> np; param_init.ignore(1000, '\n');
    param_init >> nr1; param_init.ignore(1000, '\n');
    param_init >> nrp1; param_init.ignore(1000, '\n');

    double* bornes = new double[nz+1] ;
    int* nr_tab = new int[nz];
    int* nt_tab = new int[nz];
    int* np_tab = new int[nz];

    for (int l=0 ; l<nz ; l++){
      if (l==1) nr_tab[1] = nr1 ;
      else nr_tab[l] = nrp1 ;
      np_tab[l] = np ; 
      nt_tab[l] = nt ; 
      param_init >> bornes[l] ;

    }
    radius = bornes[1] ;
    param_init.getline(blabla, 120) ;
    bornes[nz] = __infinity ; 

    param_init >> precis ; param_init.getline(blabla, 120) ;
    param_init >> relax ; param_init.getline(blabla, 120) ;
    
    param_init >> bound_nn ;
    param_init >> lim_nn ;  param_init.ignore(1000, '\n');
    param_init >> bound_psi ;  param_init.ignore(1000, '\n');    

    param_init.close() ;
    
    // Type of sampling in theta and phi :
    int type_t = SYM ; 
    int type_p = NONSYM ; 

    
    int* type_r = new int[nz] ;
    type_r[0] = RARE ;
    for (int l=1 ; l<nz-1 ; l++)
	type_r[l] = FIN ;
    type_r[nz-1] = UNSURR ;
    
    Mg3d grid (nz, nr_tab, type_r, nt_tab, type_t, np_tab, type_p) ;
    
    Map_af map_un (grid, bornes) ;
    Map_af map_deux (grid, bornes) ;
    
    map_un.set_ori (separation/2.,0, 0) ;
    map_deux.set_ori (-separation/2., 0, 0) ;
    map_deux.set_rot_phi (M_PI) ;

    Bin_hor bin (map_un, map_deux) ;
    bin.set_statiques(precis, relax, bound_nn, lim_nn, bound_psi) ;
    
    FILE* fich = fopen("static.d", "w") ;
    grid.sauve(fich) ;
    map_un.sauve(fich) ;
    map_deux.sauve(fich) ;
    bin.sauve(fich) ;
    fwrite_be(&bound_nn, sizeof(int), 1, fich) ;
    fwrite_be (&lim_nn, sizeof(double), 1, fich) ;
    fwrite_be(&bound_psi, sizeof(int), 1, fich) ;
    fclose(fich) ;

    
    // Part of coal
    // ------------

    char nomini[120] ;
    double omega_init, precis_viriel;
    int nb_om, nb_it, bound_beta ;

    ifstream param_coal("par_coal.d") ;
    if ( !param_coal.good() ) {
      cout << "Problem with opening the file par_coal.d ! " << endl ;
      abort() ;
    }
 
    param_coal.ignore(1000, '\n') ;
    param_coal.ignore(1000, '\n') ;
    param_coal.getline(nomini, 80) ;
    param_coal >> omega_init ; param_coal.getline(blabla, 120) ;
    param_coal >> search_mass ;
    param_coal >> mass_irr ;  param_coal.ignore(1000, '\n');
    param_coal >> precis_viriel ;  param_coal.getline(blabla, 120) ;
    param_coal >> relax ; param_coal.getline(blabla, 120) ;
    param_coal >> nb_om ; param_coal.getline(blabla, 120) ;
    param_coal >> nb_it ; param_coal.getline(blabla, 120) ;
    param_coal >> bound_beta ; param_coal.getline(blabla, 120) ;

    param_coal.close() ;

    bin.set_omega(0) ;
    bin.set(1).n_comp_import (bin(2)) ;
    bin.set(1).psi_comp_import (bin(2)) ;
    bin.set(1).beta_comp_import (bin(2)) ;
    bin.set(2).n_comp_import (bin(1)) ;
    bin.set(2).psi_comp_import (bin(1)) ;
    bin.set(2).beta_comp_import (bin(1)) ;
    bin.decouple() ;
    bin.extrinsic_curvature() ;

    cout << "CALCUL AVEC SEPARATION = " << separation << endl ;

    ofstream fich_iteration("iteration.dat") ;
    fich_iteration.precision(8) ;

    ofstream fich_correction("correction.dat") ;
    fich_correction.precision(8) ;

    ofstream fich_viriel("viriel.dat") ;
    fich_viriel.precision(8) ;

    ofstream fich_kss("kss.dat") ;
    fich_kss.precision(8) ;

    fich_iteration << "# step  precision  omega"  << endl ;
    fich_correction << "# step  regularisation  omega"  << endl ;
    fich_viriel << "# step  viriel  omega"  << endl ;
    fich_kss << "# step  kss  omega"  << endl ;

    int step = 0 ;
  
    cout << "step = " << step << endl ;
    double erreur = bin.coal(omega_init, relax, nb_om, nb_it, bound_nn,
			     lim_nn, bound_psi, bound_beta,
			     fich_iteration, fich_correction,
			     fich_viriel, fich_kss, step, search_mass,
			     mass_irr, 1) ;
    step += nb_om + nb_it ;

    // Convergence to the true Omega
    // ------------------------------

    bool boucle = true ;
    double omega = omega_init ;

    while (boucle) {

      omega = omega * pow((2-erreur)/(2-2*erreur), 1.) ;
  
      Scalar beta_old (bin(1).get_beta_auto()(1)) ;

      erreur = bin.coal (omega, relax, 1, 0, bound_nn,
                         lim_nn, bound_psi, bound_beta,
                         fich_iteration, fich_correction,
                         fich_viriel, fich_kss, step, search_mass,
			 mass_irr, 1) ;
 
     double erreur_it = 0 ;
      Tbl diff (diffrelmax (beta_old, bin(1).get_beta_auto()(1))) ;
      for (int i=1 ; i<bin(1).get_mp().get_mg()->get_nzone() ; i++)
        if (diff(i) > erreur_it)
          erreur_it = diff(i) ;


      if (fabs(erreur) < precis_viriel && erreur_it < precis_viriel)
        boucle = false ;

      step += 1 ;

    }

    fich_iteration.close() ;
    fich_correction.close() ;
    fich_viriel.close() ;
    fich_kss.close() ;

    FILE* fich_sortie = fopen("bin.dat", "w") ;
    grid.sauve(fich_sortie) ;
    map_un.sauve(fich_sortie) ;
    map_deux.sauve(fich_sortie) ;
    bin.sauve(fich_sortie) ;
    fclose(fich_sortie) ;

    ofstream seqfich("resformat.dat") ;
    if ( !seqfich.good() ) {
      cout << "coal_bh : problem with opening the file resformat.d !"
	   << endl ;
      abort() ;
    }
    bin.write_global(seqfich, lim_nn, bound_nn, bound_psi, bound_beta) ;
    seqfich.close() ;

    delete [] nr_tab ;
    delete [] nt_tab ;
    delete [] np_tab ;
    delete [] type_r ;
    delete [] bornes ;

    return 1 ;
}