View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002038 | OpenFOAM | Bug | public | 2016-04-01 11:58 | 2016-04-02 02:04 |
Reporter | MattijsJ | Assigned To | henry | ||
Priority | normal | Severity | crash | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | GNU/Linux | OS | OpenSuSE | OS Version | 13.2 |
Summary | 0002038: faceZoneToCell selecting cells | ||||
Description | faceZoneToCell uses masterCells() or slaveCells(). If the faceZone is on a boundary these will have -1 for the non-existing neighbouring cell. This causes -1 to be inserted into the cellSet. Change faceZoneCell.C:93 from: if (cellLabels[i] < mesh_.nCells()) to: if (cellLabels[i] >= 0 && cellLabels[i] < mesh_.nCells()) | ||||
Tags | No tags attached. | ||||