Loading [MathJax]/extensions/MathMenu.js

dune-composites (unstable)

KLFunctions.hh
1// -*- tab-width: 4; indent-tabs-mode: nil -*-
2// vi: set et ts=4 sw=4 sts=4:
3#ifndef KLFunctions_h
4#define KLFunctions_h
5
6namespace Dune{
7 namespace Composites{
8
9 template<class X>
10 inline void evaluate_eigenValues(double ell, X& lambda, X& freq)
11 {
13 double c = 1. / ell;
14 for (unsigned int i = 0; i < lambda.size(); i++)
15 {
16 lambda[i] = 2.0 * c /(freq[i] * freq[i] + c * c);
17 }
18 }
19
20
21 double res(double x, double ell)
22 {
23 double c = 1.0 / ell;
24 double g = std::tan(x) - 2.0 * c * x / (x * x - c * c);
25 return g;
26 }
27
28
29 double findRoot(double ell, double a, double b)
30 {
32 double fa, fb, x, fx, error, m;
33 error = 1.0;
34 int iter = 0;
35 while (error > 1e-6)
36 {
37 fa = res(a,ell);
38 fb = res(b,ell);
39 m = (fb - fa) / (b - a);
40 x = a - fa / m;
41 fx = res(x,ell);
42 if (((fa < 0) & (fx < 0)) | ((fa > 0) & (fx > 0))) { a = x; }
43 else { b = x; }
44 error = std::abs(fx);
45 if(iter > 100000)
46 {
47 std::cout << "Warning: root finder hasn't converged. Check number of KL modes and correlation length." << std::endl;
48 break;
49 }
50 iter++;
51 }
52 return x;
53 }
54
55 void rootFinder(int M, double ell, std::vector<double>& answer)
56 {
57 double c = 1.0 / ell;
58 std::vector<double> freq(M+2);
59
60 // For all intervals
61
62 int m = -1;
63 //Should go to M because first interval is added additionally!
64 for (int i = 0; i < M+1; i++)
65 {
66
67 // std::cout << "Root i = " << i << std::endl;
68
69 double w_min = (i - 0.4999) * M_PI;
70 double w_max = (i + 0.4999) * M_PI;
71
72 // std::cout << "w_min = " << w_min << std::endl;
73 //std::cout << "w_max = " << w_max << std::endl;
74 if ((w_min <= c) && (w_max >= c))
75 {
76
77 // If not first interval look for solution near left boundary
78 if (w_min > 0.0)
79 {
80 m += 1;
81 freq[m] = findRoot(ell,w_min,0.5*(c+w_min));
82 }
83 // Always look for solution near right boundary
84 m += 1;
85 freq[m] = findRoot(ell,0.5*(c + w_max),w_max);
86 }
87 else
88 {
89 m += 1;
90 freq[m] = findRoot(ell,w_min,w_max);
91 }
92
93 }
94
95 for (int i = 0; i < M; i++)
96 {
97 answer[i] = freq[i+1];
98 }
99
100 }
101
102 }
103}
104
105#endif /* KLFunctions_h */
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 5, 23:02, 2025)