Skip to content

Commit

Permalink
Added Idas Solver source code to cpp runtime
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10334 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
niklwors committed Nov 8, 2011
1 parent ccc702a commit 5e9628b
Show file tree
Hide file tree
Showing 9 changed files with 1,132 additions and 309 deletions.
482 changes: 241 additions & 241 deletions SimulationRuntime/cpp/Source/Solver/CVode/Implementation/CVode.cpp

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions SimulationRuntime/cpp/Source/Solver/CVode/Implementation/CVode.h
Expand Up @@ -157,13 +157,13 @@ class Cvode


double
*_y, ///< Output - (Current) State vector
*_y0, ///< Temp - (Old) state vector at left border of intervall (last step)
*_y1, ///< Temp - (New) state vector at right border of intervall (last step)
*_yInit, ///< Temp - Initial state vector
*_yLastSucess, ///< Temp - State vector of last successfull step
*_yLargeStep, ///< Temp - State vector of "large step" (used by "coupling step size controller" of SimManger)
*_yWrite, ///< Temp - Zustand den das System rausschreibt
*_z, ///< Output - (Current) State vector
*_z0, ///< Temp - (Old) state vector at left border of intervall (last step)
*_z1, ///< Temp - (New) state vector at right border of intervall (last step)
*_zInit, ///< Temp - Initial state vector
*_zLastSucess, ///< Temp - State vector of last successfull step
*_zLargeStep, ///< Temp - State vector of "large step" (used by "coupling step size controller" of SimManger)
*_zWrite, ///< Temp - Zustand den das System rausschreibt
*_f0,
*_f1;

Expand Down

This file was deleted.

0 comments on commit 5e9628b

Please sign in to comment.