Skip to content
Snippets Groups Projects

Small fix: Remove unused variable in QDeviceComp27

2 files
+ 6
5
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -122,11 +122,11 @@ void multipleLevel(const std::string& configPath)
real dx = L / real(nx);
//gridBuilder->addCoarseGrid(-0.5 * L, -0.5 * L, -0.5 * L,
// 0.5 * L, 0.5 * L, 0.5 * L, dx);
gridBuilder->addCoarseGrid(-0.5 * L, -0.5 * L, -0.5 * L,
0.5 * L, 0.5 * L, 0.5 * L, dx);
gridBuilder->addCoarseGrid(-2.0 * dx, -0.5 * L, -0.5 * L,
2.0 * dx, 0.5 * L, 0.5 * L, dx);
// gridBuilder->addCoarseGrid(-2.0 * dx, -0.5 * L, -0.5 * L,
// 2.0 * dx, 0.5 * L, 0.5 * L, dx);
auto refBox = new Cuboid(-0.1 * L, -0.1 * L, -0.1 * L,
0.1 * L, 0.1 * L, 0.1 * L);
Loading