Loading...
Searching...
No Matches
AdvectionSolver3.hpp
Go to the documentation of this file.
1// This code is based on Jet framework.
2// Copyright (c) 2018 Doyub Kim
3// CubbyFlow is voxel-based fluid simulation engine for computer games.
4// Copyright (c) 2020 CubbyFlow Team
5// Core Part: Chris Ohk, Junwoo Hwang, Jihong Sin, Seungwoo Yoo
6// AI Part: Dongheon Cho, Minseo Kim
7// We are making my contributions/submissions to this project solely in our
8// personal capacity and are not conveying any rights to any intellectual
9// property of any third parties.
10
11#ifndef CUBBYFLOW_ADVECTION_SOLVER3_HPP
12#define CUBBYFLOW_ADVECTION_SOLVER3_HPP
13
19
20namespace CubbyFlow
21{
123
126} // namespace CubbyFlow
127
128#endif
Abstract based class for 3-D grid-based advection solver.
Definition AdvectionSolver3.hpp:29
AdvectionSolver3(const AdvectionSolver3 &)=default
Default copy constructor.
virtual void Advect(const ScalarGrid3 &input, const VectorField3 &flow, double dt, ScalarGrid3 *output, const ScalarField3 &boundarySDF=ConstantScalarField3(std::numeric_limits< double >::max()))=0
Solves advection equation for given scalar grid.
AdvectionSolver3()=default
Default constructor.
AdvectionSolver3(AdvectionSolver3 &&) noexcept=default
Default move constructor.
Abstract base class for N-D collocated vector grid structure.
Definition CollocatedVectorGrid.hpp:23
N-D constant scalar field.
Definition ConstantScalarField.hpp:21
N-D face-centered (a.k.a MAC or staggered) grid.
Definition FaceCenteredGrid.hpp:32
Definition Matrix.hpp:30
Abstract base class for N-D scalar field.
Definition ScalarField.hpp:25
Abstract base class for N-D scalar grid structure.
Definition ScalarGrid.hpp:25
Abstract base class for N-D vector field.
Definition VectorField.hpp:43
Definition pybind11Utils.hpp:21
std::shared_ptr< AdvectionSolver3 > AdvectionSolver3Ptr
Shared pointer type for the 3-D advection solver.
Definition AdvectionSolver3.hpp:125