3#include <dune/composites/Setup/parallelPartition.hh>
4#include <dune/composites/Setup/GridTransformation.hh>
5#include <dune/composites/Setup/dirichletBC.hh>
6#include <dune/composites/Driver/FEM/Serendipity/serendipityfem.hh>
8#include "../PostProcessing/computeStresses.hh"
9#include "../PostProcessing/plot_properties.hh"
10#include "localOperator/linearelasticity.hh"
16 template <
typename MODEL>
20 typedef Dune::PDELab::ISTL::BCRSMatrixBackend<> MBE;
25 Dune::MPIHelper& helper;
31 void inline setElementOrder(
int val = 2){
35 void inline apply(MODEL& myModel){
36 if (myModel.setUp_Required ==
true){
38 myModel.setUpMaterials();
39 myModel.computeElasticTensors();
43 std::vector<double> times(3);
47 typedef Dune::YaspGrid<3,Dune::TensorProductCoordinates<RF,3>> YGRID;
49 YGRID yaspgrid(myModel.coords,myModel.periodic,myModel.overlap,helper.getCommunicator(),&yp);
50 int refinements = myModel.refineBaseGrid;
51 if(refinements > 0) yaspgrid.globalRefine(refinements);
52 typedef YGRID::LeafGridView YGV;
53 const YGV ygv = yaspgrid.leafGridView();
55 if(helper.rank() == 0){
56 std::cout <<
"Number of elements per processor: " << ygv.size(0) << std::endl;
57 std::cout <<
"Number of nodes per processor: " << ygv.size(3) << std::endl;
66 GRID_TRAFO gTrafo(myModel, helper.rank());
68 typedef typename Dune::GeometryGrid<YGRID,GRID_TRAFO> GRID;
69 GRID grid(yaspgrid,gTrafo);
70 if(helper.rank() == 0)
71 std::cout <<
"Grid transformation complete" << std::endl;
74 typedef typename GRID::LeafGridView GV;
75 const GV gv = grid.leafGridView();
77 if(helper.rank() == 0)
78 std::cout <<
"Grid view set up" << std::endl;
80 times[1] = watch.elapsed();
84 typedef Dune::PDELab::CompositeConstraintsParameters<BC,BC,BC> Constraints;
89 myModel.template computeTensorsOnGrid<GV,YGV>(gv,ygv);
93 InitialDisp u1(gv, myModel,0), u2(gv, myModel,1), u3(gv, myModel,2);
96 typedef Dune::PDELab::CompositeGridFunction<InitialDisp,InitialDisp,InitialDisp> InitialSolution;
97 InitialSolution initial_solution(u1,u2,u3);
100 typedef Dune::PDELab::OverlappingConformingDirichletConstraints CON;
102 typedef Dune::PDELab::ConformingDirichletConstraints CON_EXT;
104 times[2] = watch.elapsed();
108 const int element_order = 2;
109 const int dofel = 3 * 20;
110 const int non_zeros = 81;
112 if(helper.rank() == 0)
113 std::cout <<
"Piecewise quadratic serendipity elements" << std::endl;
119 typedef Dune::PDELab::AllEntitySet<GV> ES_ALL;
122 using SCALAR_VBE = Dune::PDELab::ISTL::VectorBackend<>;
123 typedef Dune::PDELab::GridFunctionSpace<ES_ALL, FEM, CON, SCALAR_VBE> SCALAR_GFS;
124 typedef Dune::PDELab::GridFunctionSpace<ES_ALL, FEM, CON_EXT, SCALAR_VBE> SCALAR_GFS_EXT;
125 SCALAR_GFS U1(es_all,fem,con); U1.name(
"U1"); SCALAR_GFS_EXT U1_EXT(es_all,fem);
126 SCALAR_GFS U2(es_all,fem,con); U2.name(
"U2"); SCALAR_GFS_EXT U2_EXT(es_all,fem);
127 SCALAR_GFS U3(es_all,fem,con); U3.name(
"U3"); SCALAR_GFS_EXT U3_EXT(es_all,fem);
130 const int block_size = 3;
131 using VBE = Dune::PDELab::ISTL::VectorBackend<Dune::PDELab::ISTL::Blocking::fixed>;
132 using Ordering = Dune::PDELab::EntityBlockedOrderingTag;
133 typedef Dune::PDELab::PowerGridFunctionSpace <SCALAR_GFS,block_size,VBE,Ordering> GFS;
134 const GFS gfs(U1,U2,U3);
135 typedef Dune::PDELab::PowerGridFunctionSpace <SCALAR_GFS_EXT,block_size,VBE,Ordering> GFS_EXT;
136 const GFS_EXT gfs_ext(U1_EXT,U2_EXT,U3_EXT);
138 typedef typename GFS::template ConstraintsContainer<RF>::Type C;
144 BC U1_cc(gv,myModel,0), U2_cc(gv,myModel,1), U3_cc(gv,myModel,2);
145 Constraints constraints(U1_cc,U2_cc,U3_cc);
147 Dune::PDELab::constraints(constraints,gfs,cg);
152 typedef Dune::PDELab::linearelasticity<GV, MODEL, dofel> LOP;
153 LOP lop(gv, myModel);
155 typedef Dune::PDELab::GridOperator<GFS,GFS,LOP,MBE,RF,RF,RF,C,C> GO;
156 GO go(gfs,cg,gfs,cg,lop,mbe);
157 typedef Dune::PDELab::GridOperator<GFS_EXT,GFS_EXT,LOP,MBE,RF,RF,RF,C,C> GO_EXT;
160 typedef Dune::PDELab::Backend::Vector<GFS,double> V;
162 Dune::PDELab::interpolate(initial_solution,gfs,u);
165 Dune::PDELab::set_shifted_dofs(cg,0.0,u);
166 myModel.template solve<GO,GO_EXT,V,GFS,GFS_EXT,C,Constraints,MBE,LOP>(go,u,gfs,gfs_ext,cg,constraints,mbe,lop);
168 Dune::SubsamplingVTKWriter<GV> vtkwriter(gv,Dune::refinementLevels(0));
169 Dune::PDELab::addSolutionToVTKWriter(vtkwriter,gfs,u);
170 vtkwriter.write(myModel.vtk_displacement_output,Dune::VTK::appendedraw);
172 calculateStresses<MODEL,V,GV,GFS,MBE>(myModel,u,gv,gfs,mbe);
174 plotProperties<MODEL,V,GV,GFS,MBE>(myModel,gv,gfs,mbe);
176 myModel.template postprocess<GO,V,GFS,C,MBE,GV>(go,u,gfs,cg,gv,mbe);
Define Scalar Dirichlet Boundary Conditions.
Definition: dirichletBC.hh:14
Partition yaspgrid for parallelism.
Definition: parallelPartition.hh:12
linear static driver
Definition: linearStaticDriver.hh:17
Definition: serendipityfem.hh:20