mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
EclProblem: add docstrings for the materialLawManager() methods
This commit is contained in:
parent
4ef6d5d1ce
commit
4a0832030c
@ -710,9 +710,18 @@ public:
|
||||
const MaterialLawParams& materialLawParams(unsigned globalDofIdx) const
|
||||
{ return materialLawManager_->materialLawParams(globalDofIdx); }
|
||||
|
||||
/*!
|
||||
* \brief Returns the ECL material law manager
|
||||
*
|
||||
* Note that this method is *not* part of the generic eWoms problem API because it
|
||||
* would force all problens use the ECL material laws.
|
||||
*/
|
||||
const std::shared_ptr<EclMaterialLawManager> materialLawManager() const
|
||||
{ return materialLawManager_; }
|
||||
|
||||
/*!
|
||||
* \copydoc materialLawManager()
|
||||
*/
|
||||
std::shared_ptr<EclMaterialLawManager> materialLawManager()
|
||||
{ return materialLawManager_; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user