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

added new methods for ViscoSecondDerivative with TensorRow

parent 615188f8
No related branches found
No related tags found
No related merge requests found
......@@ -290,6 +290,16 @@ public:
return viscoMat->SecondDerivative(F, L, H, G);
}
double ViscoSecondDerivative(const Tensor &F, const Tensor &L, const Tensor &H,
const TensorRow &G) const {
return viscoMat->SecondDerivative(F, L, H, Tensor(G));
}
double ViscoSecondDerivative(const Tensor &F, const Tensor &L, const TensorRow &H,
const Tensor &G) const {
return viscoMat->SecondDerivative(F, L, Tensor(H), G);
}
const std::string &Name() const { return hyperelMat->Name(); }
double GetParameter(int i) const {
......
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