We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ther SOFA time step for the keyframe of a displacement constraint is calculated with timestep = float(timeSteps) * float(dt)
timestep = float(timeSteps) * float(dt)
There seems to be something wrong, the final displacement is not reached in the final vtk export.
The text was updated successfully, but these errors were encountered:
Fix with 8425876: timestep = (float(timeSteps)/2) * float(dt) / 10.0 #endtime of simulation must be divided by 10 for the constraint for some reason.
timestep = (float(timeSteps)/2) * float(dt) / 10.0 #endtime of simulation must be divided by 10 for the constraint for some reason.
Keyframe of a displacement constraint is now at half-time of the simulation (to give also some relaxiation time)
Sorry, something went wrong.
Is this ok on linux side?
ssuwelack
No branches or pull requests
Ther SOFA time step for the keyframe of a displacement constraint is calculated with
timestep = float(timeSteps) * float(dt)
There seems to be something wrong, the final displacement is not reached in the final vtk export.
The text was updated successfully, but these errors were encountered: