Commit 46d30be4 authored by Tomáš Jakubec's avatar Tomáš Jakubec
Browse files

Revert "Merge branch 'refs/heads/Heat_Cond_RKM'"

This reverts commit a6c71d46, reversing
changes made to 0a524e29.
parent a6c71d46
This diff is collapsed.
......@@ -378,20 +378,20 @@ public:
void appendBoundaryCell(IndexType cellIndex, IndexType faceIndex){
Cell c;
c.setIndex(cellIndex);
c.setBoundaryElementIndex(faceIndex);
c.SetBoundaryElementIndex(faceIndex);
BoundaryCells.push_back(c);
}
void setupBoundaryCells(){
for (Face& face : getFaces()){
if (face.getCellLeftIndex() == INVALID_INDEX(IndexType)){
if (face.GetCellLeftIndex == INVALID_INDEX(IndexType)){
IndexType cellIndex = BoundaryCells.size() | BOUNDARY_INDEX(IndexType);
face.setCellLeftIndex(cellIndex);
face.SetCellLeftIndex(cellIndex);
appendBoundaryCell(cellIndex, face.getIndex());
}
if (face.getCellRightIndex() == INVALID_INDEX(IndexType)){
if (face.GetCellRightIndex == INVALID_INDEX(IndexType)){
IndexType cellIndex = BoundaryCells.size() | BOUNDARY_INDEX(IndexType);
face.setCellRightIndex(cellIndex);
face.SetCellRightIndex(cellIndex);
appendBoundaryCell(cellIndex, face.getIndex());
}
}
......@@ -401,7 +401,7 @@ public:
void setupBoundaryCellsCenters() {
for(Cell& cell : BoundaryCells){
cell.setCenter(getFaces().at(cell.getBoundaryElementIndex()).getCenter());
cell.SetCenter(getFaces().at(cell.getBoundaryElementIndex()).GetCenter());
}
}
......
Supports Markdown
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