diff --git a/index.html b/index.html index 56db05c..07df473 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- ++All the files (data and Matlab scripts) are accessible here. +
+ +open 'gravity_test.slx'
@@ -312,7 +319,7 @@ The three solutions are tested below.
Figure 1: Simscape model used for the simulations
@@ -320,8 +327,8 @@ The three solutions are tested below.g = -10; % [m/s^2] @@ -337,8 +344,32 @@ F_act = 0; % Actuator force [N]
out_init = sim('gravity_test.slx') -+out_init.d.Name = 'Displacement'; +out_init.Fm.Name = 'Force Sensor'; + ++ +++ +figure; +subplot(1,2,1) +plot(out_init.d) +title(''); +subplot(1,2,2) +plot(out_init.Fm) +title(''); ++++ + +<<plt-matlab>> ++
l0 = 0; % Initial wanted position [m] @@ -358,8 +389,32 @@ F_act = 0; % Actuator force [N]
out = sim('gravity_test.slx'); -+out.d.Name = 'Displacement'; +out.Fm.Name = 'Force Sensor'; + ++ +++ +figure; +subplot(1,2,1) +plot(out.d) +title(''); +subplot(1,2,2) +plot(out.Fm) +title(''); ++++ + +<<plt-matlab>> ++
l0 = 0; % Initial wanted position [m] @@ -379,16 +434,40 @@ F_act = 0; % Actuator force [N]
out = sim('gravity_test.slx'); -+out.d.Name = 'Displacement'; +out.Fm.Name = 'Force Sensor'; + ++ +++ +figure; +subplot(1,2,1) +plot(out.d) +title(''); +subplot(1,2,2) +plot(out.Fm) +title(''); ++++ + +<<plt-matlab>> ++
l0 = out_init.d.Data(end); % Initial wanted position [m] @@ -399,26 +478,72 @@ F_act = 0; % Actuator force [N]
out = sim('gravity_test.slx'); -+out.d.Name = 'Displacement'; +out.Fm.Name = 'Force Sensor'; + ++ +++ +figure; +subplot(1,2,1) +plot(out.d) +title(''); +subplot(1,2,2) +plot(out.Fm) +title(''); ++++ + +<<plt-matlab>> ++
+Three techniques: +
+Changing the equilibrium position of each joint seem the most practical solution.
+ +Created: 2020-01-30 jeu. 15:07
+Created: 2020-01-30 jeu. 15:24