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

add simple access to continuum Dirichlet boundaries

[[Imported from SVN: r6814]]
parent 6d9353ba
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,12 @@ public:
assert(continuumGrids_.find(name) != continuumGrids_.end());
return continuumGrids_.find(name)->second;
}
const LeafBoundaryPatch<ContinuumGrid> continuumDirichletBoundary(const std::string& name) const
{
assert(continuumDirichletBoundaries_.find(name) != continuumDirichletBoundaries_.end());
return continuumDirichletBoundaries_.find(name)->second;
}
/** \brief Simple const access to couplings */
const Coupling& coupling(const std::pair<std::string,std::string>& name) 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