Skip to content
Snippets Groups Projects
Commit 56f67aed authored by Laura Stengel's avatar Laura Stengel
Browse files

improved conductivity tensor

parent fb30eaca
No related branches found
No related tags found
No related merge requests found
......@@ -203,9 +203,11 @@ public:
Tensor Conductivity(const Cell &c) const override {
Tensor D = originalProblem->Conductivity(c);
Tensor F = One + transfer->Gradient(*displacement, c);
Tensor FInv = Invert(F);
return det(F) * FInv * D * transpose(FInv);
return D;
// to be checked
// Tensor F = One + transfer->Gradient(*displacement, c);
// Tensor FInv = Invert(F);
// return det(F) * FInv * D * transpose(FInv);
}
void chamberSpecialization(const string &chamberName) const override {
......
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