GridFluidSolver3.h
Go to the documentation of this file.
392 class GridFluidSolver3::Builder final : public GridFluidSolverBuilderBase3<GridFluidSolver3::Builder>
virtual void ComputeViscosity(double timeIntervalInSeconds)
Computes the viscosity term using the diffusion solver.
const AdvectionSolver3Ptr & GetAdvectionSolver() const
Returns the advection solver instance.
void Set(T s)
Set all x, y, and z components to s.
Definition: Vector3-Impl.h:27
std::shared_ptr< Collider3 > Collider3Ptr
Shared pointer type for the Collider3.
Definition: Collider3.h:112
Abstract base class for 3-D collocated vector grid structure.
Definition: CollocatedVectorGrid3.h:19
static Builder GetBuilder()
Returns builder fox GridFluidSolver3.
void OnAdvanceTimeStep(double timeIntervalInSeconds) override
Called when advancing a single time-step.
virtual void ComputePressure(double timeIntervalInSeconds)
Computes the pressure term using the pressure solver.
virtual ScalarField3Ptr GetFluidSDF() const
Returns the signed-distance representation of the fluid.
void OnInitialize() override
Called when it needs to setup initial condition.
void ResizeGrid(const Size3 &newSize, const Vector3D &newGridSpacing, const Vector3D &newGridOrigin) const
Resizes grid system data.
void SetCollider(const Collider3Ptr &newCollider)
Sets the collider.
std::shared_ptr< AdvectionSolver3 > AdvectionSolver3Ptr
Shared pointer type for the 3-D advection solver.
Definition: AdvectionSolver3.h:113
void SetDiffusionSolver(const GridDiffusionSolver3Ptr &newSolver)
Sets the diffusion solver.
void SetAdvectionSolver(const AdvectionSolver3Ptr &newSolver)
Sets the advection solver.
Vector3D GetGridOrigin() const
Returns the origin of the grid system data.
void SetEmitter(const GridEmitter3Ptr &newEmitter)
Sets the emitter.
std::shared_ptr< ScalarField3 > ScalarField3Ptr
Shared pointer for the ScalarField3 type.
Definition: ScalarField3.h:44
std::shared_ptr< GridEmitter3 > GridEmitter3Ptr
Shared pointer type for the GridEmitter3.
Definition: GridEmitter3.h:63
const FaceCenteredGrid3Ptr & GetVelocity() const
Returns the velocity field.
void SetUseCompressedLinearSystem(bool onoff)
Sets whether the solver should use compressed linear system.
Vector3D m_gridOrigin
Definition: GridFluidSolver3.h:329
std::shared_ptr< VectorField3 > VectorField3Ptr
Shared pointer for the VectorField3 type.
Definition: VectorField3.h:44
DerivedBuilder & WithOrigin(const Vector3D &gridOrigin)
Returns builder with grid origin.
Definition: GridFluidSolver3.h:370
virtual void ComputeExternalForces(double timeIntervalInSeconds)
Computes the external force terms.
const GridEmitter3Ptr & GetEmitter() const
Returns the emitter.
std::shared_ptr< GridPressureSolver3 > GridPressureSolver3Ptr
Shared pointer type for the GridPressureSolver3.
Definition: GridPressureSolver3.h:78
void SetPressureSolver(const GridPressureSolver3Ptr &newSolver)
Sets the pressure solver.
void SetGravity(const Vector3D &newGravity)
Sets the gravity of the system.
std::shared_ptr< GridBoundaryConditionSolver3 > GridBoundaryConditionSolver3Ptr
Shared pointer type for the GridBoundaryConditionSolver3.
Definition: GridBoundaryConditionSolver3.h:104
int GetClosedDomainBoundaryFlag() const
Returns the closed domain boundary flag.
const GridPressureSolver3Ptr & GetPressureSolver() const
Returns the pressure solver instance.
3-D face-centered (a.k.a MAC or staggered) grid.
Definition: FaceCenteredGrid3.h:25
VectorField3Ptr GetColliderVelocityField() const
Returns the velocity field of the collider.
Size3 GetResolution() const
Returns the resolution of the grid system data.
const GridDiffusionSolver3Ptr & GetDiffusionSolver() const
Returns the diffusion solver instance.
virtual void OnBeginAdvanceTimeStep(double timeIntervalInSeconds)
Called at the beginning of a time-step.
Base class for grid-based fluid solver builder.
Definition: GridFluidSolver3.h:303
std::shared_ptr< FaceCenteredGrid3 > FaceCenteredGrid3Ptr
Shared pointer type for the FaceCenteredGrid3.
Definition: FaceCenteredGrid3.h:276
void ApplyBoundaryCondition() const
Applies the boundary condition to the velocity field.
double GetViscosityCoefficient() const
Returns the viscosity coefficient.
bool GetUseCompressedLinearSystem() const
Returns true if the solver is using compressed linear system.
Abstract base class for physics-based animation.
Definition: PhysicsAnimation.h:22
unsigned int GetNumberOfSubTimeSteps(double timeIntervalInSeconds) const override
Returns the required sub-time-steps for given time interval.
Front-end to create GridFluidSolver3 objects step by step.
Definition: GridFluidSolver3.h:392
Definition: pybind11Utils.h:24
Vector3D GetGridSpacing() const
Definition: GridFluidSolver3.h:377
Abstract base class for grid-based 3-D fluid solver.
Definition: GridFluidSolver3.h:33
Vector3D m_gridSpacing
Definition: GridFluidSolver3.h:328
DerivedBuilder & WithResolution(const Size3 &resolution)
Returns builder with grid resolution.
Definition: GridFluidSolver3.h:337
virtual void OnEndAdvanceTimeStep(double timeIntervalInSeconds)
Called at the end of a time-step.
Vector3D GetGridSpacing() const
Returns the grid spacing of the grid system data.
const GridSystemData3Ptr & GetGridSystemData() const
Returns the grid system data.
std::shared_ptr< GridDiffusionSolver3 > GridDiffusionSolver3Ptr
Shared pointer type for the GridDiffusionSolver3.
Definition: GridDiffusionSolver3.h:93
double GetCFL(double timeIntervalInSeconds) const
Returns the CFL number from the current velocity field for given time interval.
void SetClosedDomainBoundaryFlag(int flag)
Sets the closed domain boundary flag.
DerivedBuilder & WithGridSpacing(const Vector3D &gridSpacing)
Returns builder with grid spacing.
Definition: GridFluidSolver3.h:344
void SetViscosityCoefficient(double newValue)
Sets the viscosity coefficient.
Size3 m_resolution
Definition: GridFluidSolver3.h:327
void ExtrapolateIntoCollider(ScalarGrid3 *grid)
Extrapolates given field into the collider-occupied region.
Abstract base class for 3-D scalar grid structure.
Definition: ScalarGrid3.h:21
const Collider3Ptr & GetCollider() const
Returns the collider.
std::shared_ptr< GridSystemData3 > GridSystemData3Ptr
Shared pointer type of GridSystemData3.
Definition: GridSystemData3.h:224
bool m_useDomainSize
Definition: GridFluidSolver3.h:331
ScalarField3Ptr GetColliderSDF() const
Returns the signed-distance field representation of the collider.
double m_domainSizeX
Definition: GridFluidSolver3.h:330
std::shared_ptr< GridFluidSolver3 > GridFluidSolver3Ptr
Shared pointer type for the GridFluidSolver3.
Definition: GridFluidSolver3.h:297
DerivedBuilder & WithDomainSizeX(double domainSizeX)
Returns builder with domain size in x-direction.
Definition: GridFluidSolver3.h:362
void ComputeGravity(double timeIntervalInSeconds)
Computes the gravity term.
GridFluidSolver3Ptr MakeShared() const
Builds shared pointer of GridFluidSolver3 instance.
Definition: GridFluidSolver3.h:399
const Vector3D & GetGravity() const
Returns the gravity vector of the system.
virtual void ComputeAdvection(double timeIntervalInSeconds)
Computes the advection term using the advection solver.