-
Notifications
You must be signed in to change notification settings - Fork 4
GridKit interface with IDA can't return values #21
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
Comments
Is the linked pull request still applicable? |
I think we have better solutions already available in the |
As it is right now, these functions aren't used anywhere: void printOutput(sunrealtype t);
void printSpecial(sunrealtype t, N_Vector x); And aren't really "callbacks" - they are not automatically called by anything. As I see it, I think these functions are probably useless since these values can be queried from the underlying model rather than the integrator buffer, and should probably be removed? The functionality implemented by Finally, for |
Tests that are constantly collecting data over time don't have an easy way to obtain this data from the Ida.cpp file. To measure responses from perturbations, it is nice to be able to get the data generated at each time step.
In my tests on the genrou-test-2 branch, I used a callback function that returned the timestep and y vector after every time step. This was used by the GenrouTest.cpp file to print out each y value to a file.
The text was updated successfully, but these errors were encountered: