-
Notifications
You must be signed in to change notification settings - Fork 4
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
First Working Vode Adams method #14
base: master
Are you sure you want to change the base?
Conversation
@@ -18,6 +18,13 @@ XXSIM_SOURCES = EulerAngles.c \ | |||
xxmatrix.c \ | |||
xxmodel.c \ | |||
xxsubmod.c \ | |||
%IF%%EQ(INTEGRATION_METHOD_NAME,VodeAdams)% |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that the %EQ% construction is only available since 20-sim 4.6
This means that you have update the minimal required 20-sim version too in the Targets.ini
refs #12 @41h0m
…8.2 (2015). Updated the build scripts, targets.ini etc. refs #12 @16h0m
-includes.txt in Targets.ini -error in copy command in build.bat (forgotten close quote) -wrong check on VodeAdamsReInitialize, therefor always error.
…truct The INTO-CPS COE supplies each instance of an FMU with its own set of callback functions Fixes #16
and placed instantiation of variables to beginning of function for older ANSI-c compilers
Hey guys, |
Hi @yingguac , |
…discrete states This fixes compilation
…ired by the FMI2 standard The delivered VS projects and Makefile will disable this prefix before building the .dll / .so by defining NO_FUNCTION_PREFIX Fixes #27
… redefinition of a variable.
… the matrix elements.
refs #12 @41h0m
First version of variable step size integration method Vode Adams.
Needs testing before merging to master branch.