| 47 | } // ~RefinePatchStrategySet |
| 48 | |
| 49 | void |
| 50 | RefinePatchStrategySet::setPhysicalBoundaryConditions(Patch<NDIM>& patch, |
| 51 | const double fill_time, |
| 52 | const IntVector<NDIM>& ghost_width_to_fill) |
| 53 | { |
| 54 | for (const auto& strategy : d_strategy_set) |
| 55 | { |
| 56 | strategy->setPhysicalBoundaryConditions(patch, fill_time, ghost_width_to_fill); |
| 57 | } |
| 58 | return; |
| 59 | } // setPhysicalBoundaryConditions |
| 60 | |
| 61 | IntVector<NDIM> |
| 62 | RefinePatchStrategySet::getRefineOpStencilWidth() const |