Skip to content
Snippets Groups Projects
Commit d04e02d0 authored by Markus Holzer's avatar Markus Holzer
Browse files

testing

parent 65eb1054
Branches
No related tags found
No related merge requests found
Pipeline #62877 canceled
......@@ -97,8 +97,8 @@ bool Cylinder::intersects(const AABB& aabb, const real_t bufferDistance) const
real_t Cylinder::delta(const Vector3< real_t >& fluid, const Vector3< real_t >& boundary) const
{
WALBERLA_CHECK(!contains(fluid))
WALBERLA_CHECK(contains(boundary))
WALBERLA_CHECK(!contains(fluid), "Point ( " << fluid << " ) is not outside the cylinder!")
WALBERLA_CHECK(contains(boundary), "Point ( " << boundary << " ) is not inside the cylinder!")
const real_t px = setup_.cylinderXPosition;
const real_t py = setup_.cylinderYPosition;
......
......@@ -37,7 +37,7 @@ DomainSetup
cellsPerBlock < 750, 750, 200 >;
domainSize < 60, 30, 4 >;
periodic < false, false, true>;
refinementLevels 0;
refinementLevels 8;
numberProcesses 1; // This is for load balancing, overwritten if more than one proc is used
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment