forked from rogerwendell/Prob3plusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EarthDensity.cc
244 lines (180 loc) · 6.09 KB
/
EarthDensity.cc
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
#include "EarthDensity.h"
#include <iostream>
#include <cstdlib>
#include <sstream>
EarthDensity::EarthDensity( )
{
//cout << "EarthDensity::EarthDensity Using Default density profile " << endl;
// radius: [ km ] density [ g/cm^3 ]
_density[ 0 ] = 13.0 ;
_density[ 1220.0 ] = 13.0 ;
_density[ 3480.0 ] = 11.3 ;
_density[ 5701.0 ] = 5.0 ;
_density[ 6371.0 ] = 3.3 ;
// chemical composition
_YpMap[ 0 ] = 0.468 ;
_YpMap[ 1220.0 ] = 0.468 ;
_YpMap[ 3480.0 ] = 0.497 ;
_YpMap[ 5701.0 ] = 0.497 ;
_YpMap[ 6371.0 ] = 0.497 ;
REarth = 6371.0 ;
_TraverseDistance = NULL;
_TraverseRhos = NULL;
_Yp = NULL;
init();
}
EarthDensity::EarthDensity( const char * file )
{
_TraverseDistance = NULL;
_TraverseRhos = NULL;
_Yp = NULL;
LoadDensityProfile( file );
}
void EarthDensity::LoadDensityProfile( const char * file )
{
ifstream PREM_dat;
double r_dist = 0.0; // radial distance -- map key //
double rho; // density at that distance -- map value //
double lyp;
double REarth = 6371.0 ;
DensityFileName = file;
PREM_dat.open(DensityFileName.c_str());
if(! PREM_dat)
{
cerr<<"EarthDensity::Load ERROR OPENING " << DensityFileName << endl;
exit(1);
}
else
cout << "Loading Density profile from: " << DensityFileName << endl;
// count the number of columns to separate IO between reading
// files like
// radius rho and
// radius rho Yp and
std::string line;
getline( PREM_dat , line);
std::stringstream s;
s << line;
int count = 0;
double dummy;
while ( s >> dummy ) count++;
// rewind the file
PREM_dat.clear();
PREM_dat.seekg(0);
while( !PREM_dat.eof( ) )
{
if ( r_dist > REarth ) REarth = r_dist;
if( count == 2 )
{
PREM_dat >> r_dist >> rho ;
_density[r_dist] = rho ;
_YpMap [r_dist] = 0.5 ;
}
else
{
PREM_dat >> r_dist >> rho >> lyp ;
_density[r_dist] = rho ;
_YpMap [r_dist] = lyp ;
}
}
PREM_dat.close();
// must be re-initialized after a profile is loaded
init();
}
void EarthDensity::init()
{
Load();
ComputeMinLengthToLayers();
}
///// Really need to clean this bit up, slow and bulky!
void EarthDensity::SetDensityProfile( double CosineZ, double PathLength , double ProductionHeight)
{
int i;
int MaxLayer;
double km2cm = 1.0e5;
double TotalEarthLength = -2.0*CosineZ*REarth*km2cm; // in [cm]
double CrossThis, CrossNext;
map<double, double>::iterator _i;
// path through air
_TraverseRhos[0] = 0.0 ;
_Yp[0] = 0.0 ;
_TraverseDistance[0] = PathLength - TotalEarthLength ;
// std::cout << " Earth ... PathLenght: " << PathLength << " totallength " << TotalEarthLength << std::endl;
if( CosineZ >= 0 )
{
_TraverseDistance[0] = PathLength;
Layers = 1;
return;
}
Layers = 0;
for ( _i = _CosLimit.begin(); _i != _CosLimit.end() ; _i++ )
if( CosineZ < _i->second )
Layers++;
MaxLayer = Layers;
// the zeroth layer is the air!
for ( i = 0 ; i< MaxLayer ; i++ )
{
_TraverseRhos[i+1] = _Rhos[i];
_Yp [i+1] = _Yps [i];
CrossThis = 2.0*sqrt( _Radii[i] * _Radii[i] - REarth*REarth*( 1 -CosineZ*CosineZ ) );
if( i < MaxLayer-1 )
{
CrossNext = 2.0*sqrt( _Radii[i+1] * _Radii[i+1] - REarth*REarth*( 1 -CosineZ*CosineZ ) );
_TraverseDistance[i+1] = 0.5*( CrossThis-CrossNext )*km2cm;
}
else
_TraverseDistance[i+1] = CrossThis*km2cm;
// assumes azimuthal symmetry
if( i < MaxLayer ){
_TraverseRhos [ 2*MaxLayer - i ] = _TraverseRhos[i];
_TraverseDistance[ 2*MaxLayer - i ] = _TraverseDistance[i];
_Yp [ 2*MaxLayer - i ] = _Yp[i];
}
}
Layers = 2*MaxLayer;
}
// now using Zenith angle to compute minimum conditions...20050620 rvw
void EarthDensity::ComputeMinLengthToLayers()
{
double x;
_CosLimit.clear();
// first element of _Radii is largest radius!
for(int i=0; i < (int) _Radii.size() ; i++ )
{
// Using a cosine threshold instead! //
x = -1* sqrt( 1 - (_Radii[i] * _Radii[i] / ( REarth*REarth)) );
if ( i == 0 ) x = 0;
_CosLimit[ _Radii[i] ] = x;
}
}
void EarthDensity::Load( )
{
int MaxDepth = 0;
//map<double, double>::iterator _i;
map<double, double>::reverse_iterator _i;
if( _TraverseRhos != NULL ) delete [] _TraverseRhos;
if( _TraverseDistance != NULL ) delete [] _TraverseDistance;
if( _Yp != NULL ) delete [] _Yp;
//_i = _density.end();
//_i--;
_i = _density.rbegin();
REarth = _i->first; // Earth is 6371.0 [km]
// to get the densities in order of decreasing radii
for( _i = _density.rbegin() ; _i != _density.rend() ; ++_i )
{
_Rhos .push_back( _i->second );
_Radii.push_back( _i->first );
MaxDepth++;
}
for( _i = _YpMap.rbegin() ; _i != _YpMap.rend() ; ++_i )
_Yps .push_back( _i->second );
_TraverseRhos = new double [ 2*MaxDepth + 1 ];
_TraverseDistance = new double [ 2*MaxDepth + 1 ];
_Yp = new double [ 2*MaxDepth + 1 ];
return;
}
EarthDensity::~EarthDensity( )
{
if( _TraverseRhos != NULL ) delete [] _TraverseRhos;
if( _TraverseDistance != NULL ) delete [] _TraverseDistance;
if( _Yp != NULL ) delete [] _Yp;
}