3#ifndef DUNE_FMATRIXEIGENVALUES_HH
4#define DUNE_FMATRIXEIGENVALUES_HH
26 namespace FMatrixHelp {
29 extern void eigenValuesLapackCall(
30 const char* jobz,
const char* uplo,
const long
31 int* n,
double* a,
const long int* lda,
double* w,
32 double* work,
const long int* lwork,
long int* info);
34 extern void eigenValuesNonsymLapackCall(
35 const char* jobvl,
const char* jobvr,
const long
36 int* n,
double* a,
const long int* lda,
double* wr,
double* wi,
double* vl,
37 const long int* ldvl,
double* vr,
const long int* ldvr,
double* work,
38 const long int* lwork,
const long int* info);
49 eigenvalues[0] = matrix[0][0];
62 const K detM = matrix[0][0] * matrix[1][1] - matrix[1][0] * matrix[0][1];
63 const K p = 0.5 * (matrix[0][0] + matrix [1][1]);
65 if( q < 0 && q > -1e-14 ) q = 0;
68 std::cout << matrix << std::endl;
70 DUNE_THROW(
MathError,
"Complex eigenvalue detected (which this implementation cannot handle).");
77 eigenvalues[0] = p - q;
78 eigenvalues[1] = p + q;
100 K p1 = matrix[0][1]*matrix[0][1] + matrix[0][2]*matrix[0][2] + matrix[1][2]*matrix[1][2];
105 eigenvalues[0] = matrix[0][0];
106 eigenvalues[1] = matrix[1][1];
107 eigenvalues[2] = matrix[2][2];
113 for (
int i=0; i<3; i++)
114 q += matrix[i][i]/3.0;
116 K p2 = (matrix[0][0] - q)*(matrix[0][0] - q) + (matrix[1][1] - q)*(matrix[1][1] - q) + (matrix[2][2] - q)*(matrix[2][2] - q) + 2 * p1;
120 for (
int i=0; i<3; i++)
121 for (
int j=0; j<3; j++)
122 B[i][j] = (1/p) * (matrix[i][j] - q*(i==j));
137 eigenvalues[2] = q + 2 * p * cos(phi);
138 eigenvalues[0] = q + 2 * p * cos(phi + (2*pi/3));
139 eigenvalues[1] = 3 * q - eigenvalues[0] - eigenvalues[2];
150 template <
int dim,
typename K>
155 const long int N = dim ;
156 const char jobz =
'n';
157 const char uplo =
'u';
160 const long int w = N * N ;
163 double matrixVector[dim * dim];
167 for(
int i=0; i<dim; ++i)
169 for(
int j=0; j<dim; ++j, ++row)
171 matrixVector[ row ] = matrix[ i ][ j ];
176 double workSpace[dim * dim];
182 eigenValuesLapackCall(&jobz, &uplo, &N, &matrixVector[0], &N,
183 &eigenvalues[0], &workSpace[0], &w, &info);
187 std::cerr <<
"For matrix " << matrix <<
" eigenvalue calculation failed! " << std::endl;
199 template <
int dim,
typename K,
class C>
204 const long int N = dim ;
205 const char jobvl =
'n';
206 const char jobvr =
'n';
209 double matrixVector[dim * dim];
213 for(
int i=0; i<dim; ++i)
215 for(
int j=0; j<dim; ++j, ++row)
217 matrixVector[ row ] = matrix[ i ][ j ];
228 long int lwork = 3*dim;
231 eigenValuesNonsymLapackCall(&jobvl, &jobvr, &N, &matrixVector[0], &N,
232 &eigenR[0], &eigenI[0], 0, &N, 0, &N, &work[0],
237 std::cerr <<
"For matrix " << matrix <<
" eigenvalue calculation failed! " << std::endl;
240 for (
int i=0; i<N; ++i) {
field_type determinant() const
calculates the determinant of this matrix
A dense n x m matrix.
Definition: fmatrix.hh:68
vector space out of a tensor product of fields.
Definition: fvector.hh:93
Default exception if a function was called while the object is not in a valid state for that function...
Definition: exceptions.hh:279
Default exception class for mathematical errors.
Definition: exceptions.hh:239
A few common exception classes.
Implements a matrix constructed from a given type representing a field and compile-time given number ...
static void eigenValuesNonSym(const FieldMatrix< K, dim, dim > &matrix, FieldVector< C, dim > &eigenValues)
calculates the eigenvalues of a symmetric field matrix
Definition: fmatrixev.hh:200
static void eigenValues(const FieldMatrix< K, 1, 1 > &matrix, FieldVector< K, 1 > &eigenvalues)
calculates the eigenvalues of a symmetric field matrix
Definition: fmatrixev.hh:46
Implements a vector constructed from a given type representing a field and a compile-time given size.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:216
Some useful basic math stuff.
Dune namespace.
Definition: alignedallocator.hh:10
Provides commonly used mathematical constants.
Definition: math.hh:24