diff --git a/src/averageinterface.hh b/src/averageinterface.hh index 1ee094f03e74a4bb4a412e2b8ee5b1483bb50e20..ec2736ed8295cc68d282a057b4585bf4d1e13352 100644 --- a/src/averageinterface.hh +++ b/src/averageinterface.hh @@ -29,7 +29,7 @@ class PressureAverager : public Ipopt::TNLP public: /** \brief Constructor */ - PressureAverager(const BoundaryPatch<GridType>* patch, + PressureAverager(const LevelBoundaryPatch<GridType>* patch, Dune::BlockVector<Dune::FieldVector<double,dim> >* result, const Dune::FieldVector<double,dim>& resultantForce, const Dune::FieldVector<double,dim>& resultantTorque, @@ -111,7 +111,7 @@ public: */ const double jacobianCutoff_; - const BoundaryPatch<GridType>* patch_; + const LevelBoundaryPatch<GridType>* patch_; double patchArea_; @@ -408,11 +408,11 @@ finalize_solution(Ipopt::SolverReturn status, template <class GridType> void computeAveragePressure(const Dune::FieldVector<double,GridType::dimension>& resultantForce, const Dune::FieldVector<double,GridType::dimension>& resultantTorque, - const BoundaryPatch<GridType>& interface, + const LevelBoundaryPatch<GridType>& interface, const RigidBodyMotion<3>& crossSection, Dune::BlockVector<Dune::FieldVector<double, GridType::dimension> >& pressure) { - const GridType& grid = interface.getGrid(); + const GridType& grid = interface.gridView().grid(); const int level = interface.level(); const typename GridType::Traits::LevelIndexSet& indexSet = grid.levelIndexSet(level); const int dim = GridType::dimension; @@ -456,8 +456,8 @@ void computeAveragePressure(const Dune::FieldVector<double,GridType::dimension>& Dune::BlockVector<Dune::FieldVector<double,1> > nodalWeights(interface.numVertices()); nodalWeights = 0; - typename BoundaryPatch<GridType>::iterator it = interface.begin(); - typename BoundaryPatch<GridType>::iterator endIt = interface.end(); + typename LevelBoundaryPatch<GridType>::iterator it = interface.begin(); + typename LevelBoundaryPatch<GridType>::iterator endIt = interface.end(); for (; it!=endIt; ++it) { @@ -638,7 +638,7 @@ void computeAveragePressure(const Dune::FieldVector<double,GridType::dimension>& } template <class GridType> -void computeAverageInterface(const BoundaryPatch<GridType>& interface, +void computeAverageInterface(const LevelBoundaryPatch<GridType>& interface, const Dune::BlockVector<Dune::FieldVector<double,GridType::dimension> > deformation, RigidBodyMotion<3>& average) { @@ -648,7 +648,7 @@ void computeAverageInterface(const BoundaryPatch<GridType>& interface, typedef typename GridType::template Codim<0>::Entity EntityType; typedef typename EntityType::LevelIntersectionIterator NeighborIterator; - const GridType& grid = interface.getGrid(); + const GridType& grid = interface.gridView().grid(); const int level = interface.level(); const typename GridType::Traits::LevelIndexSet& indexSet = grid.levelIndexSet(level); const int dim = GridType::dimension; @@ -665,8 +665,8 @@ void computeAverageInterface(const BoundaryPatch<GridType>& interface, // Loop and integrate over the interface // /////////////////////////////////////////// - typename BoundaryPatch<GridType>::iterator it = interface.begin(); - typename BoundaryPatch<GridType>::iterator endIt = interface.end(); + typename LevelBoundaryPatch<GridType>::iterator it = interface.begin(); + typename LevelBoundaryPatch<GridType>::iterator endIt = interface.end(); for (; it!=endIt; ++it) { diff --git a/src/rodassembler.hh b/src/rodassembler.hh index 34a8a6ab1f6791fabdcdf89c58838142c969ebea..f4608c61aaa655f1f66f827f9c3bf17e23b6973b 100644 --- a/src/rodassembler.hh +++ b/src/rodassembler.hh @@ -82,7 +82,7 @@ class RodAssembler : public GeodesicFEAssembler<typename GridType::LeafGridView, /** \brief Return resultant force across boundary in canonical coordinates \note Linear run-time in the size of the grid */ - Dune::FieldVector<double,3> getResultantForce(const BoundaryPatch<GridType>& boundary, + Dune::FieldVector<double,3> getResultantForce(const LevelBoundaryPatch<GridType>& boundary, const std::vector<RigidBodyMotion<3> >& sol, Dune::FieldVector<double,3>& canonicalTorque) const;