Skip to content
Snippets Groups Projects
Commit 0f265159 authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

create local assembler and hand it to the global one

[[Imported from SVN: r4056]]
parent df29698c
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,10 @@ int main (int argc, char *argv[]) try ...@@ -117,7 +117,10 @@ int main (int argc, char *argv[]) try
// /////////////////////////////////////////// // ///////////////////////////////////////////
// Create a solver for the rod problem // Create a solver for the rod problem
// /////////////////////////////////////////// // ///////////////////////////////////////////
RodAssembler<GridType> rodAssembler(grid);
RodLocalStiffness<GridType::LeafGridView,double> localStiffness;
RodAssembler<GridType> rodAssembler(grid, &localStiffness);
rodAssembler.setShapeAndMaterial(A, J1, J2, E, nu); rodAssembler.setShapeAndMaterial(A, J1, J2, E, nu);
RiemannianTrustRegionSolver<GridType,RigidBodyMotion<3> > rodSolver; RiemannianTrustRegionSolver<GridType,RigidBodyMotion<3> > rodSolver;
......
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