Skip to content

Commit

Permalink
Merge pull request #28089 from GiudGiud/PR_hotfix_bc
Browse files Browse the repository at this point in the history
Add missing APIs for overlapping domain action in BC
  • Loading branch information
GiudGiud authored Jul 10, 2024
2 parents 6349167 + 9967c56 commit f756407
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions framework/include/physics/PhysicsBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,12 @@ class PhysicsBase : public Action, public InputParametersChecksUtils<PhysicsBase
template <typename T>
const std::vector<T *> getCoupledPhysics(const bool allow_fail = false) const;

/// Return the maximum dimension of the blocks the Physics is active on
unsigned int dimension() const;

protected:
/// Return whether the Physics is solved using a transient
bool isTransient() const;
/// Return the maximum dimension of the blocks the Physics is active on
unsigned int dimension() const;

/// Get the factory for this physics
/// The factory lets you get the parameters for objects
Expand Down
2 changes: 2 additions & 0 deletions modules/navier_stokes/include/physics/WCNSFVFlowPhysics.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ class WCNSFVFlowPhysics final : public NavierStokesPhysicsBase
}
/// Get the inlet boundaries
const std::vector<BoundaryName> & getInletBoundaries() const { return _inlet_boundaries; }
/// Get the outlet boundaries
const std::vector<BoundaryName> & getOutletBoundaries() const { return _outlet_boundaries; }
/// Get the wall boundaries
const std::vector<BoundaryName> & getWallBoundaries() const { return _wall_boundaries; }
/// Get the inlet direction if using a flux inlet
Expand Down

0 comments on commit f756407

Please sign in to comment.