Package pulse.problem.statements
Class AdiabaticSolution
- java.lang.Object
-
- pulse.problem.statements.AdiabaticSolution
-
- All Implemented Interfaces:
Serializable
public class AdiabaticSolution extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_CLASSIC_PRECISION
static int
DEFAULT_POINTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HeatingCurve
classicSolution(Problem p)
Calculates the classic solution, using the default value of theprecision
and the time limit specified by theHeatingCurve
ofp
.static HeatingCurve
classicSolution(Problem p, double timeLimit)
static HeatingCurve
classicSolution(Problem p, double timeLimit, int precision)
A static factory method for calculating a heating curve based on the analytical solution of Parker et al.
-
-
-
Field Detail
-
DEFAULT_CLASSIC_PRECISION
public static final int DEFAULT_CLASSIC_PRECISION
- See Also:
- Constant Field Values
-
DEFAULT_POINTS
public static final int DEFAULT_POINTS
- See Also:
- Constant Field Values
-
-
Method Detail
-
classicSolution
public static HeatingCurve classicSolution(Problem p, double timeLimit, int precision)
A static factory method for calculating a heating curve based on the analytical solution of Parker et al.The math itself is done separately in the
Problem
class. This method creates aHeatingCurve
with the number of points equal to that of thep.getHeatingCurve()
, and with the same baseline. The solution is calculated for the time range0 <= t <= timeLimit
.- Parameters:
p
- The problem statement, providing access to theclassicSolutionAt
method and to theHeatingCurve
object it owns.timeLimit
- The upper time limit (in seconds)precision
- The second argument passed to theclassicSolutionAt
- Returns:
- a
HeatingCurve
representing the analytical solution. - See Also:
- Parker et al. Journal of Applied Physics 32 (1961) 1679
-
classicSolution
public static HeatingCurve classicSolution(Problem p)
Calculates the classic solution, using the default value of theprecision
and the time limit specified by theHeatingCurve
ofp
.- Parameters:
p
- the problem statement- Returns:
- a
HeatinCurve
, representing the classic solution. - See Also:
classicSolution(pulse.problem.statements.Problem,double,int)
-
classicSolution
public static HeatingCurve classicSolution(Problem p, double timeLimit)
-
-