File: asymptot.C

package info (click to toggle)
lorene 0.0.0~cvs20161116%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,472 kB
  • sloc: cpp: 212,946; fortran: 21,645; makefile: 1,750; sh: 4
file content (174 lines) | stat: -rw-r--r-- 4,393 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
/*
 * Subroutine for analysis of asymptotic behavior of a Cmp
 *
 */

/*
 *   Copyright (c) 2002 Francois Limousin
 *
 *   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 asymptot_C[] = "$Header: /cvsroot/Lorene/Codes/Bin_star/asymptot.C,v 1.5 2014/10/13 08:53:53 j_novak Exp $" ;

/*
 * $Id: asymptot.C,v 1.5 2014/10/13 08:53:53 j_novak Exp $
 * $Log: asymptot.C,v $
 * Revision 1.5  2014/10/13 08:53:53  j_novak
 * Lorene classes and functions now belong to the namespace Lorene.
 *
 * Revision 1.4  2014/10/06 15:09:42  j_novak
 * Modified #include directives to use c++ syntax.
 *
 * Revision 1.3  2004/03/25 12:35:36  j_novak
 * now using namespace Unites
 *
 * Revision 1.2  2003/01/09 11:07:48  j_novak
 * headcpp.h is now compliant with C++ norm.
 * The include files have been ordered, as well as the local_settings_linux
 *
 * Revision 1.1  2002/06/18 14:07:26  f_limousin
 * Analysis of asymptotic behavior of binary NS and BH
 *
 *
 *
 * $Header: /cvsroot/Lorene/Codes/Bin_star/asymptot.C,v 1.5 2014/10/13 08:53:53 j_novak Exp $
 *
 */

// Headers standard du C
//  (par exemple definit la macro EXIT_SUCCESS)
#include <cstdlib>
#include <cstdio>

 
// Headers Lorene
#include "tenseur.h"
#include "bhole.h"
#include "binaire.h"
#include "eos.h"
#include "utilitaires.h"
#include "graphique.h"
#include "nbr_spx.h"

#include "unites.h"

namespace Lorene {

void asymptot(const Cmp& nn, const char* coment, bool graphics, ostream& fich) {

  using namespace Unites ;

  // Multi-grid
  const Mg3d& mg =  *( nn.get_mp()->get_mg() ) ;
  int nz = mg.get_nzone() ;
  int nzm1 = nz - 1 ; // index of the last domain

 // Number of coefficients
  int np = mg.get_np(nzm1) ;
  int nt = mg.get_nt(nzm1) ;
 
    // Asymptotic behavior of N :
        Valeur** nn_asymp = nn.asymptot(3,1) ; 
       

	fich << "Asymptotic behavior of " << coment << endl << endl ;
	
	for (int i=0; i<4; i++) {
	// Value (on the angular grid) containing the coef of 1/r^i
	Valeur& nn_i = *(nn_asymp[i]) ;
	
	// Computation of spectral expansions 
	nn_i.coef() ;

	cout << "Spectral coefficients of " << coment << " (1/r^" << i 
	     << ") : " << endl ;

	nn_i.affiche_seuil(cout,0,4,1e-5) ;

	fich << "Spectral coefficients of " << coment << " (1/r^" << i 
	     << ") : " << endl ;

		
	double nni_max = 0. ;
	for (int k=0; k<np+1; k++) {
	    if (k==1) continue ; 
	    for (int j=0; j<nt; j++) {
		double cf = (*nn_i.c_cf)(nzm1,k,j,0) ;
		if (fabs(cf) > fabs (nni_max)) {
		    nni_max = fabs(cf) ;
		}
	    }
	}

	fich << "nn" << i << "_max =" << nni_max << endl ;
	//fich << "nn" << i << "_min =" << nni_min << endl ;	    
	
	if ( nni_max > 1e-3 ) {
	for (int k=0; k<np+1; k++) {
	    if (k==1) continue ; 
	    for (int j=0; j<nt; j++) {
		double cf = (*nn_i.c_cf)(nzm1,k,j,0) ; 
		if ( fabs(cf) > 0.01 * nni_max && nni_max !=0) {
		    fich << "k= " << k << " j= " << j << " : " << cf << endl ;
		}
	    }
	}
	}
	
	    if (graphics && i==3) {
	  des_coef_theta(nn_i, 1, 0, 0, 1e-10) ; 
	  des_coef_theta(nn_i, 1, 2, 0, 1e-10) ; 
	  des_coef_theta(nn_i, 1, 4, 0, 1e-10) ; 

	  des_coef_theta(nn_i, 1, 6, 0, 1e-10) ; 
	  des_coef_theta(nn_i, 1, 8, 0, 1e-10) ; 
    
	  des_coef_phi(nn_i, 1, 0, 0, 1e-10) ; 
	  des_coef_phi(nn_i, 1, 1, 0, 1e-10) ; 
	  des_coef_phi(nn_i, 1, 2, 0, 1e-10) ; 
	  des_coef_phi(nn_i, 1, 3, 0, 1e-10) ; 
	  des_coef_phi(nn_i, 1, 4, 0, 1e-10) ; 
	    
	    }
	    fich << endl ;
	
      //double mass_nn = - nn_i(nz -1,0,0,0) / ggrav ; 
      //double mass_nn_sol = mass_nn / msol ;
      //cout << "Mass read from lapse : " << mass_nn_sol << " M_sol" << endl ; 

        //nn_3.ylm() ; // Spherical harmonics

	}
	    fich << "------------------------------------------------------------------------" << endl ;

}





  









}