Skip to content
Snippets Groups Projects
Commit d05fbc70 authored by Elias Pipping's avatar Elias Pipping
Browse files

[Cleanup]

parent d5f86a85
No related branches found
No related tags found
No related merge requests found
......@@ -101,14 +101,13 @@ int main(int argc, char *argv[]) {
parset);
Dune::ParameterTreeParser::readOptions(argc, argv, parset);
using LocalVector = Dune::FieldVector<double, dims>;
using LocalMatrix = Dune::FieldMatrix<double, dims, dims>;
using LocalScalarMatrix = Dune::FieldMatrix<double, 1, 1>;
using LocalVector = Dune::FieldVector<double, dims>;
using Matrix = Dune::BCRSMatrix<LocalMatrix>;
using ScalarMatrix = Dune::BCRSMatrix<LocalScalarMatrix>;
using Vector = Dune::BlockVector<LocalVector>;
using ScalarVector = Dune::BlockVector<Dune::FieldVector<double, 1>>;
using Nonlinearity = GlobalNonlinearity<Matrix, Vector>;
using Vector = Dune::BlockVector<LocalVector>;
auto const youngModulus = parset.get<double>("body.youngModulus");
auto const poissonRatio = parset.get<double>("body.poissonRatio");
......
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