Skip to content
Snippets Groups Projects
Commit ba1d7929 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Add UniformDirichletBC ctor.

parent 4c2b1844
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,14 @@ public:
DBUG("Using value %g", _value);
}
UniformDirichletBoundaryCondition(GeoLib::GeoObject const* const geometry,
double value)
: _value(value), _geometry(geometry)
{
DBUG("Constructed UniformDirichletBoundaryCondition using value %g",
_value);
}
/// Initialize Dirichlet type boundary conditions.
/// Fills in global_ids of the particular geometry of the boundary condition
/// and the corresponding values.
......
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