Removed obsolete functions

parent 4286c829
...@@ -307,28 +307,6 @@ const Float2D& SWE_Block::getBathymetry() { ...@@ -307,28 +307,6 @@ const Float2D& SWE_Block::getBathymetry() {
// methods for simulation // methods for simulation
//================================================================== //==================================================================
/**
* set wall boundary tpye for the four block boundaries
*/
void SWE_Block::setWallBoundaries() {
boundary[BND_LEFT] = WALL;
boundary[BND_RIGHT] = WALL;
boundary[BND_BOTTOM] = WALL;
boundary[BND_TOP] = WALL;
}
/**
* set outflow boundary tpye for the four block boundaries
*/
void SWE_Block::setOutflowBoundaries() {
boundary[BND_LEFT] = OUTFLOW;
boundary[BND_RIGHT] = OUTFLOW;
boundary[BND_BOTTOM] = OUTFLOW;
boundary[BND_TOP] = OUTFLOW;
}
/** /**
* Set the boundary type for specific block boundary. * Set the boundary type for specific block boundary.
* *
......
...@@ -145,10 +145,6 @@ class SWE_Block { ...@@ -145,10 +145,6 @@ class SWE_Block {
const Float2D& getBathymetry(); const Float2D& getBathymetry();
// defining boundary conditions // defining boundary conditions
/// set boundary conditions to type WALL at all boundaries
void setWallBoundaries();
/// set boundary conditions to type OUTFLOW at all boundaries
void setOutflowBoundaries();
/// set type of boundary condition for the specified boundary /// set type of boundary condition for the specified boundary
void setBoundaryType(BoundaryEdge edge, BoundaryType boundtype, void setBoundaryType(BoundaryEdge edge, BoundaryType boundtype,
const SWE_Block1D* inflow = NULL); const SWE_Block1D* inflow = NULL);
......
Subproject commit 2569cc274f93ca7af014e972bc1fed7b0b1df7ef Subproject commit 9f7fe2f2ebc31a9c9e68583232748fb5de7dba18
Markdown is supported
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