-
Notifications
You must be signed in to change notification settings - Fork 0
/
InputData.h
305 lines (217 loc) · 7.22 KB
/
InputData.h
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
* InputData.h
*
* Created on: Dec 16, 2014
* Author: viktor
*/
#ifndef INPUTDATA_H_
#define INPUTDATA_H_
#include "RandomField.h"
#include "SharedData.h"
using namespace MonteCarlo;
namespace deterministic_solver
{
#define PI 3.1415926535897
/*---------------------------------------------------------------------------*/
/* Class interface */
/*---------------------------------------------------------------------------*/
/*-------------------------- Right hand side function -----------------------*/
template <int dim>
class RightHandSide : public RandomField<dim>
{
public:
RightHandSide () : RandomField<dim>() {};
virtual ~RightHandSide () {};
virtual double value ( const Point<dim> &p,
const unsigned int component = 0) const;
virtual void value_list ( const std::vector<Point<dim> > &points,
std::vector<double> &values,
const unsigned int component = 0) const;
private:
virtual double phi( double x, int n ) const; // n-th eigenfunction value of the K-L series
virtual double ksi( int n ) const; // n-th eigenvalue of the K-L series
};
/*------------------------------ Boundary values ----------------------------*/
template <int dim>
class BoundaryValues : public RandomField<dim>
{
public:
BoundaryValues () : RandomField<dim>() {};
virtual ~BoundaryValues () {};
virtual double value ( const Point<dim> &p,
const unsigned int component = 0) const;
private:
virtual double phi( double x, int n ) const; // n-th eigenfunction value of the K-L series
virtual double ksi( int n ) const; // n-th eigenvalue of the K-L series
};
/*---------------------------- Coefficient function -------------------------*/
template <int dim>
class Coefficient : public RandomField<dim>
{
public:
Coefficient ();
virtual ~Coefficient () {};
virtual double value ( const Point<dim> &p,
const unsigned int component = 0) const;
virtual void value_list ( const std::vector<Point<dim> > &points,
std::vector<double> &values,
const unsigned int component = 0) const;
std::vector<double> get_random_vector() const;
std::vector<double> get_coefficients() const;
static double get_cor_length();
void initialize( double cor_length ); // set type of distribution, L_c and stoch_dim
private:
static double Lc; // correlation length
static double Lp;
static double L;
static vector<double> eigenvalue;
virtual double phi( double x, int n ) const; // n-th eigenfunction value of the K-L series
virtual double ksi( int n ) const; // n-th eigenvalue of the K-L series
};
template<int dim> double Coefficient<dim> :: Lc;
template<int dim> double Coefficient<dim> :: Lp;
template<int dim> double Coefficient<dim> :: L;
template<int dim> vector<double> Coefficient<dim> :: eigenvalue;
/*---------------------------------------------------------------------------*/
/* Class implementation */
/*---------------------------------------------------------------------------*/
#define random_vector this->random_vector
#define generate_random_vector this->generate_random_vector
#define stoch_dim RandomField<dim>::stoch_dim
#define type_of_distribution RandomField<dim>::type_of_distribution
#define set_random_vector this->set_random_vector
/*-------------------------- Right hand side function -----------------------*/
template <int dim>
double RightHandSide<dim>::value ( const Point<dim> &p,
const unsigned int component) const
{
double x = p[0];
double y = p[1];
return cos(x) * sin(y);
}
template <int dim>
void RightHandSide<dim>::value_list ( const std::vector<Point<dim> > &points,
std::vector<double> &values,
const unsigned int component) const
{
Assert (values.size() == points.size(), ExcDimensionMismatch (values.size(), points.size()));
Assert (component == 0, ExcIndexRange (component, 0, 1));
const unsigned int n_points = points.size();
for ( unsigned int i = 0; i < n_points; ++i)
values[i] = value( points[i] );
}
template< int dim >
double RightHandSide<dim>::phi( double x, int n ) const
{
return 0.0;
}
template< int dim >
double RightHandSide<dim>::ksi( int n ) const
{
return 0.0;
}
/*------------------------------ Boundary values ----------------------------*/
template <int dim>
double BoundaryValues<dim>::value ( const Point<dim> &p,
const unsigned int component) const
{
return 0.0;
}
template< int dim >
double BoundaryValues<dim>::phi( double x, int n ) const
{
return 0.0;
}
template< int dim >
double BoundaryValues<dim>::ksi( int n ) const
{
return 0.0;
}
/*---------------------------- Coefficient function -------------------------*/
template <int dim>
Coefficient<dim>::Coefficient() : RandomField<dim>()
{}
template <int dim>
void Coefficient<dim>::initialize( double cor_length )
{
type_of_distribution = Uniform;
Lc = cor_length;
Lp = std::max(1.0,2*Lc);
L = Lc / Lp;
// for ( stoch_dim = 1; ksi(stoch_dim) > 0.01; stoch_dim++ ){};
stoch_dim = 50;
eigenvalue.resize(stoch_dim);
for ( int i = 0; i < stoch_dim-1; i++ )
eigenvalue[i] = ksi( i );
}
template< int dim >
double Coefficient<dim>::phi( double x, int n ) const
{
if ( n == 1 )
return sqrt(0.5);
if ( n & 1 ) // odd
return cos( PI * x * floor( n / 2.0 ) / Lp );
else // even
return sin( PI * x * floor( n / 2.0 ) / Lp );
}
template< int dim >
double Coefficient<dim>::ksi( int n ) const
{
if ( n == 1 )
return sqrt( sqrt(PI) * L );
else
{
double tmp = PI * L * floor( n / 2.0 );
return sqrt( sqrt(PI) * L ) * exp( - tmp * tmp / 8.0 );
}
}
template <int dim>
double Coefficient<dim>::value ( const Point<dim> &p,
const unsigned int component) const
{
double value;
double x = p[0];
// double y = p[1];
value = 1.0;
for ( int j = 0; j < stoch_dim; j++ )
value += random_vector[j] * ksi(j+1) * phi(x, j+1);
value = 0.5 + exp(value);
return value;
}
template <int dim>
void Coefficient<dim>::value_list ( const std::vector<Point<dim> > &points,
std::vector<double> &values,
const unsigned int component) const
{
Assert (values.size() == points.size(), ExcDimensionMismatch (values.size(), points.size()));
Assert (component == 0, ExcIndexRange (component, 0, 1));
const unsigned int n_points = points.size();
for ( unsigned int i = 0; i < n_points; ++i)
values[i] = value( points[i] );
}
template <int dim>
std::vector<double> Coefficient<dim>::get_random_vector() const
{
return random_vector;
}
template <int dim>
std::vector<double> Coefficient<dim>::get_coefficients() const
{
std::vector<double> coefficients;
coefficients.resize(stoch_dim);
for ( int j = 0; j < stoch_dim; j++ )
coefficients[j] = random_vector[j] * ksi(j+1);
return coefficients;
}
template <int dim>
double Coefficient<dim>::get_cor_length()
{
return Lc;
}
#undef random_vector
#undef generate_random_vector
#undef stoch_dim
#undef type_of_distribution
#undef set_random_vector
}//deterministic_solver
#endif /* INPUTDATA_H_ */