Chaste Commit::ca8ccdedf819b6e02855bc0e8e6f50bdecbc5208
|
#include <ConstBoundaryCondition.hpp>
Public Member Functions | |
ConstBoundaryCondition (const double value) | |
double | GetValue (const ChastePoint< SPACE_DIM > &rX) const |
Public Member Functions inherited from AbstractBoundaryCondition< SPACE_DIM > | |
AbstractBoundaryCondition () | |
virtual | ~AbstractBoundaryCondition () |
Private Member Functions | |
template<class Archive > | |
void | serialize (Archive &archive, const unsigned int version) |
Private Attributes | |
double | mValue |
Friends | |
class | boost::serialization::access |
Boundary condition that takes a constant value wherever it is applied.
Definition at line 47 of file ConstBoundaryCondition.hpp.
ConstBoundaryCondition< SPACE_DIM >::ConstBoundaryCondition | ( | const double | value | ) |
Create a new boundary condition object.
value | The value of this boundary condition at all points where it is applied. |
Definition at line 39 of file ConstBoundaryCondition.cpp.
|
virtual |
rX | The point at which this boundary condition is to be evaluated. |
Implements AbstractBoundaryCondition< SPACE_DIM >.
Definition at line 45 of file ConstBoundaryCondition.cpp.
Referenced by BoundaryConditionsContainer< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::AddNeumannBoundaryCondition().
|
inlineprivate |
Archive the member variables.
archive | |
version |
Definition at line 60 of file ConstBoundaryCondition.hpp.
|
friend |
Needed for serialization.
Definition at line 52 of file ConstBoundaryCondition.hpp.
|
private |
The constant value of the boundary condition.
Definition at line 66 of file ConstBoundaryCondition.hpp.