Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix handling of equations without state variables #31

Open
JKRT opened this issue Jun 23, 2021 · 0 comments
Open

Fix handling of equations without state variables #31

JKRT opened this issue Jun 23, 2021 · 0 comments

Comments

@JKRT
Copy link
Owner

JKRT commented Jun 23, 2021

model HelloWorldWithoutDer
  Real x( start = 1, fixed = true );
  parameter Real a = 1;
equation
  x = -a * x;
end HelloWorldWithoutDer;

Currently does not work. This is due to the generated code does not match the format of IDA.
Systems like this need to be identified and solved using a simpler scheme.
Currently, there is an issue with symbolic rewriting the variables using Reduce.

Aether-create pushed a commit to Aether-create/OMBackend.jl that referenced this issue Sep 10, 2024
* Create README.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant