Equation object classΒΆ

An equation object consists of three parts:

  1. A list of the indices in the matrix of the coefficients of the equation

  2. A list of the coefficients of the equation

  3. The right-hand side of the equation

The index is the sum of the indices in the matrix, which is obtained by the assets by setting their unknowns in the matrix with the quantity to be solved. This can be easily obtained by making use of the CoreQuantIndex class. The coefficients are obtained by linearizing the equations. The same holds for the right-hand side. This linearization should be done via the Newton-Raphson method. More information can be found on this website.