Skip to content
Snippets Groups Projects
Commit 69ffd992 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

update dg cohesive implementation

parent c2f99284
No related branches found
No related tags found
No related merge requests found
...@@ -364,6 +364,13 @@ class STensor3 { ...@@ -364,6 +364,13 @@ class STensor3 {
de(2,2) -= p; de(2,2) -= p;
return de; return de;
} }
void eig(fullMatrix<double> &V, fullVector<double> &S, bool s=false) const
{
fullMatrix<double> me(3, 3), left(3, 3);
fullVector<double> im(3);
this->getMat(me);
me.eig(S, im, left, V, s);
}
}; };
// tensor product // tensor product
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment