File tree 2 files changed +4
-4
lines changed
Application/Examples/KneeSimulator/Model
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Main = {
19
19
20
20
AnyBodyStudy KneeSimulatorStudy = {
21
21
// A low kinematic tolerance will help FDK optimization to converge
22
- Kinematics.KinematicTol = 1e-8;
22
+ Kinematics.KinematicTol ?? = 1e-8;
23
23
24
24
AnyFolder& Parameters = .Parameters;
25
25
AnyFolder& Model = .Model;
@@ -46,8 +46,8 @@ Main = {
46
46
InverseDynamics.ForceDepKin.LocalSearchMaxSteps ??= 15; // Reduced from default 25. Speeds up convergense.
47
47
48
48
49
- InverseDynamics.ForceDepKin.MaxNewtonStep = FDK_MaxNewtonStep;
50
- InverseDynamics.ForceDepKin.LocalSearchOnOff = FDK_LocalSearchOnOff;
49
+ InverseDynamics.ForceDepKin.MaxNewtonStep ?? = FDK_MaxNewtonStep;
50
+ InverseDynamics.ForceDepKin.LocalSearchOnOff ?? = FDK_LocalSearchOnOff;
51
51
52
52
#ifdef TOOLS_MODELUTILITIES_VIDEO_CAMERACLASSTEMPLATE
53
53
// Include functions to generate a video:
Original file line number Diff line number Diff line change 7
7
//pytest_markers=["slow"]
8
8
//# Ignore a specific a specific quirk in the model, where sigle time step was not converging
9
9
//# to the specified tolerance (AB#2486)
10
- //ignore_errors = ['Too many iterations used (final force error = 0.121916) ']
10
+ //ignore_errors = ['causes looping of Newton method (final force error = 0.']
11
11
//save_study=[
12
12
// "Main.KneeSimulatorStudy",
13
13
//]
You can’t perform that action at this time.
0 commit comments