Uses of Class
pulse.problem.schemes.DifferenceScheme
-
Packages that use DifferenceScheme Package Description pulse.problem.schemes This package deals with abstractions associated with finite differences in PULsE, including the definition ofGrid
s, which determine the partitioning rules for space and time variables.pulse.problem.schemes.solvers Contains various finite-difference solvers for the different problem statements available.pulse.problem.statements Introduces various problem statements for the heat conduction problem in the laser flash experiment.pulse.tasks Introduces theSearchTask
, which is the main actor inPULsE
, and theTaskManager
, a high-level class which among other functions manages loading and executingSearchTask
s. -
-
Uses of DifferenceScheme in pulse.problem.schemes
Subclasses of DifferenceScheme in pulse.problem.schemes Modifier and Type Class Description class
ADIScheme
AnADIScheme
uses aGrid2D
to provide numerical capabilities needed to solve aProblem
.class
CoupledImplicitScheme
class
ExplicitScheme
This class provides the necessary framework to enable a simple explicit finite-difference scheme (also called the forward-time centred space scheme) for solving the one-dimensional heat conduction problem.class
ImplicitScheme
An abstract implicit finite-difference scheme for solving one-dimensional heat conduction problems.class
MixedScheme
An abstraction describing a weighted semi-implicit finite-difference scheme for solving the one-dimensional heat conduction problem.class
OneDimensionalScheme
Methods in pulse.problem.schemes that return DifferenceScheme Modifier and Type Method Description abstract DifferenceScheme
DifferenceScheme. copy()
Creates aDifferenceScheme
, which is an exact copy of this object.Methods in pulse.problem.schemes with parameters of type DifferenceScheme Modifier and Type Method Description void
DifferenceScheme. copyFrom(DifferenceScheme df)
Copies theGrid
andtimeLimit
fromdf
.void
DifferenceScheme. initFrom(DifferenceScheme another)
-
Uses of DifferenceScheme in pulse.problem.schemes.solvers
Subclasses of DifferenceScheme in pulse.problem.schemes.solvers Modifier and Type Class Description class
ADILinearisedSolver
An alternating direction implicit (ADI) solver for a classical two-dimensional linearised problem.class
ExplicitCoupledSolver
class
ExplicitCoupledSolverNL
class
ExplicitLinearisedSolver
Performs a fully-dimensionless calculation for theLinearisedProblem
.class
ExplicitNonlinearSolver
class
ExplicitTranslucentSolver
class
ImplicitCoupledSolver
class
ImplicitCoupledSolverNL
class
ImplicitDiathermicSolver
class
ImplicitLinearisedSolver<T extends ClassicalProblem>
Performs a fully-dimensionless calculation for theLinearisedProblem
.class
ImplicitNonlinearSolver
class
ImplicitTranslucentSolver
class
ImplicitTwoTemperatureSolver
class
MixedCoupledSolver
class
MixedCoupledSolverNL
class
MixedLinearisedSolver
Performs a fully-dimensionless calculation for theLinearisedProblem
.Methods in pulse.problem.schemes.solvers that return DifferenceScheme Modifier and Type Method Description DifferenceScheme
ADILinearisedSolver. copy()
DifferenceScheme
ExplicitCoupledSolverNL. copy()
DifferenceScheme
ExplicitLinearisedSolver. copy()
DifferenceScheme
ExplicitNonlinearSolver. copy()
DifferenceScheme
ExplicitTranslucentSolver. copy()
DifferenceScheme
ImplicitCoupledSolverNL. copy()
DifferenceScheme
ImplicitDiathermicSolver. copy()
DifferenceScheme
ImplicitLinearisedSolver. copy()
DifferenceScheme
ImplicitNonlinearSolver. copy()
DifferenceScheme
ImplicitTranslucentSolver. copy()
DifferenceScheme
ImplicitTwoTemperatureSolver. copy()
DifferenceScheme
MixedCoupledSolverNL. copy()
DifferenceScheme
MixedLinearisedSolver. copy()
-
Uses of DifferenceScheme in pulse.problem.statements
Methods in pulse.problem.statements that return types with arguments of type DifferenceScheme Modifier and Type Method Description List<DifferenceScheme>
Problem. availableSolutions()
Lists the availableDifferenceScheme
s for thisProblem
.Class<? extends DifferenceScheme>
ClassicalProblem. defaultScheme()
Class<? extends DifferenceScheme>
ClassicalProblem2D. defaultScheme()
Class<? extends DifferenceScheme>
DiathermicMedium. defaultScheme()
Class<? extends DifferenceScheme>
NonlinearProblem. defaultScheme()
Class<? extends DifferenceScheme>
ParticipatingMedium. defaultScheme()
Class<? extends DifferenceScheme>
PenetrationProblem. defaultScheme()
abstract Class<? extends DifferenceScheme>
Problem. defaultScheme()
Class<? extends DifferenceScheme>
TwoTemperatureModel. defaultScheme()
-
Uses of DifferenceScheme in pulse.tasks
Methods in pulse.tasks that return DifferenceScheme Modifier and Type Method Description DifferenceScheme
Calculation. getScheme()
Methods in pulse.tasks with parameters of type DifferenceScheme Modifier and Type Method Description void
Calculation. setScheme(DifferenceScheme scheme, ExperimentalData curve)
Adopts thescheme
by thisSearchTask
and updates the time limit ofscheme
to matchExperimentalData
.
-