.TRANSFORM.Math.ComplexMath.ccubicRoots

Analytical solution for the roots of a cubic equation (a*x^3+b*x^2+c*x+d=0)

Information


Return roots[3] where each root is complex (i.e., has both roots[*].re and roots[*].im ).


nRoots helps to identify the number of expected real roots based on the result from the polynomial discriminant, D.

Interface

function ccubicRoots
  import TRANSFORM.Math.ComplexMath.csqrt;
  import 'abs' = Modelica.ComplexMath.abs;
  input Real a;
  input Real b;
  input Real c;
  input Real d;
  output Complex[3] roots "Real roots";
  output Real nRoots "Number of distinct real solutions expected";
end ccubicRoots;

Generated at 2025-04-02T18:24:35Z by OpenModelicaOpenModelica 1.24.5 using GenerateDoc.mos