| 476 | |
| 477 | |
| 478 | void Foam::fvMesh::removeFvBoundary() |
| 479 | { |
| 480 | if (debug) |
| 481 | { |
| 482 | InfoInFunction << "Removing boundary patches." << endl; |
| 483 | } |
| 484 | |
| 485 | // Remove fvBoundaryMesh data first. |
| 486 | boundary_.clear(); |
| 487 | boundary_.setSize(0); |
| 488 | polyMesh::removeBoundary(); |
| 489 | |
| 490 | clearOut(); |
| 491 | } |
| 492 | |
| 493 | |
| 494 | Foam::polyMesh::readUpdateState Foam::fvMesh::readUpdate() |
nothing calls this directly
no test coverage detected