Closed schymans closed 4 years ago
The following gives an error:
from sympy import exp, S from essm.variables import Variable class demo_1(Variable): """Test variable.""" unit = S.One Variable.check_unit(demo_1 + exp(demo_1)))
This works:
Variable.check_unit(demo_1 - exp(demo_1)))
The following gives an error:
This works: