Opened 7 years ago
Last modified 3 years ago
#4835 assigned defect
Get Complex numbers to work without compromises — at Version 5
Reported by: | Francesco Casella | Owned by: | Adrian Pop |
---|---|---|---|
Priority: | blocker | Milestone: | 2.0.0 |
Component: | *unknown* | Version: | |
Keywords: | Cc: | Martin Sjölund, massimo ceraolo, dr.christian.kral@…, belen.goncer-maraver@… |
Description (last modified by )
Complex numbers are increasingly used in Modelica, particularly for power system models. They are used by Modelica.Electrical.QuasiStationary
, and also by other libraries being developed for electro-mechanical modelling of power systems.
OMC supports complex numbers, but there are still some issue that prevents their full, uncompromised use. This ticket collects all of them in the attempt of solving the pending problems soon.
In most, possibly all, cases, the best strategy to solve equations involving Complex variables is to turn them into scalar Real equations and then apply all possible symbolic simplifications. This is particularly important when Complex number that happen to be purely real or imaginary are used.
In simple cases, this already happens. If you compile this model
model TestComplex Complex z1, z2; equation z1+z2 = Complex(0); z2 = Complex(1,2); end TestComplex;
the record equations are turned into scalar equations and solved symbolically, so eventually z1 and z2 are evaluated at initialization, because they are constant.
Unfortunately, in some cases this does not happen, for reasons that need to be investigated. In #4354 and #4808 this issue leads to problems solving otherwise trivial equations, in #4157 it leads to problems with equations in when statements. #4611 is a slightly more involved case, where arrays of Complex constructors are involved. #4973 has a test case for the new front-end, while #4974 shows an issue with the missing inlining of ComplexMath functions.
The code generation for algorithms involving Complex numbers needs to be fixed, see #4055.
There are also some issues with Complex equations and removeSimpleEquations
, see #4793.
Last, but not least, the sum of Complex numbers should be supported, see #4297.
Change History (5)
comment:1 by , 7 years ago
Cc: | added |
---|
comment:2 by , 7 years ago
Description: | modified (diff) |
---|
comment:5 by , 7 years ago
Description: | modified (diff) |
---|
Another case of Complex number analysis failure, not covered by the tickets mentioned in this ticket's description:
Checking produces the following error message:
(checked with OpenModelica 1.13.0~dev-1028-g72f3421 for Linux)
I know that a good workaround exists:
but here we are discussing of getting Complex numbers to work "without compromises".
Note that Z=R+jX works in Dymola, while Z=Complex(R,X) does not there. So none of the two ways is able to work in both tools.