|
SPH
|
#include "system/Factory.h"#include "gravity/BarnesHut.h"#include "gravity/BruteForceGravity.h"#include "gravity/CachedGravity.h"#include "gravity/Collision.h"#include "gravity/SphericalGravity.h"#include "gravity/SymmetricGravity.h"#include "io/LogWriter.h"#include "io/Logger.h"#include "io/Output.h"#include "math/rng/Rng.h"#include "objects/Exceptions.h"#include "objects/finders/BruteForceFinder.h"#include "objects/finders/HashMapFinder.h"#include "objects/finders/KdTree.h"#include "objects/finders/Octree.h"#include "objects/finders/UniformGrid.h"#include "objects/geometry/Domain.h"#include "physics/Damage.h"#include "physics/Eos.h"#include "physics/Rheology.h"#include "sph/Materials.h"#include "sph/boundary/Boundary.h"#include "sph/equations/av/Balsara.h"#include "sph/equations/av/MorrisMonaghan.h"#include "sph/equations/av/Riemann.h"#include "sph/equations/av/Standard.h"#include "sph/initial/Distribution.h"#include "sph/initial/UvMapping.h"#include "sph/kernel/GravityKernel.h"#include "sph/solvers/AsymmetricSolver.h"#include "sph/solvers/DensityIndependentSolver.h"#include "sph/solvers/ElasticDeformationSolver.h"#include "sph/solvers/EnergyConservingSolver.h"#include "sph/solvers/GravitySolver.h"#include "sph/solvers/SimpleSolver.h"#include "sph/solvers/StandardSets.h"#include "sph/solvers/SummationSolver.h"#include "thread/OpenMp.h"#include "thread/Pool.h"#include "thread/Tbb.h"#include "timestepping/TimeStepCriterion.h"#include "timestepping/TimeStepping.h"Go to the source code of this file.
Functions | |
| template<typename T > | |
| AutoPtr< IEquationTerm > | makeAV (const RunSettings &settings, const bool balsara) |
| AutoPtr<IEquationTerm> makeAV | ( | const RunSettings & | settings, |
| const bool | balsara | ||
| ) |
Definition at line 100 of file Factory.cpp.