Skip to content
Snippets Groups Projects
Commit 837c0f3d authored by andy's avatar andy
Browse files

ENH: Exposed coupled flag

parent 9c7afd1b
Branches
Tags
No related merge requests found
......@@ -174,6 +174,9 @@ public:
//- Return const access to the coupled flag
inline const Switch coupled() const;
//- Return non-const access to the coupled flag
inline Switch& coupled();
//- Return const access to the cell value correction flag
inline const Switch cellValueSourceCorrection() const;
......
......@@ -101,6 +101,12 @@ inline Foam::scalar Foam::cloudSolution::trackTime() const
}
inline Foam::Switch& Foam::cloudSolution::coupled()
{
return coupled_;
}
inline const Foam::Switch Foam::cloudSolution::coupled() const
{
return coupled_;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment