Skip to content
Snippets Groups Projects
Commit 10c3f245 authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[poroelastic][spatialparams] respect dumux conventions

parent a18bd49a
No related branches found
No related tags found
1 merge request!991respect dumux conventions
...@@ -59,11 +59,16 @@ public: ...@@ -59,11 +59,16 @@ public:
} }
//! Define the Lame parameters //! Define the Lame parameters
const LameParams& lameParamsAtPos(const GlobalPosition& globalPos) const { return lameParams_; } const LameParams& lameParamsAtPos(const GlobalPosition& globalPos) const
{ return lameParams_; }
//! Return the porosity of the porous medium //! Return the porosity of the porous medium
Scalar porosityAtPos(const GlobalPosition& globalPos) const { return 0.3; } Scalar porosityAtPos(const GlobalPosition& globalPos) const
{ return 0.3; }
//! Return the biot coefficient of the porous medium //! Return the biot coefficient of the porous medium
Scalar biotCoefficientAtPos(const GlobalPosition& globalPos) const { return 1.0; } Scalar biotCoefficientAtPos(const GlobalPosition& globalPos) const
{ return 1.0; }
private: private:
LameParams lameParams_; LameParams lameParams_;
......
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