Skip to content
Snippets Groups Projects
Commit 571e2309 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[freeflow][test] Fix bug in lidDrivenCavity

* getParam<bool> implicitly converts to Scalar, which is nasty ...
parent cffcc47e
No related branches found
No related tags found
3 merge requests!617[WIP] Next,!576Feature/port staggered ff to next next,!571Cleanup/next
......@@ -126,7 +126,7 @@ public:
ClosedSystemTestProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry)
: ParentType(fvGridGeometry), eps_(1e-6)
{
lidVelocity_ = getParam<bool>("Problem.LidVelocity");
lidVelocity_ = getParam<Scalar>("Problem.LidVelocity");
using CellArray = std::array<unsigned int, dimWorld>;
const CellArray numCells = getParam<CellArray>("Grid.Cells");
......
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