| 216 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 217 | |
| 218 | bool Foam::fv::cellSetOption::isActive() |
| 219 | { |
| 220 | if (option::isActive() && inTimeLimits(mesh_.time().value())) |
| 221 | { |
| 222 | // Update the cell set if the mesh is changing |
| 223 | if (mesh_.changing()) |
| 224 | { |
| 225 | setCellSet(); |
| 226 | } |
| 227 | |
| 228 | return true; |
| 229 | } |
| 230 | else |
| 231 | { |
| 232 | return false; |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | |
| 237 | // ************************************************************************* // |
nothing calls this directly
no test coverage detected