Class AdiabaticSolution

    • 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 a HeatingCurve with the number of points equal to that of the p.getHeatingCurve(), and with the same baseline. The solution is calculated for the time range 0 <= t <= timeLimit.

        Parameters:
        p - The problem statement, providing access to the classicSolutionAt method and to the HeatingCurve object it owns.
        timeLimit - The upper time limit (in seconds)
        precision - The second argument passed to the classicSolutionAt
        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,
                                                   double timeLimit)