Jet  v1.3.3
Public Types | Public Member Functions | List of all members
jet::GridBackwardEulerDiffusionSolver2 Class Referencefinal

2-D grid-based backward Euler diffusion solver. More...

#include <jet/grid_backward_euler_diffusion_solver2.h>

Inheritance diagram for jet::GridBackwardEulerDiffusionSolver2:
jet::GridDiffusionSolver2

Public Types

enum  BoundaryType { Dirichlet, Neumann }
 

Public Member Functions

 GridBackwardEulerDiffusionSolver2 (BoundaryType boundaryType=Neumann)
 Constructs the solver with given boundary type. More...
 
void solve (const ScalarGrid2 &source, double diffusionCoefficient, double timeIntervalInSeconds, ScalarGrid2 *dest, const ScalarField2 &boundarySdf=ConstantScalarField2(kMaxD), const ScalarField2 &fluidSdf=ConstantScalarField2(-kMaxD)) override
 
void solve (const CollocatedVectorGrid2 &source, double diffusionCoefficient, double timeIntervalInSeconds, CollocatedVectorGrid2 *dest, const ScalarField2 &boundarySdf=ConstantScalarField2(kMaxD), const ScalarField2 &fluidSdf=ConstantScalarField2(-kMaxD)) override
 
void solve (const FaceCenteredGrid2 &source, double diffusionCoefficient, double timeIntervalInSeconds, FaceCenteredGrid2 *dest, const ScalarField2 &boundarySdf=ConstantScalarField2(kMaxD), const ScalarField2 &fluidSdf=ConstantScalarField2(-kMaxD)) override
 
void setLinearSystemSolver (const FdmLinearSystemSolver2Ptr &solver)
 Sets the linear system solver for this diffusion solver. More...
 
- Public Member Functions inherited from jet::GridDiffusionSolver2
 GridDiffusionSolver2 ()
 Default constructor. More...
 
virtual ~GridDiffusionSolver2 ()
 Default destructor. More...
 

Detailed Description

2-D grid-based backward Euler diffusion solver.

This class implements 2-D grid-based forward Euler diffusion solver using second-order central differencing spatially. Since the method is following the implicit time-integration (i.e. backward Euler), larger time interval or diffusion coefficient can be used without breaking the result. Note, higher values for those parameters will still impact the accuracy of the result. To solve the backward Euler method, a linear system solver is used and incomplete Cholesky conjugate gradient method is used by default.

Member Enumeration Documentation

◆ BoundaryType

Enumerator
Dirichlet 
Neumann 

Constructor & Destructor Documentation

◆ GridBackwardEulerDiffusionSolver2()

jet::GridBackwardEulerDiffusionSolver2::GridBackwardEulerDiffusionSolver2 ( BoundaryType  boundaryType = Neumann)
explicit

Constructs the solver with given boundary type.

Member Function Documentation

◆ setLinearSystemSolver()

void jet::GridBackwardEulerDiffusionSolver2::setLinearSystemSolver ( const FdmLinearSystemSolver2Ptr solver)

Sets the linear system solver for this diffusion solver.

◆ solve() [1/3]

void jet::GridBackwardEulerDiffusionSolver2::solve ( const CollocatedVectorGrid2 source,
double  diffusionCoefficient,
double  timeIntervalInSeconds,
CollocatedVectorGrid2 dest,
const ScalarField2 boundarySdf = ConstantScalarField2(kMaxD),
const ScalarField2 fluidSdf = ConstantScalarField2(-kMaxD) 
)
overridevirtual

Solves diffusion equation for a collocated vector field.

Parameters
sourceInput collocated vector field.
diffusionCoefficientAmount of diffusion.
timeIntervalInSecondsSmall time-interval that diffusion occur.
destOutput collocated vector field.
boundarySdfShape of the solid boundary that is empty by default.
boundarySdfShape of the fluid boundary that is full by default.

Implements jet::GridDiffusionSolver2.

◆ solve() [2/3]

void jet::GridBackwardEulerDiffusionSolver2::solve ( const FaceCenteredGrid2 source,
double  diffusionCoefficient,
double  timeIntervalInSeconds,
FaceCenteredGrid2 dest,
const ScalarField2 boundarySdf = ConstantScalarField2(kMaxD),
const ScalarField2 fluidSdf = ConstantScalarField2(-kMaxD) 
)
overridevirtual

Solves diffusion equation for a face-centered vector field.

Parameters
sourceInput face-centered vector field.
diffusionCoefficientAmount of diffusion.
timeIntervalInSecondsSmall time-interval that diffusion occur.
destOutput face-centered vector field.
boundarySdfShape of the solid boundary that is empty by default.
boundarySdfShape of the fluid boundary that is full by default.

Implements jet::GridDiffusionSolver2.

◆ solve() [3/3]

void jet::GridBackwardEulerDiffusionSolver2::solve ( const ScalarGrid2 source,
double  diffusionCoefficient,
double  timeIntervalInSeconds,
ScalarGrid2 dest,
const ScalarField2 boundarySdf = ConstantScalarField2(kMaxD),
const ScalarField2 fluidSdf = ConstantScalarField2(-kMaxD) 
)
overridevirtual

Solves diffusion equation for a scalar field.

Parameters
sourceInput scalar field.
diffusionCoefficientAmount of diffusion.
timeIntervalInSecondsSmall time-interval that diffusion occur.
destOutput scalar field.
boundarySdfShape of the solid boundary that is empty by default.
boundarySdfShape of the fluid boundary that is full by default.

Implements jet::GridDiffusionSolver2.


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