CubbyFlow::IterativeLevelSetSolver3 Class Referenceabstract

Abstract base class for 3-D PDE-based iterative level set solver. More...

#include <Core/Solver/LevelSet/IterativeLevelSetSolver3.h>

Inheritance diagram for CubbyFlow::IterativeLevelSetSolver3:
CubbyFlow::LevelSetSolver3 CubbyFlow::ENOLevelSetSolver3 CubbyFlow::UpwindLevelSetSolver3

Public Member Functions

 IterativeLevelSetSolver3 ()
 Default constructor. More...
 
virtual ~IterativeLevelSetSolver3 ()
 Default destructor. More...
 
void Reinitialize (const ScalarGrid3 &inputSDF, double maxDistance, ScalarGrid3 *outputSDF) override
 
void Extrapolate (const ScalarGrid3 &input, const ScalarField3 &sdf, double maxDistance, ScalarGrid3 *output) override
 
void Extrapolate (const CollocatedVectorGrid3 &input, const ScalarField3 &sdf, double maxDistance, CollocatedVectorGrid3 *output) override
 
void Extrapolate (const FaceCenteredGrid3 &input, const ScalarField3 &sdf, double maxDistance, FaceCenteredGrid3 *output) override
 
double GetMaxCFL () const
 Returns the maximum CFL limit. More...
 
void SetMaxCFL (double newMaxCFL)
 Sets the maximum CFL limit. More...
 
- Public Member Functions inherited from CubbyFlow::LevelSetSolver3
 LevelSetSolver3 ()
 Default constructor. More...
 
virtual ~LevelSetSolver3 ()
 Default destructor. More...
 

Protected Member Functions

virtual void GetDerivatives (ConstArrayAccessor3< double > grid, const Vector3D &gridSpacing, size_t i, size_t j, size_t k, std::array< double, 2 > *dx, std::array< double, 2 > *dy, std::array< double, 2 > *dz) const =0
 Computes the derivatives for given grid point. More...
 

Detailed Description

Abstract base class for 3-D PDE-based iterative level set solver.

This class provides infrastructure for 3-D PDE-based iterative level set solver. Internally, the class implements upwind-style wave propagation and the inheriting classes must provide a way to compute the derivatives for given grid points.

See also
Osher, Stanley, and Ronald Fedkiw. Level set methods and dynamic implicit surfaces. Vol. 153. Springer Science & Business Media, 2006.

Constructor & Destructor Documentation

◆ IterativeLevelSetSolver3()

CubbyFlow::IterativeLevelSetSolver3::IterativeLevelSetSolver3 ( )

Default constructor.

◆ ~IterativeLevelSetSolver3()

virtual CubbyFlow::IterativeLevelSetSolver3::~IterativeLevelSetSolver3 ( )
virtual

Default destructor.

Member Function Documentation

◆ Extrapolate() [1/3]

void CubbyFlow::IterativeLevelSetSolver3::Extrapolate ( const ScalarGrid3 input,
const ScalarField3 sdf,
double  maxDistance,
ScalarGrid3 output 
)
overridevirtual

Extrapolates given scalar field from negative to positive SDF region.

Parameters
inputInput scalar field to be extrapolated.
sdfReference signed-distance field.
maxDistanceMax range of extrapolation.
outputOutput scalar field.

Implements CubbyFlow::LevelSetSolver3.

◆ Extrapolate() [2/3]

void CubbyFlow::IterativeLevelSetSolver3::Extrapolate ( const CollocatedVectorGrid3 input,
const ScalarField3 sdf,
double  maxDistance,
CollocatedVectorGrid3 output 
)
overridevirtual

Extrapolates given collocated vector field from negative to positive SDF region.

Parameters
inputInput collocated vector field to be extrapolated.
sdfReference signed-distance field.
maxDistanceMax range of extrapolation.
outputOutput collocated vector field.

Implements CubbyFlow::LevelSetSolver3.

◆ Extrapolate() [3/3]

void CubbyFlow::IterativeLevelSetSolver3::Extrapolate ( const FaceCenteredGrid3 input,
const ScalarField3 sdf,
double  maxDistance,
FaceCenteredGrid3 output 
)
overridevirtual

Extrapolates given face-centered vector field from negative to positive SDF region.

Parameters
inputInput face-centered field to be extrapolated.
sdfReference signed-distance field.
maxDistanceMax range of extrapolation.
outputOutput face-centered vector field.

Implements CubbyFlow::LevelSetSolver3.

◆ GetDerivatives()

virtual void CubbyFlow::IterativeLevelSetSolver3::GetDerivatives ( ConstArrayAccessor3< double >  grid,
const Vector3D gridSpacing,
size_t  i,
size_t  j,
size_t  k,
std::array< double, 2 > *  dx,
std::array< double, 2 > *  dy,
std::array< double, 2 > *  dz 
) const
protectedpure virtual

Computes the derivatives for given grid point.

Implemented in CubbyFlow::ENOLevelSetSolver3, and CubbyFlow::UpwindLevelSetSolver3.

◆ GetMaxCFL()

double CubbyFlow::IterativeLevelSetSolver3::GetMaxCFL ( ) const

Returns the maximum CFL limit.

◆ Reinitialize()

void CubbyFlow::IterativeLevelSetSolver3::Reinitialize ( const ScalarGrid3 inputSDF,
double  maxDistance,
ScalarGrid3 outputSDF 
)
overridevirtual

Reinitializes given scalar field to signed-distance field.

Parameters
inputSDFInput signed-distance field which can be distorted.
maxDistanceMax range of reinitialization.
outputSDFOutput signed-distance field.

Implements CubbyFlow::LevelSetSolver3.

◆ SetMaxCFL()

void CubbyFlow::IterativeLevelSetSolver3::SetMaxCFL ( double  newMaxCFL)

Sets the maximum CFL limit.

This function sets the maximum CFL limit for the internal upwind-style PDE calculation. The negative input will be clamped to 0.


The documentation for this class was generated from the following file: