-The sensitivity to disturbances are shown on figure 1.
-
-
-
-
-
-
-
Figure 1: Undamped sensitivity to disturbances (png, pdf)
-
-
-
-
-
-
-
Figure 2: Sensitivity to force disturbances in various stages (png, pdf)
-
-
-
-
-
-
1.4 Undamped Plant
-
-
-The "plant" (transfer function from forces applied by the nano-hexapod to the measured displacement of the sample with respect to the granite) bode plot is shown on figure 1.
-
-
-
-
-
-
-
Figure 3: Transfer Function from cartesian forces to displacement for the undamped plant (png, pdf)
-
-
-
-
-
-
-
2 Integral Force Feedback
-
-
-
-
-
-
-All the files (data and Matlab scripts) are accessible here.
-
-
-
-
-Integral Force Feedback is applied.
-In section 2.1, IFF is applied on a uni-axial system to understand its behavior.
-Then, it is applied on the simscape model.
-
-
-
-
-
2.1 One degree-of-freedom example
-
-
-
-
-
-
-
2.1.1 Equations
-
-
-
-
-
-
Figure 4: Integral Force Feedback applied to a 1dof system
-
-
-
-The dynamic of the system is described by the following equation:
-
Figure 5: Sensitivity to disturbance when IFF is applied on the 1dof system (png, pdf)
-
-
-
-
-
-
-
2.2 Control Design
-
-
-Let's load the undamped plant:
-
-
-
load('./active_damping/mat/plants.mat', 'G');
-
-
-
-
-Let's look at the transfer function from actuator forces in the nano-hexapod to the force sensor in the nano-hexapod legs for all 6 pairs of actuator/sensor (figure 6).
-
-
-
-
-
-
-
Figure 6: Transfer function from forces applied in the legs to force sensor (png, pdf)
-
-
-
-The controller for each pair of actuator/sensor is:
-
-
-
K_iff = -1000/s;
-
-
-
-
-The corresponding loop gains are shown in figure 7.
-
-
-
-
-
-
-
Figure 7: Loop Gain for the Integral Force Feedback (png, pdf)
-
-
-
-
-
-
2.3 Identification of the damped plant
-
-
-Let's initialize the system prior to identification.
-
The top platform of the nano-hexapod how behaves as a "free-mass".
-
The transfer function from direct forces \(F_s\) to the relative displacement \(D\) is equivalent to the one of an isolated mass.
-
The transfer function from ground motion \(D_g\) to the relative displacement \(D\) tends to the transfer function from \(D_g\) to the displacement of the granite (the sample is being isolated thanks to IFF).
-However, as the goal is to make the relative displacement \(D\) as small as possible (e.g. to make the sample motion follows the granite motion), this is not a good thing.
-
-
-
-
-
-
-
Figure 8: Sensitivity to disturbance once the IFF controller is applied to the system (png, pdf)
-
-
-
-
-The order of the models are very high and thus the plots may be wrong.
-For instance, the plots are not the same when using minreal.
-
-
-
-
-
-
-
-
-
Figure 9: Sensitivity to force disturbances in various stages when IFF is applied (png, pdf)
-
-
-
-
-
-
2.5 Damped Plant
-
-
-Now, look at the new damped plant to control.
-
-
-
-It damps the plant (resonance of the nano hexapod as well as other resonances) as shown in figure 10.
-
-
-
-
-
-
-
Figure 10: Damped Plant after IFF is applied (png, pdf)
-
-
-
-However, it increases coupling at low frequency (figure 11).
-
Figure 13: Sensitivity to disturbance when RMC is applied on the 1dof system (png, pdf)
-
-
-
-
-
-
-
3.2 Control Design
-
-
-Let's load the undamped plant:
-
-
-
load('./active_damping/mat/plants.mat', 'G');
-
-
-
-
-Let's look at the transfer function from actuator forces in the nano-hexapod to the measured displacement of the actuator for all 6 pairs of actuator/sensor (figure 14).
-
-
-
-
-
-
-
Figure 14: Transfer function from forces applied in the legs to leg displacement sensor (png, pdf)
-
-
-
-The Relative Motion Controller is defined below.
-A Low pass Filter is added to make the controller transfer function proper.
-
-
-
K_rmc = s*50000/(1+ s/2/pi/10000);
-
-
-
-
-The obtained loop gains are shown in figure 15.
-
-
-
-
-
-
-
Figure 15: Loop Gain for the Integral Force Feedback (png, pdf)
-
-
-
-
-
-
3.3 Identification of the damped plant
-
-
-Let's initialize the system prior to identification.
-
-The obtained sensitivity to disturbances is shown in figure 20.
-
-
-
-
-
-
Figure 20: Sensitivity to disturbance when DVF is applied on the 1dof system (png, pdf)
-
-
-
-
-
-
-
4.2 Control Design
-
-
-Let's load the undamped plant:
-
-
-
load('./active_damping/mat/plants.mat', 'G');
-
-
-
-
-Let's look at the transfer function from actuator forces in the nano-hexapod to the measured velocity of the nano-hexapod platform in the direction of the corresponding actuator for all 6 pairs of actuator/sensor (figure 21).
-
-
-
-
-
-
-
Figure 21: Transfer function from forces applied in the legs to leg velocity sensor (png, pdf)
-
-
-
-The controller is defined below and the obtained loop gain is shown in figure 22.
-
-
-
diff --git a/active_damping_uniaxial/mat/plants.mat b/active_damping_uniaxial/mat/plants.mat
deleted file mode 100644
index 9677bf1..0000000
Binary files a/active_damping_uniaxial/mat/plants.mat and /dev/null differ
diff --git a/control/figs b/control/figs
deleted file mode 120000
index 8ea5186..0000000
--- a/control/figs
+++ /dev/null
@@ -1 +0,0 @@
-../figs
\ No newline at end of file
diff --git a/disturbances/figs b/disturbances/figs
deleted file mode 120000
index 8ea5186..0000000
--- a/disturbances/figs
+++ /dev/null
@@ -1 +0,0 @@
-../figs
\ No newline at end of file
diff --git a/active_damping/index.html b/docs/active_damping.html
similarity index 75%
rename from active_damping/index.html
rename to docs/active_damping.html
index 389745d..4f140b1 100644
--- a/active_damping/index.html
+++ b/docs/active_damping.html
@@ -1,10 +1,11 @@
+
-
+
Active Damping applied on the Simscape Model
@@ -269,113 +270,113 @@ for the JavaScript code in this tag.
@@ -398,20 +399,20 @@ In general, three sensors can be used for Active Damping:
-First, in section 1, we look at the undamped system and we identify the dynamics from the actuators to the three sensor types.
+First, in section 1, we look at the undamped system and we identify the dynamics from the actuators to the three sensor types.
-Then, in section 2, we study the change of dynamics for the active damping plants with respect to various experimental conditions such as the sample mass and the spindle rotation speed.
+Then, in section 2, we study the change of dynamics for the active damping plants with respect to various experimental conditions such as the sample mass and the spindle rotation speed.
Then, we will apply and compare the results of three active damping techniques:
In section 4: Direct Velocity Feedback using a relative motion sensor is applied
+
In section 5: Inertial Control using a geophone is applied
@@ -423,11 +424,11 @@ For each of the active damping technique, we:
Compare the sensitivity from disturbances
-
-
1 Undamped System
+
+
1 Undamped System
-
+
In this section, we identify the dynamic of the system from forces applied in the nano-hexapod legs to the various sensors included in the nano-hexapod that could be use for Active Damping, namely:
@@ -443,12 +444,12 @@ After that, a tomography experiment is simulation without any active damping tec
-
-
1.1 Identification of the dynamics for Active Damping
+
+
1.1 Identification of the dynamics for Active Damping
-
-
1.1.1 Identification
+
+
1.1.1 Identification
We initialize all the stages with the default parameters.
@@ -505,8 +506,8 @@ And we save them for further analysis.
-
-
1.1.2 Obtained Plants for Active Damping
+
+
1.1.2 Obtained Plants for Active Damping
load('./active_damping/mat/undamped_plants.mat', 'G_iff', 'G_dvf', 'G_ine');
@@ -514,21 +515,21 @@ And we save them for further analysis.
-
+
Figure 1: G_iff: Transfer functions from forces applied in the actuators to the force sensor in each actuator (png, pdf)
-
+
Figure 2: G_dvf: Transfer functions from forces applied in the actuators to the relative motion sensor in each actuator (png, pdf)
-
+
Figure 3: G_ine: Transfer functions from forces applied in the actuators to the geophone located in each leg measuring the absolute velocity of the top part of the leg in the direction of the leg (png, pdf)
@@ -537,12 +538,12 @@ And we save them for further analysis.
-
-
1.2 Identification of the dynamics for High Authority Control
+
+
1.2 Identification of the dynamics for High Authority Control
-
-
1.2.1 Identification
+
+
1.2.1 Identification
We initialize all the stages with the default parameters.
@@ -585,8 +586,8 @@ And we save them for further analysis.
-
-
1.2.2 Obtained Plants
+
+
1.2.2 Obtained Plants
load('./active_damping/mat/cart_plants.mat', 'G_cart', 'masses');
@@ -594,7 +595,7 @@ And we save them for further analysis.
@@ -611,12 +612,12 @@ And we save them for further analysis.
-
-
1.3 Tomography Experiment
+
+
1.3 Tomography Experiment
-
-
1.3.1 Simulation
+
+
1.3.1 Simulation
We initialize elements for the tomography experiment.
@@ -653,8 +654,8 @@ Finally, we save the simulation results for further analysis
-
-
1.3.2 Results
+
+
1.3.2 Results
We load the results of tomography experiments.
@@ -667,14 +668,14 @@ t = (1/Fs)*[0
-
+
Figure 6: Position Error during tomography experiment - Translations (png, pdf)
-
+
Figure 7: Position Error during tomography experiment - Rotations (png, pdf)
@@ -684,22 +685,22 @@ t = (1/Fs)*[0
-
-
2 Variability of the system dynamics for Active Damping
+
+
2 Variability of the system dynamics for Active Damping
-
+
The goal of this section is to study how the dynamics of the Active Damping plants are changing with the experimental conditions.
These experimental conditions are:
@@ -708,11 +709,11 @@ This is done in order for the transient phase to be over.
-
-
2.1 Variation of the Sample Mass
+
+
2.1 Variation of the Sample Mass
-
+
For all the identifications, the disturbances are disabled and no controller are used.
@@ -733,21 +734,21 @@ We identify the dynamics for the following sample mass.
-
+
Figure 8: Variability of the dynamics from actuator force to force sensor with the Sample Mass (png, pdf)
-
+
Figure 9: Variability of the dynamics from actuator force to relative motion sensor with the Sample Mass (png, pdf)
-
+
Figure 10: Variability of the dynamics from actuator force to absolute velocity with the Sample Mass (png, pdf)
@@ -755,11 +756,11 @@ We identify the dynamics for the following sample mass.
-
-
2.2 Variation of the Spindle Angle
+
+
2.2 Variation of the Spindle Angle
-
+
We initialize all the stages with the default parameters.
@@ -777,21 +778,21 @@ We identify the dynamics for the following Spindle angles.
-
+
Figure 11: Variability of the dynamics from the actuator force to the force sensor with the Spindle Angle (png, pdf)
-
+
Figure 12: Variability of the dynamics from actuator force to relative motion sensor with the Spindle Angle (png, pdf)
-
+
Figure 13: Variability of the dynamics from actuator force to absolute velocity with the Spindle Angle (png, pdf)
@@ -799,11 +800,11 @@ We identify the dynamics for the following Spindle angles.
-
-
2.3 Variation of the Spindle Rotation Speed
+
+
2.3 Variation of the Spindle Rotation Speed
-
+
We initialize all the stages with the default parameters.
@@ -825,46 +826,46 @@ We identify the dynamics for the following Spindle rotation periods.
The identification of the dynamics is done at the same Spindle angle position.
-
-
2.3.1 Dynamics of the Active Damping plants
+
+
2.3.1 Dynamics of the Active Damping plants
-
+
Figure 14: Variability of the dynamics from the actuator force to the force sensor with the Spindle rotation speed (png, pdf)
-
+
Figure 15: Variability of the dynamics from the actuator force to the force sensor with the Spindle rotation speed (png, pdf)
-
+
Figure 16: Variability of the dynamics from the actuator force to the relative motion sensor with the Spindle rotation speed (png, pdf)
-
+
Figure 17: Variability of the dynamics from the actuator force to the relative motion sensor with the Spindle rotation speed (png, pdf)
-
+
Figure 18: Variability of the dynamics from the actuator force to the absolute velocity sensor with the Spindle rotation speed (png, pdf)
-
+
Figure 19: Variability of the dynamics from the actuator force to the absolute velocity sensor with the Spindle rotation speed (png, pdf)
@@ -872,18 +873,18 @@ The identification of the dynamics is done at the same Spindle angle position.
-
-
2.3.2 Variation of the poles and zeros with the Spindle rotation frequency
+
+
2.3.2 Variation of the poles and zeros with the Spindle rotation frequency
-
+
Figure 20: Evolution of the pole with respect to the spindle rotation speed (png, pdf)
-
+
Figure 21: Evolution of the zero with respect to the spindle rotation speed (png, pdf)
@@ -892,11 +893,11 @@ The identification of the dynamics is done at the same Spindle angle position.
-
-
2.4 Variation of the Tilt Angle
+
+
2.4 Variation of the Tilt Angle
-
+
We initialize all the stages with the default parameters.
@@ -914,21 +915,21 @@ We identify the dynamics for the following Tilt stage angles.
-
+
Figure 22: Variability of the dynamics from the actuator force to the force sensor with the Tilt stage Angle (png, pdf)
-
+
Figure 23: Variability of the dynamics from the actuator force to the relative motion sensor with the Tilt Angle (png, pdf)
-
+
Figure 24: Variability of the dynamics from the actuator force to the absolute velocity sensor with the Tilt Angle (png, pdf)
@@ -936,11 +937,11 @@ We identify the dynamics for the following Tilt stage angles.
-
-
2.5 Scans of the Translation Stage
+
+
2.5 Scans of the Translation Stage
-
+
We want here to verify if the dynamics used for Active damping is varying when using the translation stage for scans.
@@ -954,7 +955,7 @@ We initialize all the stages with the default parameters.
-We initialize the translation stage reference to be a sinus with an amplitude of 5mm and a period of 1s (Figure 25).
+We initialize the translation stage reference to be a sinus with an amplitude of 5mm and a period of 1s (Figure 25).
initializeReferences('Dy_type', 'sinusoidal', ...
@@ -964,7 +965,7 @@ We initialize the translation stage reference to be a sinus with an amplitude of
-
+
Figure 25: Reference path for the translation stage (png, pdf)
@@ -978,21 +979,21 @@ We identify the dynamics at different positions (times) when scanning with the T
-
+
Figure 26: Variability of the dynamics from the actuator force to the absolute velocity sensor plant at different Ty scan positions (png, pdf)
-
+
Figure 27: Variability of the dynamics from actuator force to relative displacement sensor at different Ty scan positions (png, pdf)
-
+
Figure 28: Variability of the Inertial plant at different Ty scan positions (png, pdf)
@@ -1000,10 +1001,10 @@ We identify the dynamics at different positions (times) when scanning with the T
-
-
2.6 Conclusion
+
+
2.6 Conclusion
-
+
Table 1: Conclusion on the variability of the system dynamics for active damping
@@ -1060,11 +1061,11 @@ Thus, the developed damping techniques should be robust to variations of the sam
-
-
3 Integral Force Feedback
+
+
3 Integral Force Feedback
-
+
@@ -1081,23 +1082,23 @@ The IFF control is applied in a decentralized way: there is on controller for ea
-The control architecture is represented in figure 29 where one of the 6 nano-hexapod legs is represented.
+The control architecture is represented in figure 29 where one of the 6 nano-hexapod legs is represented.
-
+
Figure 29: Integral Force Feedback applied to a 1dof system
-Let’s look at the transfer function from actuator forces in the nano-hexapod to the force sensor in the nano-hexapod legs for all 6 pairs of actuator/sensor (figure 30).
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the force sensor in the nano-hexapod legs for all 6 pairs of actuator/sensor (figure 30).
-
+
Figure 30: Transfer function from forces applied in the legs to force sensor (png, pdf)
@@ -1121,8 +1122,8 @@ Let’s look at the transfer function from actuator forces in the nano-hexap
-
-
3.1.2 Control Design
+
+
3.1.2 Control Design
The controller for each pair of actuator/sensor is:
@@ -1134,11 +1135,11 @@ K_iff = -5000/s
-The corresponding loop gains are shown in figure 31.
+The corresponding loop gains are shown in figure 31.
-
+
Figure 31: Loop Gain for the Integral Force Feedback (png, pdf)
@@ -1146,8 +1147,8 @@ The corresponding loop gains are shown in figure 31.
-
-
3.1.3 Diagonal Controller
+
+
3.1.3 Diagonal Controller
We create the diagonal controller and we add a minus sign as we have a positive
@@ -1169,12 +1170,12 @@ We save the controller for further analysis.
-
-
3.2 Tomography Experiment
+
+
3.2 Tomography Experiment
-
-
3.2.1 Simulation with IFF Controller
+
+
3.2.1 Simulation with IFF Controller
We initialize elements for the tomography experiment.
@@ -1222,25 +1223,25 @@ save('./active_damping/mat/tomo_exp.mat',
-
-
3.2.2 Compare with Undamped system
+
+
3.2.2 Compare with Undamped system
-
+
Figure 32: Position Error during tomography experiment - XY Motion (png, pdf)
-
+
Figure 33: Position Error during tomography experiment - Translations (png, pdf)
-
+
Figure 34: Position Error during tomography experiment - Rotations (png, pdf)
@@ -1267,11 +1268,11 @@ Integral Force Feedback using a force sensor:
-
-
4 Direct Velocity Feedback
+
+
4 Direct Velocity Feedback
-
+
@@ -1285,12 +1286,12 @@ The actuator displacement can be measured with a capacitive sensor for instance.
-
-
4.1 Control Design
+
+
4.1 Control Design
-
-
4.1.1 Plant
+
+
4.1.1 Plant
Let’s load the undamped plant:
@@ -1302,11 +1303,11 @@ load('./active_damping/mat/plants_variable.mat',
-Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured displacement of the actuator for all 6 pairs of actuator/sensor (figure 35).
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured displacement of the actuator for all 6 pairs of actuator/sensor (figure 35).
-
+
Figure 35: Transfer function from forces applied in the legs to leg displacement sensor (png, pdf)
@@ -1314,8 +1315,8 @@ Let’s look at the transfer function from actuator forces in the nano-hexap
-
-
4.1.2 Control Design
+
+
4.1.2 Control Design
The Direct Velocity Feedback is defined below.
@@ -1327,11 +1328,11 @@ A Low pass Filter is added to make the controller transfer function proper.
-The obtained loop gains are shown in figure 36.
+The obtained loop gains are shown in figure 36.
-
+
Figure 36: Loop Gain for the Integral Force Feedback (png, pdf)
@@ -1339,8 +1340,8 @@ The obtained loop gains are shown in figure 36.
-
-
4.1.3 Diagonal Controller
+
+
4.1.3 Diagonal Controller
We create the diagonal controller and we add a minus sign as we have a positive feedback architecture.
@@ -1361,12 +1362,12 @@ We save the controller for further analysis.
-
-
4.2 Tomography Experiment
+
+
4.2 Tomography Experiment
-
-
4.2.1 Initialize the Simulation
+
+
4.2.1 Initialize the Simulation
We initialize elements for the tomography experiment.
@@ -1414,25 +1415,25 @@ save('./active_damping/mat/tomo_exp.mat',
-
-
4.2.2 Compare with Undamped system
+
+
4.2.2 Compare with Undamped system
-
+
Figure 37: Position Error during tomography experiment - XY Motion (png, pdf)
-
+
Figure 38: Position Error during tomography experiment - Translations (png, pdf)
-
+
Figure 39: Position Error during tomography experiment - Rotations (png, pdf)
@@ -1457,11 +1458,11 @@ Direct Velocity Feedback using a relative motion sensor:
-
-
5 Inertial Control
+
+
5 Inertial Control
-
+
@@ -1474,12 +1475,12 @@ In Inertial Control, a feedback is applied between the measured absolute
-
-
5.1 Control Design
+
+
5.1 Control Design
-
-
5.1.1 Plant
+
+
5.1.1 Plant
Let’s load the undamped plant:
@@ -1491,11 +1492,11 @@ load('./active_damping/mat/plants_variable.mat',
-Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured velocity of the nano-hexapod platform in the direction of the corresponding actuator for all 6 pairs of actuator/sensor (figure 40).
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured velocity of the nano-hexapod platform in the direction of the corresponding actuator for all 6 pairs of actuator/sensor (figure 40).
-
+
Figure 40: Transfer function from forces applied in the legs to leg velocity sensor (png, pdf)
@@ -1503,11 +1504,11 @@ Let’s look at the transfer function from actuator forces in the nano-hexap
-
-
5.1.2 Control Design
+
+
5.1.2 Control Design
-The controller is defined below and the obtained loop gain is shown in figure 41.
+The controller is defined below and the obtained loop gain is shown in figure 41.
@@ -1516,7 +1517,7 @@ The controller is defined below and the obtained loop gain is shown in figure
-
@@ -1524,8 +1525,8 @@ The controller is defined below and the obtained loop gain is shown in figure
-
-
5.1.3 Diagonal Controller
+
+
5.1.3 Diagonal Controller
We create the diagonal controller and we add a minus sign as we have a positive feedback architecture.
@@ -1546,8 +1547,8 @@ We save the controller for further analysis.
-
-
5.2 Conclusion
+
+
5.2 Conclusion
@@ -1559,15 +1560,15 @@ Inertial Control should not be used.
-
-
6TODO Comparison
+
+
6 Comparison
-
+
-
-
6.1 Load the plants
+
+
6.1 Load the plants
load('./active_damping/mat/plants.mat', 'G', 'G_iff', 'G_ine', 'G_dvf');
@@ -1576,11 +1577,11 @@ Inertial Control should not be used.
-
-
6.2TODO Sensitivity to Disturbance
+
+
6.2 Sensitivity to Disturbance
-
+
Figure 42: Sensitivity to ground motion in the Z direction on the Z motion error (png, pdf)
@@ -1588,21 +1589,21 @@ Inertial Control should not be used.
-
+
Figure 43: Compliance in the Z direction: Sensitivity of direct forces applied on the sample in the Z direction on the Z motion error (png, pdf)
-
+
Figure 44: Sensitivity to forces applied in the Z direction by the Spindle on the Z motion error (png, pdf)
-
+
Figure 45: Sensitivity to forces applied in the Z direction by the Y translation stage on the Z motion error (png, pdf)
@@ -1610,7 +1611,7 @@ Inertial Control should not be used.
-
+
Figure 46: Sensitivity to forces applied in the X direction by the Y translation stage on the X motion error (png, pdf)
@@ -1618,25 +1619,25 @@ Inertial Control should not be used.
-
-
6.3TODO Damped Plant
+
+
6.3 Damped Plant
-
+
Figure 47: Plant for the \(z\) direction for different active damping technique used (png, pdf)
-
+
Figure 48: Plant for the \(x\) direction for different active damping technique used (png, pdf)
-
+
Figure 49: Comparison of one off-diagonal plant for different damping technique applied (png, pdf)
@@ -1644,8 +1645,8 @@ Inertial Control should not be used.
-
-
6.4 Tomography Experiment - Frequency Domain analysis
+
+
6.4 Tomography Experiment - Frequency Domain analysis
@@ -1821,9 +1822,9 @@ This Matlab function is accessible h
-
-
Function Description
-
+
+
Function Description
+
function[] = prepareTomographyExperiment(args)
@@ -1831,9 +1832,9 @@ This Matlab function is accessible h
-
-
Optional Parameters
-
+
+
Optional Parameters
+
arguments
args.nass_actuator char {mustBeMember(args.nass_actuator,{'piezo', 'lorentz'})} = 'piezo'
@@ -1845,9 +1846,9 @@ This Matlab function is accessible h
-
-
Initialize the Simulation
-
+
+
Initialize the Simulation
+
We initialize all the stages with the default parameters.
@@ -1915,7 +1916,7 @@ We log the signals.
Author: Dehaeze Thomas
-
Created: 2020-02-18 mar. 17:49
+
Created: 2020-02-25 mar. 18:07
diff --git a/docs/active_damping_uniaxial.html b/docs/active_damping_uniaxial.html
new file mode 100644
index 0000000..122d12e
--- /dev/null
+++ b/docs/active_damping_uniaxial.html
@@ -0,0 +1,1534 @@
+
+
+
+
+
+
+
+
+
+Active Damping with an uni-axial model
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+The sensitivity to disturbances are shown on figure 1.
+
+
+
+
+
+
+
Figure 1: Undamped sensitivity to disturbances (png, pdf)
+
+
+
+
+
+
+
Figure 2: Sensitivity to force disturbances in various stages (png, pdf)
+
+
+
+
+
+
1.4 Undamped Plant
+
+
+The “plant” (transfer function from forces applied by the nano-hexapod to the measured displacement of the sample with respect to the granite) bode plot is shown on figure 1.
+
+
+
+
+
+
+
Figure 3: Transfer Function from cartesian forces to displacement for the undamped plant (png, pdf)
+
+
+
+
+
+
+
2 Integral Force Feedback
+
+
+
+
+
+
+All the files (data and Matlab scripts) are accessible here.
+
+
+
+
+Integral Force Feedback is applied.
+In section 2.1, IFF is applied on a uni-axial system to understand its behavior.
+Then, it is applied on the simscape model.
+
+
+
+
+
2.1 One degree-of-freedom example
+
+
+
+
+
+
+
2.1.1 Equations
+
+
+
+
+
+
Figure 4: Integral Force Feedback applied to a 1dof system
+
+
+
+The dynamic of the system is described by the following equation:
+
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the force sensor in the nano-hexapod legs for all 6 pairs of actuator/sensor (figure 6).
+
+
+
+
+
+
+
Figure 6: Transfer function from forces applied in the legs to force sensor (png, pdf)
+
+
+
+The controller for each pair of actuator/sensor is:
+
+
+
K_iff = -1000/s;
+
+
+
+
+The corresponding loop gains are shown in figure 7.
+
+
+
+
+
+
+
Figure 7: Loop Gain for the Integral Force Feedback (png, pdf)
+
+
+
+
+
+
2.3 Identification of the damped plant
+
+
+Let’s initialize the system prior to identification.
+
The top platform of the nano-hexapod how behaves as a “free-mass”.
+
The transfer function from direct forces \(F_s\) to the relative displacement \(D\) is equivalent to the one of an isolated mass.
+
The transfer function from ground motion \(D_g\) to the relative displacement \(D\) tends to the transfer function from \(D_g\) to the displacement of the granite (the sample is being isolated thanks to IFF).
+However, as the goal is to make the relative displacement \(D\) as small as possible (e.g. to make the sample motion follows the granite motion), this is not a good thing.
+
+
+
+
+
+
+
Figure 8: Sensitivity to disturbance once the IFF controller is applied to the system (png, pdf)
+
+
+
+
+The order of the models are very high and thus the plots may be wrong.
+For instance, the plots are not the same when using minreal.
+
+
+
+
+
+
+
+
+
Figure 9: Sensitivity to force disturbances in various stages when IFF is applied (png, pdf)
+
+
+
+
+
+
2.5 Damped Plant
+
+
+Now, look at the new damped plant to control.
+
+
+
+It damps the plant (resonance of the nano hexapod as well as other resonances) as shown in figure 10.
+
+
+
+
+
+
+
Figure 10: Damped Plant after IFF is applied (png, pdf)
+
+
+
+However, it increases coupling at low frequency (figure 11).
+
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured displacement of the actuator for all 6 pairs of actuator/sensor (figure 14).
+
+
+
+
+
+
+
Figure 14: Transfer function from forces applied in the legs to leg displacement sensor (png, pdf)
+
+
+
+The Relative Motion Controller is defined below.
+A Low pass Filter is added to make the controller transfer function proper.
+
+
+
K_rmc = s*50000/(1 + s/2/pi/10000);
+
+
+
+
+The obtained loop gains are shown in figure 15.
+
+
+
+
+
+
+
Figure 15: Loop Gain for the Integral Force Feedback (png, pdf)
+
+
+
+
+
+
3.3 Identification of the damped plant
+
+
+Let’s initialize the system prior to identification.
+
+Let’s look at the transfer function from actuator forces in the nano-hexapod to the measured velocity of the nano-hexapod platform in the direction of the corresponding actuator for all 6 pairs of actuator/sensor (figure 21).
+
+
+
+
+
+
+
Figure 21: Transfer function from forces applied in the legs to leg velocity sensor (png, pdf)
+
+
+
+The controller is defined below and the obtained loop gain is shown in figure 22.
+
Figure 31: Plant for the \(z\) direction for different active damping technique used (png, pdf)
+
+
+
+
+
+
+
Figure 32: Plant for the \(x\) direction for different active damping technique used (png, pdf)
+
+
+
+
+
+
+
Figure 33: Comparison of one off-diagonal plant for different damping technique applied (png, pdf)
+
+
+
+
+
+
+
6 Conclusion
+
+
+
+
+
+
+
+
+
Author: Dehaeze Thomas
+
Created: 2020-02-25 mar. 18:08
+
+
+
diff --git a/control/index.html b/docs/control.html
similarity index 97%
rename from control/index.html
rename to docs/control.html
index 1301dd2..b4ff7bb 100644
--- a/control/index.html
+++ b/docs/control.html
@@ -1,9 +1,11 @@
+
+
-
+
Control of the NASS
@@ -205,7 +207,7 @@
@licstart The following is the entire license notice for the
JavaScript code in this tag.
-Copyright (C) 2012-2019 Free Software Foundation, Inc.
+Copyright (C) 2012-2020 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
@@ -257,8 +259,7 @@ for the JavaScript code in this tag.
diff --git a/css/htmlize.css b/docs/css/htmlize.css
similarity index 100%
rename from css/htmlize.css
rename to docs/css/htmlize.css
diff --git a/css/readtheorg.css b/docs/css/readtheorg.css
similarity index 100%
rename from css/readtheorg.css
rename to docs/css/readtheorg.css
diff --git a/disturbances/index.html b/docs/disturbances.html
similarity index 93%
rename from disturbances/index.html
rename to docs/disturbances.html
index e17037c..777050f 100644
--- a/disturbances/index.html
+++ b/docs/disturbances.html
@@ -1,10 +1,11 @@
+
-
+
Identification of the disturbances
@@ -285,7 +286,7 @@ The goal here is to extract the Power Spectral Density of the sources of perturb
-The sources of perturbations are (schematically shown in figure 1):
+The sources of perturbations are (schematically shown in figure 1):
\(D_w\): Ground Motion
@@ -294,12 +295,12 @@ These forces can be due to imperfect guiding for instance.
-Because we cannot measure directly the perturbation forces, we have the measure the effect of those perturbations on the system (in terms of velocity for instance using geophones, \(D\) on figure 1) and then, using a model, compute the forces that induced such velocity.
+Because we cannot measure directly the perturbation forces, we have the measure the effect of those perturbations on the system (in terms of velocity for instance using geophones, \(D\) on figure 1) and then, using a model, compute the forces that induced such velocity.
-
+
Figure 1: Schematic of the Micro Station and the sources of disturbance
@@ -310,19 +311,19 @@ Because we cannot measure directly the perturbation forces, we have the measure
This file is divided in the following sections:
-
Section 1: the simscape model used here is presented
-
Section 2: transfer functions from the disturbance forces to the relative velocity of the hexapod with respect to the granite are computed using the Simscape Model representing the experimental setup
-
Section 3: the bode plot of those transfer functions are shown
-
Section 4: the measured PSD of the effect of the disturbances are shown
-
Section 5: from the model and the measured PSD, the PSD of the disturbance forces are computed
-
Section 6: with the computed PSD, the noise budget of the system is done
+
Section 1: the simscape model used here is presented
+
Section 2: transfer functions from the disturbance forces to the relative velocity of the hexapod with respect to the granite are computed using the Simscape Model representing the experimental setup
+
Section 3: the bode plot of those transfer functions are shown
+
Section 4: the measured PSD of the effect of the disturbances are shown
+
Section 5: from the model and the measured PSD, the PSD of the disturbance forces are computed
+
Section 6: with the computed PSD, the noise budget of the system is done
-
+
1 Simscape Model
-
+
@@ -363,11 +364,11 @@ initializeSample('type',
+
2 Identification
-
+
The transfer functions from the disturbance forces to the relative velocity of the hexapod with respect to the granite are computed using the Simscape Model representing the experimental setup with the code below.
Figure 3: Sensitivity to vertical forces applied by the Ty stage (png, pdf)
@@ -440,7 +441,7 @@ G.OutputName = {'Vm'};
-
+
Figure 4: Sensitivity to vertical forces applied by the Rz stage (png, pdf)
@@ -448,11 +449,11 @@ G.OutputName = {'Vm'};
-
+
4 Power Spectral Density of the effect of the disturbances
-
+
The PSD of the relative velocity between the hexapod and the marble in \([(m/s)^2/Hz]\) are loaded for the following sources of disturbance:
@@ -481,15 +482,15 @@ We now compute the relative velocity between the hexapod and the granite due to
-The Power Spectral Density of the relative motion/velocity of the hexapod with respect to the granite are shown in figures 5 and 6.
+The Power Spectral Density of the relative motion/velocity of the hexapod with respect to the granite are shown in figures 5 and 6.
-The Cumulative Amplitude Spectrum of the relative motion is shown in figure 7.
+The Cumulative Amplitude Spectrum of the relative motion is shown in figure 7.
-
+
Figure 5: Amplitude Spectral Density of the relative velocity of the hexapod with respect to the granite due to different sources of perturbation (png, pdf)
@@ -497,14 +498,14 @@ The Cumulative Amplitude Spectrum of the relative motion is shown in figure
+
Figure 7: Cumulative Amplitude Spectrum of the relative motion due to different sources of perturbation (png, pdf)
@@ -512,15 +513,15 @@ The Cumulative Amplitude Spectrum of the relative motion is shown in figure
-
+
5 Compute the Power Spectral Density of the disturbance force
-
+
-Now, from the extracted transfer functions from the disturbance force to the relative motion of the hexapod with respect to the granite (section 3) and from the measured PSD of the relative motion (section 4), we can compute the PSD of the disturbance force.
+Now, from the extracted transfer functions from the disturbance force to the relative motion of the hexapod with respect to the granite (section 3) and from the measured PSD of the relative motion (section 4), we can compute the PSD of the disturbance force.
In section 2 a tomography experiment is performed where the sample is aligned with the rotation axis. No disturbance is included
+
In section 3, the same is done but with disturbance included
+
In section 4 the micro-hexapod translate the sample such that its center of mass is no longer aligned with the rotation axis. No disturbance is included
+
In section 5, scans with the translation stage are simulated with no perturbation included
+
+
+
+
1 Simscape Model
+
+
+
+
+
+
+
open('nass_model.slx');
+
+
+
+
+We load the shared simulink configuration and we set the StopTime.
+
Figure 1: X-Y-Z translation of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
+
Figure 2: X-Y-Z rotations of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
2.3 Conclusion
+
+
+
+When everything is aligned, the resulting error motion is very small (nm range) and is quite negligible with respect to the error when disturbances are included.
+This residual error motion probably comes from a small misalignment somewhere.
+
+
+
+
+
+
+
+
+
3 Tomography Experiment with included perturbations
+
+
+
+
+
+
+
3.1 Simulation Setup
+
+
+We now activate the disturbances.
+
+
+
initializeDisturbances(...
+ 'Dwx', true, ... % Ground Motion - X direction
+ 'Dwy', true, ... % Ground Motion - Y direction
+ 'Dwz', true, ... % Ground Motion - Z direction
+ 'Fty_x', true, ... % Translation Stage - X direction
+ 'Fty_z', true, ... % Translation Stage - Z direction
+ 'Frz_z', true ... % Spindle - Z direction
+ );
+
Figure 5: X-Y-Z translation of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
+
Figure 6: X-Y-Z rotations of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
4.3 Conclusion
+
+
+
+The main motions are translations in the X direction of the mobile platform (corresponds to the eccentricity of the micro-hexapod) and rotations along the rotating Y axis.
+
Figure 7: X-Y-Z translation of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
+
Figure 8: X-Y-Z rotations of the sample w.r.t. granite when performing tomography experiment with no disturbances (png, pdf)
+
+
+
+
+
+
5.3 Conclusion
+
+
+
+This is logic that the main error moving is translation along the Y axis and rotation along the X axis.
+In order to reduce the errors, we can make a smoother reference path for the translation stage.
+
+
+
+
+
+
+
+
+
Author: Dehaeze Thomas
+
Created: 2020-02-25 mar. 18:08
+
+
+
diff --git a/figs/G_x_mass.pdf b/docs/figs/G_x_mass.pdf
similarity index 100%
rename from figs/G_x_mass.pdf
rename to docs/figs/G_x_mass.pdf
diff --git a/figs/G_x_mass_paper.pdf b/docs/figs/G_x_mass_paper.pdf
similarity index 100%
rename from figs/G_x_mass_paper.pdf
rename to docs/figs/G_x_mass_paper.pdf
diff --git a/figs/G_xyz.pdf b/docs/figs/G_xyz.pdf
similarity index 100%
rename from figs/G_xyz.pdf
rename to docs/figs/G_xyz.pdf
diff --git a/figs/G_xyz_1.pdf b/docs/figs/G_xyz_1.pdf
similarity index 100%
rename from figs/G_xyz_1.pdf
rename to docs/figs/G_xyz_1.pdf
diff --git a/figs/G_xyz_20.pdf b/docs/figs/G_xyz_20.pdf
similarity index 100%
rename from figs/G_xyz_20.pdf
rename to docs/figs/G_xyz_20.pdf
diff --git a/figs/G_y_mass.pdf b/docs/figs/G_y_mass.pdf
similarity index 100%
rename from figs/G_y_mass.pdf
rename to docs/figs/G_y_mass.pdf
diff --git a/figs/G_z_mass.pdf b/docs/figs/G_z_mass.pdf
similarity index 100%
rename from figs/G_z_mass.pdf
rename to docs/figs/G_z_mass.pdf
diff --git a/figs/act_damp_tomo_exp_comp_cps_rot.pdf b/docs/figs/act_damp_tomo_exp_comp_cps_rot.pdf
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_cps_rot.pdf
rename to docs/figs/act_damp_tomo_exp_comp_cps_rot.pdf
diff --git a/figs/act_damp_tomo_exp_comp_cps_rot.png b/docs/figs/act_damp_tomo_exp_comp_cps_rot.png
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_cps_rot.png
rename to docs/figs/act_damp_tomo_exp_comp_cps_rot.png
diff --git a/figs/act_damp_tomo_exp_comp_cps_trans.pdf b/docs/figs/act_damp_tomo_exp_comp_cps_trans.pdf
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_cps_trans.pdf
rename to docs/figs/act_damp_tomo_exp_comp_cps_trans.pdf
diff --git a/figs/act_damp_tomo_exp_comp_cps_trans.png b/docs/figs/act_damp_tomo_exp_comp_cps_trans.png
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_cps_trans.png
rename to docs/figs/act_damp_tomo_exp_comp_cps_trans.png
diff --git a/figs/act_damp_tomo_exp_comp_psd_rot.pdf b/docs/figs/act_damp_tomo_exp_comp_psd_rot.pdf
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_psd_rot.pdf
rename to docs/figs/act_damp_tomo_exp_comp_psd_rot.pdf
diff --git a/figs/act_damp_tomo_exp_comp_psd_rot.png b/docs/figs/act_damp_tomo_exp_comp_psd_rot.png
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_psd_rot.png
rename to docs/figs/act_damp_tomo_exp_comp_psd_rot.png
diff --git a/figs/act_damp_tomo_exp_comp_psd_trans.pdf b/docs/figs/act_damp_tomo_exp_comp_psd_trans.pdf
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_psd_trans.pdf
rename to docs/figs/act_damp_tomo_exp_comp_psd_trans.pdf
diff --git a/figs/act_damp_tomo_exp_comp_psd_trans.png b/docs/figs/act_damp_tomo_exp_comp_psd_trans.png
similarity index 100%
rename from figs/act_damp_tomo_exp_comp_psd_trans.png
rename to docs/figs/act_damp_tomo_exp_comp_psd_trans.png
diff --git a/figs/act_damp_variability_dvf_sample_mass.pdf b/docs/figs/act_damp_variability_dvf_sample_mass.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_sample_mass.pdf
rename to docs/figs/act_damp_variability_dvf_sample_mass.pdf
diff --git a/figs/act_damp_variability_dvf_sample_mass.png b/docs/figs/act_damp_variability_dvf_sample_mass.png
similarity index 100%
rename from figs/act_damp_variability_dvf_sample_mass.png
rename to docs/figs/act_damp_variability_dvf_sample_mass.png
diff --git a/figs/act_damp_variability_dvf_spindle_angle.pdf b/docs/figs/act_damp_variability_dvf_spindle_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_angle.pdf
rename to docs/figs/act_damp_variability_dvf_spindle_angle.pdf
diff --git a/figs/act_damp_variability_dvf_spindle_angle.png b/docs/figs/act_damp_variability_dvf_spindle_angle.png
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_angle.png
rename to docs/figs/act_damp_variability_dvf_spindle_angle.png
diff --git a/figs/act_damp_variability_dvf_spindle_speed.pdf b/docs/figs/act_damp_variability_dvf_spindle_speed.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_speed.pdf
rename to docs/figs/act_damp_variability_dvf_spindle_speed.pdf
diff --git a/figs/act_damp_variability_dvf_spindle_speed.png b/docs/figs/act_damp_variability_dvf_spindle_speed.png
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_speed.png
rename to docs/figs/act_damp_variability_dvf_spindle_speed.png
diff --git a/figs/act_damp_variability_dvf_spindle_speed_zoom.pdf b/docs/figs/act_damp_variability_dvf_spindle_speed_zoom.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_speed_zoom.pdf
rename to docs/figs/act_damp_variability_dvf_spindle_speed_zoom.pdf
diff --git a/figs/act_damp_variability_dvf_spindle_speed_zoom.png b/docs/figs/act_damp_variability_dvf_spindle_speed_zoom.png
similarity index 100%
rename from figs/act_damp_variability_dvf_spindle_speed_zoom.png
rename to docs/figs/act_damp_variability_dvf_spindle_speed_zoom.png
diff --git a/figs/act_damp_variability_dvf_tilt_angle.pdf b/docs/figs/act_damp_variability_dvf_tilt_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_tilt_angle.pdf
rename to docs/figs/act_damp_variability_dvf_tilt_angle.pdf
diff --git a/figs/act_damp_variability_dvf_tilt_angle.png b/docs/figs/act_damp_variability_dvf_tilt_angle.png
similarity index 100%
rename from figs/act_damp_variability_dvf_tilt_angle.png
rename to docs/figs/act_damp_variability_dvf_tilt_angle.png
diff --git a/figs/act_damp_variability_dvf_ty_scans.pdf b/docs/figs/act_damp_variability_dvf_ty_scans.pdf
similarity index 100%
rename from figs/act_damp_variability_dvf_ty_scans.pdf
rename to docs/figs/act_damp_variability_dvf_ty_scans.pdf
diff --git a/figs/act_damp_variability_dvf_ty_scans.png b/docs/figs/act_damp_variability_dvf_ty_scans.png
similarity index 100%
rename from figs/act_damp_variability_dvf_ty_scans.png
rename to docs/figs/act_damp_variability_dvf_ty_scans.png
diff --git a/figs/act_damp_variability_iff_sample_mass.pdf b/docs/figs/act_damp_variability_iff_sample_mass.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_sample_mass.pdf
rename to docs/figs/act_damp_variability_iff_sample_mass.pdf
diff --git a/figs/act_damp_variability_iff_sample_mass.png b/docs/figs/act_damp_variability_iff_sample_mass.png
similarity index 100%
rename from figs/act_damp_variability_iff_sample_mass.png
rename to docs/figs/act_damp_variability_iff_sample_mass.png
diff --git a/figs/act_damp_variability_iff_spindle_angle.pdf b/docs/figs/act_damp_variability_iff_spindle_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_angle.pdf
rename to docs/figs/act_damp_variability_iff_spindle_angle.pdf
diff --git a/figs/act_damp_variability_iff_spindle_angle.png b/docs/figs/act_damp_variability_iff_spindle_angle.png
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_angle.png
rename to docs/figs/act_damp_variability_iff_spindle_angle.png
diff --git a/figs/act_damp_variability_iff_spindle_speed.pdf b/docs/figs/act_damp_variability_iff_spindle_speed.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_speed.pdf
rename to docs/figs/act_damp_variability_iff_spindle_speed.pdf
diff --git a/figs/act_damp_variability_iff_spindle_speed.png b/docs/figs/act_damp_variability_iff_spindle_speed.png
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_speed.png
rename to docs/figs/act_damp_variability_iff_spindle_speed.png
diff --git a/figs/act_damp_variability_iff_spindle_speed_zoom.pdf b/docs/figs/act_damp_variability_iff_spindle_speed_zoom.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_speed_zoom.pdf
rename to docs/figs/act_damp_variability_iff_spindle_speed_zoom.pdf
diff --git a/figs/act_damp_variability_iff_spindle_speed_zoom.png b/docs/figs/act_damp_variability_iff_spindle_speed_zoom.png
similarity index 100%
rename from figs/act_damp_variability_iff_spindle_speed_zoom.png
rename to docs/figs/act_damp_variability_iff_spindle_speed_zoom.png
diff --git a/figs/act_damp_variability_iff_tilt_angle.pdf b/docs/figs/act_damp_variability_iff_tilt_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_tilt_angle.pdf
rename to docs/figs/act_damp_variability_iff_tilt_angle.pdf
diff --git a/figs/act_damp_variability_iff_tilt_angle.png b/docs/figs/act_damp_variability_iff_tilt_angle.png
similarity index 100%
rename from figs/act_damp_variability_iff_tilt_angle.png
rename to docs/figs/act_damp_variability_iff_tilt_angle.png
diff --git a/figs/act_damp_variability_iff_ty_scans.pdf b/docs/figs/act_damp_variability_iff_ty_scans.pdf
similarity index 100%
rename from figs/act_damp_variability_iff_ty_scans.pdf
rename to docs/figs/act_damp_variability_iff_ty_scans.pdf
diff --git a/figs/act_damp_variability_iff_ty_scans.png b/docs/figs/act_damp_variability_iff_ty_scans.png
similarity index 100%
rename from figs/act_damp_variability_iff_ty_scans.png
rename to docs/figs/act_damp_variability_iff_ty_scans.png
diff --git a/figs/act_damp_variability_ine_sample_mass.pdf b/docs/figs/act_damp_variability_ine_sample_mass.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_sample_mass.pdf
rename to docs/figs/act_damp_variability_ine_sample_mass.pdf
diff --git a/figs/act_damp_variability_ine_sample_mass.png b/docs/figs/act_damp_variability_ine_sample_mass.png
similarity index 100%
rename from figs/act_damp_variability_ine_sample_mass.png
rename to docs/figs/act_damp_variability_ine_sample_mass.png
diff --git a/figs/act_damp_variability_ine_spindle_angle.pdf b/docs/figs/act_damp_variability_ine_spindle_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_angle.pdf
rename to docs/figs/act_damp_variability_ine_spindle_angle.pdf
diff --git a/figs/act_damp_variability_ine_spindle_angle.png b/docs/figs/act_damp_variability_ine_spindle_angle.png
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_angle.png
rename to docs/figs/act_damp_variability_ine_spindle_angle.png
diff --git a/figs/act_damp_variability_ine_spindle_speed.pdf b/docs/figs/act_damp_variability_ine_spindle_speed.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_speed.pdf
rename to docs/figs/act_damp_variability_ine_spindle_speed.pdf
diff --git a/figs/act_damp_variability_ine_spindle_speed.png b/docs/figs/act_damp_variability_ine_spindle_speed.png
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_speed.png
rename to docs/figs/act_damp_variability_ine_spindle_speed.png
diff --git a/figs/act_damp_variability_ine_spindle_speed_zoom.pdf b/docs/figs/act_damp_variability_ine_spindle_speed_zoom.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_speed_zoom.pdf
rename to docs/figs/act_damp_variability_ine_spindle_speed_zoom.pdf
diff --git a/figs/act_damp_variability_ine_spindle_speed_zoom.png b/docs/figs/act_damp_variability_ine_spindle_speed_zoom.png
similarity index 100%
rename from figs/act_damp_variability_ine_spindle_speed_zoom.png
rename to docs/figs/act_damp_variability_ine_spindle_speed_zoom.png
diff --git a/figs/act_damp_variability_ine_tilt_angle.pdf b/docs/figs/act_damp_variability_ine_tilt_angle.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_tilt_angle.pdf
rename to docs/figs/act_damp_variability_ine_tilt_angle.pdf
diff --git a/figs/act_damp_variability_ine_tilt_angle.png b/docs/figs/act_damp_variability_ine_tilt_angle.png
similarity index 100%
rename from figs/act_damp_variability_ine_tilt_angle.png
rename to docs/figs/act_damp_variability_ine_tilt_angle.png
diff --git a/figs/act_damp_variability_ine_ty_scans.pdf b/docs/figs/act_damp_variability_ine_ty_scans.pdf
similarity index 100%
rename from figs/act_damp_variability_ine_ty_scans.pdf
rename to docs/figs/act_damp_variability_ine_ty_scans.pdf
diff --git a/figs/act_damp_variability_ine_ty_scans.png b/docs/figs/act_damp_variability_ine_ty_scans.png
similarity index 100%
rename from figs/act_damp_variability_ine_ty_scans.png
rename to docs/figs/act_damp_variability_ine_ty_scans.png
diff --git a/figs/bushing_joint_transform.png b/docs/figs/bushing_joint_transform.png
similarity index 100%
rename from figs/bushing_joint_transform.png
rename to docs/figs/bushing_joint_transform.png
diff --git a/figs/campbell_diagram_spindle_rotation.pdf b/docs/figs/campbell_diagram_spindle_rotation.pdf
similarity index 100%
rename from figs/campbell_diagram_spindle_rotation.pdf
rename to docs/figs/campbell_diagram_spindle_rotation.pdf
diff --git a/figs/campbell_diagram_spindle_rotation.png b/docs/figs/campbell_diagram_spindle_rotation.png
similarity index 100%
rename from figs/campbell_diagram_spindle_rotation.png
rename to docs/figs/campbell_diagram_spindle_rotation.png
diff --git a/figs/cas_computed_relative_displacement.pdf b/docs/figs/cas_computed_relative_displacement.pdf
similarity index 100%
rename from figs/cas_computed_relative_displacement.pdf
rename to docs/figs/cas_computed_relative_displacement.pdf
diff --git a/figs/cas_computed_relative_displacement.png b/docs/figs/cas_computed_relative_displacement.png
similarity index 100%
rename from figs/cas_computed_relative_displacement.png
rename to docs/figs/cas_computed_relative_displacement.png
diff --git a/figs/cedrat-uniaxial-actuator.pdf b/docs/figs/cedrat-uniaxial-actuator.pdf
similarity index 100%
rename from figs/cedrat-uniaxial-actuator.pdf
rename to docs/figs/cedrat-uniaxial-actuator.pdf
diff --git a/figs/cedrat-uniaxial-actuator.png b/docs/figs/cedrat-uniaxial-actuator.png
similarity index 100%
rename from figs/cedrat-uniaxial-actuator.png
rename to docs/figs/cedrat-uniaxial-actuator.png
diff --git a/figs/comp_estimation_cas_disturbances.pdf b/docs/figs/comp_estimation_cas_disturbances.pdf
similarity index 100%
rename from figs/comp_estimation_cas_disturbances.pdf
rename to docs/figs/comp_estimation_cas_disturbances.pdf
diff --git a/figs/comp_estimation_cas_disturbances.png b/docs/figs/comp_estimation_cas_disturbances.png
similarity index 100%
rename from figs/comp_estimation_cas_disturbances.png
rename to docs/figs/comp_estimation_cas_disturbances.png
diff --git a/figs/control-schematic-nass.pdf b/docs/figs/control-schematic-nass.pdf
similarity index 100%
rename from figs/control-schematic-nass.pdf
rename to docs/figs/control-schematic-nass.pdf
diff --git a/figs/control-schematic-nass.png b/docs/figs/control-schematic-nass.png
similarity index 100%
rename from figs/control-schematic-nass.png
rename to docs/figs/control-schematic-nass.png
diff --git a/figs/dist_effect_relative_motion.pdf b/docs/figs/dist_effect_relative_motion.pdf
similarity index 100%
rename from figs/dist_effect_relative_motion.pdf
rename to docs/figs/dist_effect_relative_motion.pdf
diff --git a/figs/dist_effect_relative_motion.png b/docs/figs/dist_effect_relative_motion.png
similarity index 100%
rename from figs/dist_effect_relative_motion.png
rename to docs/figs/dist_effect_relative_motion.png
diff --git a/figs/dist_effect_relative_motion_cas.pdf b/docs/figs/dist_effect_relative_motion_cas.pdf
similarity index 100%
rename from figs/dist_effect_relative_motion_cas.pdf
rename to docs/figs/dist_effect_relative_motion_cas.pdf
diff --git a/figs/dist_effect_relative_motion_cas.png b/docs/figs/dist_effect_relative_motion_cas.png
similarity index 100%
rename from figs/dist_effect_relative_motion_cas.png
rename to docs/figs/dist_effect_relative_motion_cas.png
diff --git a/figs/dist_effect_relative_velocity.pdf b/docs/figs/dist_effect_relative_velocity.pdf
similarity index 100%
rename from figs/dist_effect_relative_velocity.pdf
rename to docs/figs/dist_effect_relative_velocity.pdf
diff --git a/figs/dist_effect_relative_velocity.png b/docs/figs/dist_effect_relative_velocity.png
similarity index 100%
rename from figs/dist_effect_relative_velocity.png
rename to docs/figs/dist_effect_relative_velocity.png
diff --git a/figs/dist_force_psd.pdf b/docs/figs/dist_force_psd.pdf
similarity index 100%
rename from figs/dist_force_psd.pdf
rename to docs/figs/dist_force_psd.pdf
diff --git a/figs/dist_force_psd.png b/docs/figs/dist_force_psd.png
similarity index 100%
rename from figs/dist_force_psd.png
rename to docs/figs/dist_force_psd.png
diff --git a/figs/dvf_1dof.pdf b/docs/figs/dvf_1dof.pdf
similarity index 100%
rename from figs/dvf_1dof.pdf
rename to docs/figs/dvf_1dof.pdf
diff --git a/figs/dvf_1dof.png b/docs/figs/dvf_1dof.png
similarity index 100%
rename from figs/dvf_1dof.png
rename to docs/figs/dvf_1dof.png
diff --git a/figs/dvf_1dof_sensitivitiy.pdf b/docs/figs/dvf_1dof_sensitivitiy.pdf
similarity index 100%
rename from figs/dvf_1dof_sensitivitiy.pdf
rename to docs/figs/dvf_1dof_sensitivitiy.pdf
diff --git a/figs/dvf_1dof_sensitivitiy.png b/docs/figs/dvf_1dof_sensitivitiy.png
similarity index 100%
rename from figs/dvf_1dof_sensitivitiy.png
rename to docs/figs/dvf_1dof_sensitivitiy.png
diff --git a/figs/dvf_open_loop.pdf b/docs/figs/dvf_open_loop.pdf
similarity index 100%
rename from figs/dvf_open_loop.pdf
rename to docs/figs/dvf_open_loop.pdf
diff --git a/figs/dvf_open_loop.png b/docs/figs/dvf_open_loop.png
similarity index 100%
rename from figs/dvf_open_loop.png
rename to docs/figs/dvf_open_loop.png
diff --git a/figs/dvf_open_loop_gain.pdf b/docs/figs/dvf_open_loop_gain.pdf
similarity index 100%
rename from figs/dvf_open_loop_gain.pdf
rename to docs/figs/dvf_open_loop_gain.pdf
diff --git a/figs/dvf_open_loop_gain.png b/docs/figs/dvf_open_loop_gain.png
similarity index 100%
rename from figs/dvf_open_loop_gain.png
rename to docs/figs/dvf_open_loop_gain.png
diff --git a/figs/dvf_plant.pdf b/docs/figs/dvf_plant.pdf
similarity index 100%
rename from figs/dvf_plant.pdf
rename to docs/figs/dvf_plant.pdf
diff --git a/figs/dvf_plant.png b/docs/figs/dvf_plant.png
similarity index 100%
rename from figs/dvf_plant.png
rename to docs/figs/dvf_plant.png
diff --git a/figs/estimate_spectral_density_disturbances.pdf b/docs/figs/estimate_spectral_density_disturbances.pdf
similarity index 100%
rename from figs/estimate_spectral_density_disturbances.pdf
rename to docs/figs/estimate_spectral_density_disturbances.pdf
diff --git a/figs/estimate_spectral_density_disturbances.png b/docs/figs/estimate_spectral_density_disturbances.png
similarity index 100%
rename from figs/estimate_spectral_density_disturbances.png
rename to docs/figs/estimate_spectral_density_disturbances.png
diff --git a/figs/exp_tomo_dist_rot.pdf b/docs/figs/exp_tomo_dist_rot.pdf
similarity index 100%
rename from figs/exp_tomo_dist_rot.pdf
rename to docs/figs/exp_tomo_dist_rot.pdf
diff --git a/figs/exp_tomo_dist_rot.png b/docs/figs/exp_tomo_dist_rot.png
similarity index 100%
rename from figs/exp_tomo_dist_rot.png
rename to docs/figs/exp_tomo_dist_rot.png
diff --git a/figs/exp_tomo_dist_trans.pdf b/docs/figs/exp_tomo_dist_trans.pdf
similarity index 100%
rename from figs/exp_tomo_dist_trans.pdf
rename to docs/figs/exp_tomo_dist_trans.pdf
diff --git a/figs/exp_tomo_dist_trans.png b/docs/figs/exp_tomo_dist_trans.png
similarity index 100%
rename from figs/exp_tomo_dist_trans.png
rename to docs/figs/exp_tomo_dist_trans.png
diff --git a/figs/exp_tomo_offset_rot.pdf b/docs/figs/exp_tomo_offset_rot.pdf
similarity index 100%
rename from figs/exp_tomo_offset_rot.pdf
rename to docs/figs/exp_tomo_offset_rot.pdf
diff --git a/figs/exp_tomo_offset_rot.png b/docs/figs/exp_tomo_offset_rot.png
similarity index 100%
rename from figs/exp_tomo_offset_rot.png
rename to docs/figs/exp_tomo_offset_rot.png
diff --git a/figs/exp_tomo_offset_trans.pdf b/docs/figs/exp_tomo_offset_trans.pdf
similarity index 100%
rename from figs/exp_tomo_offset_trans.pdf
rename to docs/figs/exp_tomo_offset_trans.pdf
diff --git a/figs/exp_tomo_offset_trans.png b/docs/figs/exp_tomo_offset_trans.png
similarity index 100%
rename from figs/exp_tomo_offset_trans.png
rename to docs/figs/exp_tomo_offset_trans.png
diff --git a/figs/exp_tomo_without_dist_rot.pdf b/docs/figs/exp_tomo_without_dist_rot.pdf
similarity index 100%
rename from figs/exp_tomo_without_dist_rot.pdf
rename to docs/figs/exp_tomo_without_dist_rot.pdf
diff --git a/figs/exp_tomo_without_dist_rot.png b/docs/figs/exp_tomo_without_dist_rot.png
similarity index 100%
rename from figs/exp_tomo_without_dist_rot.png
rename to docs/figs/exp_tomo_without_dist_rot.png
diff --git a/figs/exp_tomo_without_dist_trans.pdf b/docs/figs/exp_tomo_without_dist_trans.pdf
similarity index 100%
rename from figs/exp_tomo_without_dist_trans.pdf
rename to docs/figs/exp_tomo_without_dist_trans.pdf
diff --git a/figs/exp_tomo_without_dist_trans.png b/docs/figs/exp_tomo_without_dist_trans.png
similarity index 100%
rename from figs/exp_tomo_without_dist_trans.png
rename to docs/figs/exp_tomo_without_dist_trans.png
diff --git a/figs/exp_ty_scan_rot.pdf b/docs/figs/exp_ty_scan_rot.pdf
similarity index 100%
rename from figs/exp_ty_scan_rot.pdf
rename to docs/figs/exp_ty_scan_rot.pdf
diff --git a/figs/exp_ty_scan_rot.png b/docs/figs/exp_ty_scan_rot.png
similarity index 100%
rename from figs/exp_ty_scan_rot.png
rename to docs/figs/exp_ty_scan_rot.png
diff --git a/figs/exp_ty_scan_trans.pdf b/docs/figs/exp_ty_scan_trans.pdf
similarity index 100%
rename from figs/exp_ty_scan_trans.pdf
rename to docs/figs/exp_ty_scan_trans.pdf
diff --git a/figs/exp_ty_scan_trans.png b/docs/figs/exp_ty_scan_trans.png
similarity index 100%
rename from figs/exp_ty_scan_trans.png
rename to docs/figs/exp_ty_scan_trans.png
diff --git a/figs/exp_w_wo_nass_xy.pdf b/docs/figs/exp_w_wo_nass_xy.pdf
similarity index 100%
rename from figs/exp_w_wo_nass_xy.pdf
rename to docs/figs/exp_w_wo_nass_xy.pdf
diff --git a/figs/exp_w_wo_nass_y.pdf b/docs/figs/exp_w_wo_nass_y.pdf
similarity index 100%
rename from figs/exp_w_wo_nass_y.pdf
rename to docs/figs/exp_w_wo_nass_y.pdf
diff --git a/figs/flexibilities.pdf b/docs/figs/flexibilities.pdf
similarity index 100%
rename from figs/flexibilities.pdf
rename to docs/figs/flexibilities.pdf
diff --git a/figs/gm_control_psd_z.pdf b/docs/figs/gm_control_psd_z.pdf
similarity index 100%
rename from figs/gm_control_psd_z.pdf
rename to docs/figs/gm_control_psd_z.pdf
diff --git a/figs/gm_control_xz.pdf b/docs/figs/gm_control_xz.pdf
similarity index 100%
rename from figs/gm_control_xz.pdf
rename to docs/figs/gm_control_xz.pdf
diff --git a/figs/ground_motion_effect.pdf b/docs/figs/ground_motion_effect.pdf
similarity index 100%
rename from figs/ground_motion_effect.pdf
rename to docs/figs/ground_motion_effect.pdf
diff --git a/figs/hexapod_cart_coupling.pdf b/docs/figs/hexapod_cart_coupling.pdf
similarity index 100%
rename from figs/hexapod_cart_coupling.pdf
rename to docs/figs/hexapod_cart_coupling.pdf
diff --git a/figs/hexapod_cart_rot.pdf b/docs/figs/hexapod_cart_rot.pdf
similarity index 100%
rename from figs/hexapod_cart_rot.pdf
rename to docs/figs/hexapod_cart_rot.pdf
diff --git a/figs/hexapod_cart_trans.pdf b/docs/figs/hexapod_cart_trans.pdf
similarity index 100%
rename from figs/hexapod_cart_trans.pdf
rename to docs/figs/hexapod_cart_trans.pdf
diff --git a/figs/hexapod_legs.pdf b/docs/figs/hexapod_legs.pdf
similarity index 100%
rename from figs/hexapod_legs.pdf
rename to docs/figs/hexapod_legs.pdf
diff --git a/figs/hexapod_legs_coupling.pdf b/docs/figs/hexapod_legs_coupling.pdf
similarity index 100%
rename from figs/hexapod_legs_coupling.pdf
rename to docs/figs/hexapod_legs_coupling.pdf
diff --git a/figs/id_hexapod_coupling.pdf b/docs/figs/id_hexapod_coupling.pdf
similarity index 100%
rename from figs/id_hexapod_coupling.pdf
rename to docs/figs/id_hexapod_coupling.pdf
diff --git a/figs/id_hexapod_rot.pdf b/docs/figs/id_hexapod_rot.pdf
similarity index 100%
rename from figs/id_hexapod_rot.pdf
rename to docs/figs/id_hexapod_rot.pdf
diff --git a/figs/id_hexapod_trans.pdf b/docs/figs/id_hexapod_trans.pdf
similarity index 100%
rename from figs/id_hexapod_trans.pdf
rename to docs/figs/id_hexapod_trans.pdf
diff --git a/figs/id_nass_coupling.pdf b/docs/figs/id_nass_coupling.pdf
similarity index 100%
rename from figs/id_nass_coupling.pdf
rename to docs/figs/id_nass_coupling.pdf
diff --git a/figs/id_nass_rot.pdf b/docs/figs/id_nass_rot.pdf
similarity index 100%
rename from figs/id_nass_rot.pdf
rename to docs/figs/id_nass_rot.pdf
diff --git a/figs/id_nass_trans.pdf b/docs/figs/id_nass_trans.pdf
similarity index 100%
rename from figs/id_nass_trans.pdf
rename to docs/figs/id_nass_trans.pdf
diff --git a/figs/id_ry.pdf b/docs/figs/id_ry.pdf
similarity index 100%
rename from figs/id_ry.pdf
rename to docs/figs/id_ry.pdf
diff --git a/figs/id_ty.pdf b/docs/figs/id_ty.pdf
similarity index 100%
rename from figs/id_ty.pdf
rename to docs/figs/id_ty.pdf
diff --git a/figs/identification_comp_bot_stages.pdf b/docs/figs/identification_comp_bot_stages.pdf
similarity index 100%
rename from figs/identification_comp_bot_stages.pdf
rename to docs/figs/identification_comp_bot_stages.pdf
diff --git a/figs/identification_comp_bot_stages.png b/docs/figs/identification_comp_bot_stages.png
similarity index 100%
rename from figs/identification_comp_bot_stages.png
rename to docs/figs/identification_comp_bot_stages.png
diff --git a/figs/identification_comp_mid_stages.pdf b/docs/figs/identification_comp_mid_stages.pdf
similarity index 100%
rename from figs/identification_comp_mid_stages.pdf
rename to docs/figs/identification_comp_mid_stages.pdf
diff --git a/figs/identification_comp_mid_stages.png b/docs/figs/identification_comp_mid_stages.png
similarity index 100%
rename from figs/identification_comp_mid_stages.png
rename to docs/figs/identification_comp_mid_stages.png
diff --git a/figs/identification_comp_top_stages.pdf b/docs/figs/identification_comp_top_stages.pdf
similarity index 100%
rename from figs/identification_comp_top_stages.pdf
rename to docs/figs/identification_comp_top_stages.pdf
diff --git a/figs/identification_comp_top_stages.png b/docs/figs/identification_comp_top_stages.png
similarity index 100%
rename from figs/identification_comp_top_stages.png
rename to docs/figs/identification_comp_top_stages.png
diff --git a/figs/iff_1dof.pdf b/docs/figs/iff_1dof.pdf
similarity index 100%
rename from figs/iff_1dof.pdf
rename to docs/figs/iff_1dof.pdf
diff --git a/figs/iff_1dof.png b/docs/figs/iff_1dof.png
similarity index 100%
rename from figs/iff_1dof.png
rename to docs/figs/iff_1dof.png
diff --git a/figs/iff_1dof_sensitivitiy.pdf b/docs/figs/iff_1dof_sensitivitiy.pdf
similarity index 100%
rename from figs/iff_1dof_sensitivitiy.pdf
rename to docs/figs/iff_1dof_sensitivitiy.pdf
diff --git a/figs/iff_1dof_sensitivitiy.png b/docs/figs/iff_1dof_sensitivitiy.png
similarity index 100%
rename from figs/iff_1dof_sensitivitiy.png
rename to docs/figs/iff_1dof_sensitivitiy.png
diff --git a/figs/iff_hpf_open_loop.pdf b/docs/figs/iff_hpf_open_loop.pdf
similarity index 100%
rename from figs/iff_hpf_open_loop.pdf
rename to docs/figs/iff_hpf_open_loop.pdf
diff --git a/figs/iff_hpf_open_loop.png b/docs/figs/iff_hpf_open_loop.png
similarity index 100%
rename from figs/iff_hpf_open_loop.png
rename to docs/figs/iff_hpf_open_loop.png
diff --git a/figs/iff_open_loop.pdf b/docs/figs/iff_open_loop.pdf
similarity index 100%
rename from figs/iff_open_loop.pdf
rename to docs/figs/iff_open_loop.pdf
diff --git a/figs/iff_open_loop.png b/docs/figs/iff_open_loop.png
similarity index 100%
rename from figs/iff_open_loop.png
rename to docs/figs/iff_open_loop.png
diff --git a/figs/iff_plant.pdf b/docs/figs/iff_plant.pdf
similarity index 100%
rename from figs/iff_plant.pdf
rename to docs/figs/iff_plant.pdf
diff --git a/figs/iff_plant.png b/docs/figs/iff_plant.png
similarity index 100%
rename from figs/iff_plant.png
rename to docs/figs/iff_plant.png
diff --git a/figs/images/axisc.png b/docs/figs/images/axisc.png
similarity index 100%
rename from figs/images/axisc.png
rename to docs/figs/images/axisc.png
diff --git a/figs/images/granite.png b/docs/figs/images/granite.png
similarity index 100%
rename from figs/images/granite.png
rename to docs/figs/images/granite.png
diff --git a/figs/images/ground.png b/docs/figs/images/ground.png
similarity index 100%
rename from figs/images/ground.png
rename to docs/figs/images/ground.png
diff --git a/figs/images/mirror.png b/docs/figs/images/mirror.png
similarity index 100%
rename from figs/images/mirror.png
rename to docs/figs/images/mirror.png
diff --git a/figs/images/n_hexa.png b/docs/figs/images/n_hexa.png
similarity index 100%
rename from figs/images/n_hexa.png
rename to docs/figs/images/n_hexa.png
diff --git a/figs/images/ry.png b/docs/figs/images/ry.png
similarity index 100%
rename from figs/images/ry.png
rename to docs/figs/images/ry.png
diff --git a/figs/images/rz.png b/docs/figs/images/rz.png
similarity index 100%
rename from figs/images/rz.png
rename to docs/figs/images/rz.png
diff --git a/figs/images/sample.png b/docs/figs/images/sample.png
similarity index 100%
rename from figs/images/sample.png
rename to docs/figs/images/sample.png
diff --git a/figs/images/simscape_model_axisc.pdf b/docs/figs/images/simscape_model_axisc.pdf
similarity index 100%
rename from figs/images/simscape_model_axisc.pdf
rename to docs/figs/images/simscape_model_axisc.pdf
diff --git a/figs/images/simscape_model_axisc.png b/docs/figs/images/simscape_model_axisc.png
similarity index 100%
rename from figs/images/simscape_model_axisc.png
rename to docs/figs/images/simscape_model_axisc.png
diff --git a/figs/images/simscape_model_granite.pdf b/docs/figs/images/simscape_model_granite.pdf
similarity index 100%
rename from figs/images/simscape_model_granite.pdf
rename to docs/figs/images/simscape_model_granite.pdf
diff --git a/figs/images/simscape_model_granite.png b/docs/figs/images/simscape_model_granite.png
similarity index 100%
rename from figs/images/simscape_model_granite.png
rename to docs/figs/images/simscape_model_granite.png
diff --git a/figs/images/simscape_model_ground.pdf b/docs/figs/images/simscape_model_ground.pdf
similarity index 100%
rename from figs/images/simscape_model_ground.pdf
rename to docs/figs/images/simscape_model_ground.pdf
diff --git a/figs/images/simscape_model_ground.png b/docs/figs/images/simscape_model_ground.png
similarity index 100%
rename from figs/images/simscape_model_ground.png
rename to docs/figs/images/simscape_model_ground.png
diff --git a/figs/images/simscape_model_micro_hexapod.png b/docs/figs/images/simscape_model_micro_hexapod.png
similarity index 100%
rename from figs/images/simscape_model_micro_hexapod.png
rename to docs/figs/images/simscape_model_micro_hexapod.png
diff --git a/figs/images/simscape_model_mirror.pdf b/docs/figs/images/simscape_model_mirror.pdf
similarity index 100%
rename from figs/images/simscape_model_mirror.pdf
rename to docs/figs/images/simscape_model_mirror.pdf
diff --git a/figs/images/simscape_model_mirror.png b/docs/figs/images/simscape_model_mirror.png
similarity index 100%
rename from figs/images/simscape_model_mirror.png
rename to docs/figs/images/simscape_model_mirror.png
diff --git a/figs/images/simscape_model_nano_hexapod.png b/docs/figs/images/simscape_model_nano_hexapod.png
similarity index 100%
rename from figs/images/simscape_model_nano_hexapod.png
rename to docs/figs/images/simscape_model_nano_hexapod.png
diff --git a/figs/images/simscape_model_ry.pdf b/docs/figs/images/simscape_model_ry.pdf
similarity index 100%
rename from figs/images/simscape_model_ry.pdf
rename to docs/figs/images/simscape_model_ry.pdf
diff --git a/figs/images/simscape_model_ry.png b/docs/figs/images/simscape_model_ry.png
similarity index 100%
rename from figs/images/simscape_model_ry.png
rename to docs/figs/images/simscape_model_ry.png
diff --git a/figs/images/simscape_model_rz.pdf b/docs/figs/images/simscape_model_rz.pdf
similarity index 100%
rename from figs/images/simscape_model_rz.pdf
rename to docs/figs/images/simscape_model_rz.pdf
diff --git a/figs/images/simscape_model_rz.png b/docs/figs/images/simscape_model_rz.png
similarity index 100%
rename from figs/images/simscape_model_rz.png
rename to docs/figs/images/simscape_model_rz.png
diff --git a/figs/images/simscape_model_sample.pdf b/docs/figs/images/simscape_model_sample.pdf
similarity index 100%
rename from figs/images/simscape_model_sample.pdf
rename to docs/figs/images/simscape_model_sample.pdf
diff --git a/figs/images/simscape_model_sample.png b/docs/figs/images/simscape_model_sample.png
similarity index 100%
rename from figs/images/simscape_model_sample.png
rename to docs/figs/images/simscape_model_sample.png
diff --git a/figs/images/simscape_model_ty.pdf b/docs/figs/images/simscape_model_ty.pdf
similarity index 100%
rename from figs/images/simscape_model_ty.pdf
rename to docs/figs/images/simscape_model_ty.pdf
diff --git a/figs/images/simscape_model_ty.png b/docs/figs/images/simscape_model_ty.png
similarity index 100%
rename from figs/images/simscape_model_ty.png
rename to docs/figs/images/simscape_model_ty.png
diff --git a/figs/images/simscape_picture.png b/docs/figs/images/simscape_picture.png
similarity index 100%
rename from figs/images/simscape_picture.png
rename to docs/figs/images/simscape_picture.png
diff --git a/figs/images/simscape_picture_axisc.png b/docs/figs/images/simscape_picture_axisc.png
similarity index 100%
rename from figs/images/simscape_picture_axisc.png
rename to docs/figs/images/simscape_picture_axisc.png
diff --git a/figs/images/simscape_picture_granite.png b/docs/figs/images/simscape_picture_granite.png
similarity index 100%
rename from figs/images/simscape_picture_granite.png
rename to docs/figs/images/simscape_picture_granite.png
diff --git a/figs/images/simscape_picture_ground.png b/docs/figs/images/simscape_picture_ground.png
similarity index 100%
rename from figs/images/simscape_picture_ground.png
rename to docs/figs/images/simscape_picture_ground.png
diff --git a/figs/images/simscape_picture_micro_hexapod.png b/docs/figs/images/simscape_picture_micro_hexapod.png
similarity index 100%
rename from figs/images/simscape_picture_micro_hexapod.png
rename to docs/figs/images/simscape_picture_micro_hexapod.png
diff --git a/figs/images/simscape_picture_mirror.png b/docs/figs/images/simscape_picture_mirror.png
similarity index 100%
rename from figs/images/simscape_picture_mirror.png
rename to docs/figs/images/simscape_picture_mirror.png
diff --git a/figs/images/simscape_picture_nano_hexapod.png b/docs/figs/images/simscape_picture_nano_hexapod.png
similarity index 100%
rename from figs/images/simscape_picture_nano_hexapod.png
rename to docs/figs/images/simscape_picture_nano_hexapod.png
diff --git a/figs/images/simscape_picture_ry.png b/docs/figs/images/simscape_picture_ry.png
similarity index 100%
rename from figs/images/simscape_picture_ry.png
rename to docs/figs/images/simscape_picture_ry.png
diff --git a/figs/images/simscape_picture_rz.png b/docs/figs/images/simscape_picture_rz.png
similarity index 100%
rename from figs/images/simscape_picture_rz.png
rename to docs/figs/images/simscape_picture_rz.png
diff --git a/figs/images/simscape_picture_sample.png b/docs/figs/images/simscape_picture_sample.png
similarity index 100%
rename from figs/images/simscape_picture_sample.png
rename to docs/figs/images/simscape_picture_sample.png
diff --git a/figs/images/simscape_picture_ty.png b/docs/figs/images/simscape_picture_ty.png
similarity index 100%
rename from figs/images/simscape_picture_ty.png
rename to docs/figs/images/simscape_picture_ty.png
diff --git a/figs/images/ty.png b/docs/figs/images/ty.png
similarity index 100%
rename from figs/images/ty.png
rename to docs/figs/images/ty.png
diff --git a/figs/images/u_hexa.png b/docs/figs/images/u_hexa.png
similarity index 100%
rename from figs/images/u_hexa.png
rename to docs/figs/images/u_hexa.png
diff --git a/figs/ine_open_loop_gain.pdf b/docs/figs/ine_open_loop_gain.pdf
similarity index 100%
rename from figs/ine_open_loop_gain.pdf
rename to docs/figs/ine_open_loop_gain.pdf
diff --git a/figs/ine_open_loop_gain.png b/docs/figs/ine_open_loop_gain.png
similarity index 100%
rename from figs/ine_open_loop_gain.png
rename to docs/figs/ine_open_loop_gain.png
diff --git a/figs/ine_plant.pdf b/docs/figs/ine_plant.pdf
similarity index 100%
rename from figs/ine_plant.pdf
rename to docs/figs/ine_plant.pdf
diff --git a/figs/ine_plant.png b/docs/figs/ine_plant.png
similarity index 100%
rename from figs/ine_plant.png
rename to docs/figs/ine_plant.png
diff --git a/figs/loopgain.pdf b/docs/figs/loopgain.pdf
similarity index 100%
rename from figs/loopgain.pdf
rename to docs/figs/loopgain.pdf
diff --git a/figs/movies/Assemblage.avi b/docs/figs/movies/Assemblage.avi
similarity index 100%
rename from figs/movies/Assemblage.avi
rename to docs/figs/movies/Assemblage.avi
diff --git a/figs/movies/Assemblage.gif b/docs/figs/movies/Assemblage.gif
similarity index 100%
rename from figs/movies/Assemblage.gif
rename to docs/figs/movies/Assemblage.gif
diff --git a/figs/movies/close_loop.avi b/docs/figs/movies/close_loop.avi
similarity index 100%
rename from figs/movies/close_loop.avi
rename to docs/figs/movies/close_loop.avi
diff --git a/figs/movies/close_loop_zoom.avi b/docs/figs/movies/close_loop_zoom.avi
similarity index 100%
rename from figs/movies/close_loop_zoom.avi
rename to docs/figs/movies/close_loop_zoom.avi
diff --git a/figs/movies/open_loop.avi b/docs/figs/movies/open_loop.avi
similarity index 100%
rename from figs/movies/open_loop.avi
rename to docs/figs/movies/open_loop.avi
diff --git a/figs/nass_act_damp_dvf_sim_tomo_rot.pdf b/docs/figs/nass_act_damp_dvf_sim_tomo_rot.pdf
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_rot.pdf
rename to docs/figs/nass_act_damp_dvf_sim_tomo_rot.pdf
diff --git a/figs/nass_act_damp_dvf_sim_tomo_rot.png b/docs/figs/nass_act_damp_dvf_sim_tomo_rot.png
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_rot.png
rename to docs/figs/nass_act_damp_dvf_sim_tomo_rot.png
diff --git a/figs/nass_act_damp_dvf_sim_tomo_trans.pdf b/docs/figs/nass_act_damp_dvf_sim_tomo_trans.pdf
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_trans.pdf
rename to docs/figs/nass_act_damp_dvf_sim_tomo_trans.pdf
diff --git a/figs/nass_act_damp_dvf_sim_tomo_trans.png b/docs/figs/nass_act_damp_dvf_sim_tomo_trans.png
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_trans.png
rename to docs/figs/nass_act_damp_dvf_sim_tomo_trans.png
diff --git a/figs/nass_act_damp_dvf_sim_tomo_xy.pdf b/docs/figs/nass_act_damp_dvf_sim_tomo_xy.pdf
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_xy.pdf
rename to docs/figs/nass_act_damp_dvf_sim_tomo_xy.pdf
diff --git a/figs/nass_act_damp_dvf_sim_tomo_xy.png b/docs/figs/nass_act_damp_dvf_sim_tomo_xy.png
similarity index 100%
rename from figs/nass_act_damp_dvf_sim_tomo_xy.png
rename to docs/figs/nass_act_damp_dvf_sim_tomo_xy.png
diff --git a/figs/nass_act_damp_iff_sim_tomo_rot.pdf b/docs/figs/nass_act_damp_iff_sim_tomo_rot.pdf
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_rot.pdf
rename to docs/figs/nass_act_damp_iff_sim_tomo_rot.pdf
diff --git a/figs/nass_act_damp_iff_sim_tomo_rot.png b/docs/figs/nass_act_damp_iff_sim_tomo_rot.png
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_rot.png
rename to docs/figs/nass_act_damp_iff_sim_tomo_rot.png
diff --git a/figs/nass_act_damp_iff_sim_tomo_trans.pdf b/docs/figs/nass_act_damp_iff_sim_tomo_trans.pdf
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_trans.pdf
rename to docs/figs/nass_act_damp_iff_sim_tomo_trans.pdf
diff --git a/figs/nass_act_damp_iff_sim_tomo_trans.png b/docs/figs/nass_act_damp_iff_sim_tomo_trans.png
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_trans.png
rename to docs/figs/nass_act_damp_iff_sim_tomo_trans.png
diff --git a/figs/nass_act_damp_iff_sim_tomo_xy.pdf b/docs/figs/nass_act_damp_iff_sim_tomo_xy.pdf
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_xy.pdf
rename to docs/figs/nass_act_damp_iff_sim_tomo_xy.pdf
diff --git a/figs/nass_act_damp_iff_sim_tomo_xy.png b/docs/figs/nass_act_damp_iff_sim_tomo_xy.png
similarity index 100%
rename from figs/nass_act_damp_iff_sim_tomo_xy.png
rename to docs/figs/nass_act_damp_iff_sim_tomo_xy.png
diff --git a/figs/nass_act_damp_undamped_sim_tomo_rot.pdf b/docs/figs/nass_act_damp_undamped_sim_tomo_rot.pdf
similarity index 100%
rename from figs/nass_act_damp_undamped_sim_tomo_rot.pdf
rename to docs/figs/nass_act_damp_undamped_sim_tomo_rot.pdf
diff --git a/figs/nass_act_damp_undamped_sim_tomo_rot.png b/docs/figs/nass_act_damp_undamped_sim_tomo_rot.png
similarity index 100%
rename from figs/nass_act_damp_undamped_sim_tomo_rot.png
rename to docs/figs/nass_act_damp_undamped_sim_tomo_rot.png
diff --git a/figs/nass_act_damp_undamped_sim_tomo_trans.pdf b/docs/figs/nass_act_damp_undamped_sim_tomo_trans.pdf
similarity index 100%
rename from figs/nass_act_damp_undamped_sim_tomo_trans.pdf
rename to docs/figs/nass_act_damp_undamped_sim_tomo_trans.pdf
diff --git a/figs/nass_act_damp_undamped_sim_tomo_trans.png b/docs/figs/nass_act_damp_undamped_sim_tomo_trans.png
similarity index 100%
rename from figs/nass_act_damp_undamped_sim_tomo_trans.png
rename to docs/figs/nass_act_damp_undamped_sim_tomo_trans.png
diff --git a/figs/nass_active_damping_dvf_plant.pdf b/docs/figs/nass_active_damping_dvf_plant.pdf
similarity index 100%
rename from figs/nass_active_damping_dvf_plant.pdf
rename to docs/figs/nass_active_damping_dvf_plant.pdf
diff --git a/figs/nass_active_damping_dvf_plant.png b/docs/figs/nass_active_damping_dvf_plant.png
similarity index 100%
rename from figs/nass_active_damping_dvf_plant.png
rename to docs/figs/nass_active_damping_dvf_plant.png
diff --git a/figs/nass_active_damping_iff_plant.pdf b/docs/figs/nass_active_damping_iff_plant.pdf
similarity index 100%
rename from figs/nass_active_damping_iff_plant.pdf
rename to docs/figs/nass_active_damping_iff_plant.pdf
diff --git a/figs/nass_active_damping_iff_plant.png b/docs/figs/nass_active_damping_iff_plant.png
similarity index 100%
rename from figs/nass_active_damping_iff_plant.png
rename to docs/figs/nass_active_damping_iff_plant.png
diff --git a/figs/nass_active_damping_ine_plant.pdf b/docs/figs/nass_active_damping_ine_plant.pdf
similarity index 100%
rename from figs/nass_active_damping_ine_plant.pdf
rename to docs/figs/nass_active_damping_ine_plant.pdf
diff --git a/figs/nass_active_damping_ine_plant.png b/docs/figs/nass_active_damping_ine_plant.png
similarity index 100%
rename from figs/nass_active_damping_ine_plant.png
rename to docs/figs/nass_active_damping_ine_plant.png
diff --git a/figs/nass_active_damping_inertial_plant.pdf b/docs/figs/nass_active_damping_inertial_plant.pdf
similarity index 100%
rename from figs/nass_active_damping_inertial_plant.pdf
rename to docs/figs/nass_active_damping_inertial_plant.pdf
diff --git a/figs/nass_active_damping_inertial_plant.png b/docs/figs/nass_active_damping_inertial_plant.png
similarity index 100%
rename from figs/nass_active_damping_inertial_plant.png
rename to docs/figs/nass_active_damping_inertial_plant.png
diff --git a/figs/nass_cart_x_mass.pdf b/docs/figs/nass_cart_x_mass.pdf
similarity index 100%
rename from figs/nass_cart_x_mass.pdf
rename to docs/figs/nass_cart_x_mass.pdf
diff --git a/figs/nass_cart_xyz.pdf b/docs/figs/nass_cart_xyz.pdf
similarity index 100%
rename from figs/nass_cart_xyz.pdf
rename to docs/figs/nass_cart_xyz.pdf
diff --git a/figs/nass_cart_y_mass.pdf b/docs/figs/nass_cart_y_mass.pdf
similarity index 100%
rename from figs/nass_cart_y_mass.pdf
rename to docs/figs/nass_cart_y_mass.pdf
diff --git a/figs/nass_cart_z_mass.pdf b/docs/figs/nass_cart_z_mass.pdf
similarity index 100%
rename from figs/nass_cart_z_mass.pdf
rename to docs/figs/nass_cart_z_mass.pdf
diff --git a/figs/plant_G_cart.pdf b/docs/figs/plant_G_cart.pdf
similarity index 100%
rename from figs/plant_G_cart.pdf
rename to docs/figs/plant_G_cart.pdf
diff --git a/figs/plant_G_cart.png b/docs/figs/plant_G_cart.png
similarity index 100%
rename from figs/plant_G_cart.png
rename to docs/figs/plant_G_cart.png
diff --git a/figs/plant_comp_damping_coupling.pdf b/docs/figs/plant_comp_damping_coupling.pdf
similarity index 100%
rename from figs/plant_comp_damping_coupling.pdf
rename to docs/figs/plant_comp_damping_coupling.pdf
diff --git a/figs/plant_comp_damping_coupling.png b/docs/figs/plant_comp_damping_coupling.png
similarity index 100%
rename from figs/plant_comp_damping_coupling.png
rename to docs/figs/plant_comp_damping_coupling.png
diff --git a/figs/plant_comp_damping_x.pdf b/docs/figs/plant_comp_damping_x.pdf
similarity index 100%
rename from figs/plant_comp_damping_x.pdf
rename to docs/figs/plant_comp_damping_x.pdf
diff --git a/figs/plant_comp_damping_x.png b/docs/figs/plant_comp_damping_x.png
similarity index 100%
rename from figs/plant_comp_damping_x.png
rename to docs/figs/plant_comp_damping_x.png
diff --git a/figs/plant_comp_damping_z.pdf b/docs/figs/plant_comp_damping_z.pdf
similarity index 100%
rename from figs/plant_comp_damping_z.pdf
rename to docs/figs/plant_comp_damping_z.pdf
diff --git a/figs/plant_comp_damping_z.png b/docs/figs/plant_comp_damping_z.png
similarity index 100%
rename from figs/plant_comp_damping_z.png
rename to docs/figs/plant_comp_damping_z.png
diff --git a/figs/plant_dvf_coupling.pdf b/docs/figs/plant_dvf_coupling.pdf
similarity index 100%
rename from figs/plant_dvf_coupling.pdf
rename to docs/figs/plant_dvf_coupling.pdf
diff --git a/figs/plant_dvf_coupling.png b/docs/figs/plant_dvf_coupling.png
similarity index 100%
rename from figs/plant_dvf_coupling.png
rename to docs/figs/plant_dvf_coupling.png
diff --git a/figs/plant_dvf_damped.pdf b/docs/figs/plant_dvf_damped.pdf
similarity index 100%
rename from figs/plant_dvf_damped.pdf
rename to docs/figs/plant_dvf_damped.pdf
diff --git a/figs/plant_dvf_damped.png b/docs/figs/plant_dvf_damped.png
similarity index 100%
rename from figs/plant_dvf_damped.png
rename to docs/figs/plant_dvf_damped.png
diff --git a/figs/plant_dvf_damped_rotations.pdf b/docs/figs/plant_dvf_damped_rotations.pdf
similarity index 100%
rename from figs/plant_dvf_damped_rotations.pdf
rename to docs/figs/plant_dvf_damped_rotations.pdf
diff --git a/figs/plant_dvf_damped_rotations.png b/docs/figs/plant_dvf_damped_rotations.png
similarity index 100%
rename from figs/plant_dvf_damped_rotations.png
rename to docs/figs/plant_dvf_damped_rotations.png
diff --git a/figs/plant_dvf_damped_translations.pdf b/docs/figs/plant_dvf_damped_translations.pdf
similarity index 100%
rename from figs/plant_dvf_damped_translations.pdf
rename to docs/figs/plant_dvf_damped_translations.pdf
diff --git a/figs/plant_dvf_damped_translations.png b/docs/figs/plant_dvf_damped_translations.png
similarity index 100%
rename from figs/plant_dvf_damped_translations.png
rename to docs/figs/plant_dvf_damped_translations.png
diff --git a/figs/plant_iff_coupling.pdf b/docs/figs/plant_iff_coupling.pdf
similarity index 100%
rename from figs/plant_iff_coupling.pdf
rename to docs/figs/plant_iff_coupling.pdf
diff --git a/figs/plant_iff_coupling.png b/docs/figs/plant_iff_coupling.png
similarity index 100%
rename from figs/plant_iff_coupling.png
rename to docs/figs/plant_iff_coupling.png
diff --git a/figs/plant_iff_damped.pdf b/docs/figs/plant_iff_damped.pdf
similarity index 100%
rename from figs/plant_iff_damped.pdf
rename to docs/figs/plant_iff_damped.pdf
diff --git a/figs/plant_iff_damped.png b/docs/figs/plant_iff_damped.png
similarity index 100%
rename from figs/plant_iff_damped.png
rename to docs/figs/plant_iff_damped.png
diff --git a/figs/plant_iff_damped_rotations.pdf b/docs/figs/plant_iff_damped_rotations.pdf
similarity index 100%
rename from figs/plant_iff_damped_rotations.pdf
rename to docs/figs/plant_iff_damped_rotations.pdf
diff --git a/figs/plant_iff_damped_rotations.png b/docs/figs/plant_iff_damped_rotations.png
similarity index 100%
rename from figs/plant_iff_damped_rotations.png
rename to docs/figs/plant_iff_damped_rotations.png
diff --git a/figs/plant_iff_damped_translations.pdf b/docs/figs/plant_iff_damped_translations.pdf
similarity index 100%
rename from figs/plant_iff_damped_translations.pdf
rename to docs/figs/plant_iff_damped_translations.pdf
diff --git a/figs/plant_iff_damped_translations.png b/docs/figs/plant_iff_damped_translations.png
similarity index 100%
rename from figs/plant_iff_damped_translations.png
rename to docs/figs/plant_iff_damped_translations.png
diff --git a/figs/plant_ine_coupling.pdf b/docs/figs/plant_ine_coupling.pdf
similarity index 100%
rename from figs/plant_ine_coupling.pdf
rename to docs/figs/plant_ine_coupling.pdf
diff --git a/figs/plant_ine_coupling.png b/docs/figs/plant_ine_coupling.png
similarity index 100%
rename from figs/plant_ine_coupling.png
rename to docs/figs/plant_ine_coupling.png
diff --git a/figs/plant_ine_damped_rotations.pdf b/docs/figs/plant_ine_damped_rotations.pdf
similarity index 100%
rename from figs/plant_ine_damped_rotations.pdf
rename to docs/figs/plant_ine_damped_rotations.pdf
diff --git a/figs/plant_ine_damped_rotations.png b/docs/figs/plant_ine_damped_rotations.png
similarity index 100%
rename from figs/plant_ine_damped_rotations.png
rename to docs/figs/plant_ine_damped_rotations.png
diff --git a/figs/plant_ine_damped_translations.pdf b/docs/figs/plant_ine_damped_translations.pdf
similarity index 100%
rename from figs/plant_ine_damped_translations.pdf
rename to docs/figs/plant_ine_damped_translations.pdf
diff --git a/figs/plant_ine_damped_translations.png b/docs/figs/plant_ine_damped_translations.png
similarity index 100%
rename from figs/plant_ine_damped_translations.png
rename to docs/figs/plant_ine_damped_translations.png
diff --git a/figs/plant_rmc_damped.pdf b/docs/figs/plant_rmc_damped.pdf
similarity index 100%
rename from figs/plant_rmc_damped.pdf
rename to docs/figs/plant_rmc_damped.pdf
diff --git a/figs/plant_rmc_damped.png b/docs/figs/plant_rmc_damped.png
similarity index 100%
rename from figs/plant_rmc_damped.png
rename to docs/figs/plant_rmc_damped.png
diff --git a/figs/plant_undamped.pdf b/docs/figs/plant_undamped.pdf
similarity index 100%
rename from figs/plant_undamped.pdf
rename to docs/figs/plant_undamped.pdf
diff --git a/figs/plant_undamped.png b/docs/figs/plant_undamped.png
similarity index 100%
rename from figs/plant_undamped.png
rename to docs/figs/plant_undamped.png
diff --git a/figs/psd_effect_dist_verif.pdf b/docs/figs/psd_effect_dist_verif.pdf
similarity index 100%
rename from figs/psd_effect_dist_verif.pdf
rename to docs/figs/psd_effect_dist_verif.pdf
diff --git a/figs/psd_effect_dist_verif.png b/docs/figs/psd_effect_dist_verif.png
similarity index 100%
rename from figs/psd_effect_dist_verif.png
rename to docs/figs/psd_effect_dist_verif.png
diff --git a/figs/rmc_1dof.pdf b/docs/figs/rmc_1dof.pdf
similarity index 100%
rename from figs/rmc_1dof.pdf
rename to docs/figs/rmc_1dof.pdf
diff --git a/figs/rmc_1dof.png b/docs/figs/rmc_1dof.png
similarity index 100%
rename from figs/rmc_1dof.png
rename to docs/figs/rmc_1dof.png
diff --git a/figs/rmc_1dof_sensitivitiy.pdf b/docs/figs/rmc_1dof_sensitivitiy.pdf
similarity index 100%
rename from figs/rmc_1dof_sensitivitiy.pdf
rename to docs/figs/rmc_1dof_sensitivitiy.pdf
diff --git a/figs/rmc_1dof_sensitivitiy.png b/docs/figs/rmc_1dof_sensitivitiy.png
similarity index 100%
rename from figs/rmc_1dof_sensitivitiy.png
rename to docs/figs/rmc_1dof_sensitivitiy.png
diff --git a/figs/rmc_open_loop.pdf b/docs/figs/rmc_open_loop.pdf
similarity index 100%
rename from figs/rmc_open_loop.pdf
rename to docs/figs/rmc_open_loop.pdf
diff --git a/figs/rmc_open_loop.png b/docs/figs/rmc_open_loop.png
similarity index 100%
rename from figs/rmc_open_loop.png
rename to docs/figs/rmc_open_loop.png
diff --git a/figs/rmc_plant.pdf b/docs/figs/rmc_plant.pdf
similarity index 100%
rename from figs/rmc_plant.pdf
rename to docs/figs/rmc_plant.pdf
diff --git a/figs/rmc_plant.png b/docs/figs/rmc_plant.png
similarity index 100%
rename from figs/rmc_plant.png
rename to docs/figs/rmc_plant.png
diff --git a/figs/sensitivity_dist_frz.pdf b/docs/figs/sensitivity_dist_frz.pdf
similarity index 100%
rename from figs/sensitivity_dist_frz.pdf
rename to docs/figs/sensitivity_dist_frz.pdf
diff --git a/figs/sensitivity_dist_frz.png b/docs/figs/sensitivity_dist_frz.png
similarity index 100%
rename from figs/sensitivity_dist_frz.png
rename to docs/figs/sensitivity_dist_frz.png
diff --git a/figs/sensitivity_dist_fty.pdf b/docs/figs/sensitivity_dist_fty.pdf
similarity index 100%
rename from figs/sensitivity_dist_fty.pdf
rename to docs/figs/sensitivity_dist_fty.pdf
diff --git a/figs/sensitivity_dist_fty.png b/docs/figs/sensitivity_dist_fty.png
similarity index 100%
rename from figs/sensitivity_dist_fty.png
rename to docs/figs/sensitivity_dist_fty.png
diff --git a/figs/sensitivity_dist_gm.pdf b/docs/figs/sensitivity_dist_gm.pdf
similarity index 100%
rename from figs/sensitivity_dist_gm.pdf
rename to docs/figs/sensitivity_dist_gm.pdf
diff --git a/figs/sensitivity_dist_gm.png b/docs/figs/sensitivity_dist_gm.png
similarity index 100%
rename from figs/sensitivity_dist_gm.png
rename to docs/figs/sensitivity_dist_gm.png
diff --git a/figs/tomo_time_translations.pdf b/docs/figs/tomo_time_translations.pdf
similarity index 100%
rename from figs/tomo_time_translations.pdf
rename to docs/figs/tomo_time_translations.pdf
diff --git a/figs/transmissibility_ol_cl.pdf b/docs/figs/transmissibility_ol_cl.pdf
similarity index 100%
rename from figs/transmissibility_ol_cl.pdf
rename to docs/figs/transmissibility_ol_cl.pdf
diff --git a/figs/ty_scanning_reference_sinus.pdf b/docs/figs/ty_scanning_reference_sinus.pdf
similarity index 100%
rename from figs/ty_scanning_reference_sinus.pdf
rename to docs/figs/ty_scanning_reference_sinus.pdf
diff --git a/figs/ty_scanning_reference_sinus.png b/docs/figs/ty_scanning_reference_sinus.png
similarity index 100%
rename from figs/ty_scanning_reference_sinus.png
rename to docs/figs/ty_scanning_reference_sinus.png
diff --git a/figs/undamped_hac_plant_rotations.pdf b/docs/figs/undamped_hac_plant_rotations.pdf
similarity index 100%
rename from figs/undamped_hac_plant_rotations.pdf
rename to docs/figs/undamped_hac_plant_rotations.pdf
diff --git a/figs/undamped_hac_plant_rotations.png b/docs/figs/undamped_hac_plant_rotations.png
similarity index 100%
rename from figs/undamped_hac_plant_rotations.png
rename to docs/figs/undamped_hac_plant_rotations.png
diff --git a/figs/undamped_hac_plant_translations.pdf b/docs/figs/undamped_hac_plant_translations.pdf
similarity index 100%
rename from figs/undamped_hac_plant_translations.pdf
rename to docs/figs/undamped_hac_plant_translations.pdf
diff --git a/figs/undamped_hac_plant_translations.png b/docs/figs/undamped_hac_plant_translations.png
similarity index 100%
rename from figs/undamped_hac_plant_translations.png
rename to docs/figs/undamped_hac_plant_translations.png
diff --git a/figs/uniaxial-cas-dist.pdf b/docs/figs/uniaxial-cas-dist.pdf
similarity index 100%
rename from figs/uniaxial-cas-dist.pdf
rename to docs/figs/uniaxial-cas-dist.pdf
diff --git a/figs/uniaxial-cas-dist.png b/docs/figs/uniaxial-cas-dist.png
similarity index 100%
rename from figs/uniaxial-cas-dist.png
rename to docs/figs/uniaxial-cas-dist.png
diff --git a/figs/uniaxial-cas-iff-vc.pdf b/docs/figs/uniaxial-cas-iff-vc.pdf
similarity index 100%
rename from figs/uniaxial-cas-iff-vc.pdf
rename to docs/figs/uniaxial-cas-iff-vc.pdf
diff --git a/figs/uniaxial-cas-iff-vc.png b/docs/figs/uniaxial-cas-iff-vc.png
similarity index 100%
rename from figs/uniaxial-cas-iff-vc.png
rename to docs/figs/uniaxial-cas-iff-vc.png
diff --git a/figs/uniaxial-comp-cas-dist.pdf b/docs/figs/uniaxial-comp-cas-dist.pdf
similarity index 100%
rename from figs/uniaxial-comp-cas-dist.pdf
rename to docs/figs/uniaxial-comp-cas-dist.pdf
diff --git a/figs/uniaxial-comp-cas-dist.png b/docs/figs/uniaxial-comp-cas-dist.png
similarity index 100%
rename from figs/uniaxial-comp-cas-dist.png
rename to docs/figs/uniaxial-comp-cas-dist.png
diff --git a/figs/uniaxial-iff-cas-dist.pdf b/docs/figs/uniaxial-iff-cas-dist.pdf
similarity index 100%
rename from figs/uniaxial-iff-cas-dist.pdf
rename to docs/figs/uniaxial-iff-cas-dist.pdf
diff --git a/figs/uniaxial-iff-cas-dist.png b/docs/figs/uniaxial-iff-cas-dist.png
similarity index 100%
rename from figs/uniaxial-iff-cas-dist.png
rename to docs/figs/uniaxial-iff-cas-dist.png
diff --git a/figs/uniaxial-iff-psd-dist.pdf b/docs/figs/uniaxial-iff-psd-dist.pdf
similarity index 100%
rename from figs/uniaxial-iff-psd-dist.pdf
rename to docs/figs/uniaxial-iff-psd-dist.pdf
diff --git a/figs/uniaxial-iff-psd-dist.png b/docs/figs/uniaxial-iff-psd-dist.png
similarity index 100%
rename from figs/uniaxial-iff-psd-dist.png
rename to docs/figs/uniaxial-iff-psd-dist.png
diff --git a/figs/uniaxial-model-act_damp.pdf b/docs/figs/uniaxial-model-act_damp.pdf
similarity index 100%
rename from figs/uniaxial-model-act_damp.pdf
rename to docs/figs/uniaxial-model-act_damp.pdf
diff --git a/figs/uniaxial-model-act_damp.png b/docs/figs/uniaxial-model-act_damp.png
similarity index 100%
rename from figs/uniaxial-model-act_damp.png
rename to docs/figs/uniaxial-model-act_damp.png
diff --git a/figs/uniaxial-model-micro-station.pdf b/docs/figs/uniaxial-model-micro-station.pdf
similarity index 100%
rename from figs/uniaxial-model-micro-station.pdf
rename to docs/figs/uniaxial-model-micro-station.pdf
diff --git a/figs/uniaxial-model-micro-station.png b/docs/figs/uniaxial-model-micro-station.png
similarity index 100%
rename from figs/uniaxial-model-micro-station.png
rename to docs/figs/uniaxial-model-micro-station.png
diff --git a/figs/uniaxial-model-nass-flexible-active-damping.pdf b/docs/figs/uniaxial-model-nass-flexible-active-damping.pdf
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-active-damping.pdf
rename to docs/figs/uniaxial-model-nass-flexible-active-damping.pdf
diff --git a/figs/uniaxial-model-nass-flexible-active-damping.png b/docs/figs/uniaxial-model-nass-flexible-active-damping.png
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-active-damping.png
rename to docs/figs/uniaxial-model-nass-flexible-active-damping.png
diff --git a/figs/uniaxial-model-nass-flexible-dvf.pdf b/docs/figs/uniaxial-model-nass-flexible-dvf.pdf
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-dvf.pdf
rename to docs/figs/uniaxial-model-nass-flexible-dvf.pdf
diff --git a/figs/uniaxial-model-nass-flexible-dvf.png b/docs/figs/uniaxial-model-nass-flexible-dvf.png
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-dvf.png
rename to docs/figs/uniaxial-model-nass-flexible-dvf.png
diff --git a/figs/uniaxial-model-nass-flexible-iff.pdf b/docs/figs/uniaxial-model-nass-flexible-iff.pdf
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-iff.pdf
rename to docs/figs/uniaxial-model-nass-flexible-iff.pdf
diff --git a/figs/uniaxial-model-nass-flexible-iff.png b/docs/figs/uniaxial-model-nass-flexible-iff.png
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-iff.png
rename to docs/figs/uniaxial-model-nass-flexible-iff.png
diff --git a/figs/uniaxial-model-nass-flexible-rmc.pdf b/docs/figs/uniaxial-model-nass-flexible-rmc.pdf
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-rmc.pdf
rename to docs/figs/uniaxial-model-nass-flexible-rmc.pdf
diff --git a/figs/uniaxial-model-nass-flexible-rmc.png b/docs/figs/uniaxial-model-nass-flexible-rmc.png
similarity index 100%
rename from figs/uniaxial-model-nass-flexible-rmc.png
rename to docs/figs/uniaxial-model-nass-flexible-rmc.png
diff --git a/figs/uniaxial-model-nass-flexible.pdf b/docs/figs/uniaxial-model-nass-flexible.pdf
similarity index 100%
rename from figs/uniaxial-model-nass-flexible.pdf
rename to docs/figs/uniaxial-model-nass-flexible.pdf
diff --git a/figs/uniaxial-model-nass-flexible.png b/docs/figs/uniaxial-model-nass-flexible.png
similarity index 100%
rename from figs/uniaxial-model-nass-flexible.png
rename to docs/figs/uniaxial-model-nass-flexible.png
diff --git a/figs/uniaxial-plant.pdf b/docs/figs/uniaxial-plant.pdf
similarity index 100%
rename from figs/uniaxial-plant.pdf
rename to docs/figs/uniaxial-plant.pdf
diff --git a/figs/uniaxial-plant.png b/docs/figs/uniaxial-plant.png
similarity index 100%
rename from figs/uniaxial-plant.png
rename to docs/figs/uniaxial-plant.png
diff --git a/figs/uniaxial-psd-dist.pdf b/docs/figs/uniaxial-psd-dist.pdf
similarity index 100%
rename from figs/uniaxial-psd-dist.pdf
rename to docs/figs/uniaxial-psd-dist.pdf
diff --git a/figs/uniaxial-psd-dist.png b/docs/figs/uniaxial-psd-dist.png
similarity index 100%
rename from figs/uniaxial-psd-dist.png
rename to docs/figs/uniaxial-psd-dist.png
diff --git a/figs/uniaxial-sensitivity-disturbances.pdf b/docs/figs/uniaxial-sensitivity-disturbances.pdf
similarity index 100%
rename from figs/uniaxial-sensitivity-disturbances.pdf
rename to docs/figs/uniaxial-sensitivity-disturbances.pdf
diff --git a/figs/uniaxial-sensitivity-disturbances.png b/docs/figs/uniaxial-sensitivity-disturbances.png
similarity index 100%
rename from figs/uniaxial-sensitivity-disturbances.png
rename to docs/figs/uniaxial-sensitivity-disturbances.png
diff --git a/figs/uniaxial-sensitivity-force-dist.pdf b/docs/figs/uniaxial-sensitivity-force-dist.pdf
similarity index 100%
rename from figs/uniaxial-sensitivity-force-dist.pdf
rename to docs/figs/uniaxial-sensitivity-force-dist.pdf
diff --git a/figs/uniaxial-sensitivity-force-dist.png b/docs/figs/uniaxial-sensitivity-force-dist.png
similarity index 100%
rename from figs/uniaxial-sensitivity-force-dist.png
rename to docs/figs/uniaxial-sensitivity-force-dist.png
diff --git a/figs/uniaxial-sensitivity-vc-disturbances.pdf b/docs/figs/uniaxial-sensitivity-vc-disturbances.pdf
similarity index 100%
rename from figs/uniaxial-sensitivity-vc-disturbances.pdf
rename to docs/figs/uniaxial-sensitivity-vc-disturbances.pdf
diff --git a/figs/uniaxial-sensitivity-vc-disturbances.png b/docs/figs/uniaxial-sensitivity-vc-disturbances.png
similarity index 100%
rename from figs/uniaxial-sensitivity-vc-disturbances.png
rename to docs/figs/uniaxial-sensitivity-vc-disturbances.png
diff --git a/figs/uniaxial-sensitivity-vc-force-dist.pdf b/docs/figs/uniaxial-sensitivity-vc-force-dist.pdf
similarity index 100%
rename from figs/uniaxial-sensitivity-vc-force-dist.pdf
rename to docs/figs/uniaxial-sensitivity-vc-force-dist.pdf
diff --git a/figs/uniaxial-sensitivity-vc-force-dist.png b/docs/figs/uniaxial-sensitivity-vc-force-dist.png
similarity index 100%
rename from figs/uniaxial-sensitivity-vc-force-dist.png
rename to docs/figs/uniaxial-sensitivity-vc-force-dist.png
diff --git a/figs/uniaxial-vc-cas-dist.pdf b/docs/figs/uniaxial-vc-cas-dist.pdf
similarity index 100%
rename from figs/uniaxial-vc-cas-dist.pdf
rename to docs/figs/uniaxial-vc-cas-dist.pdf
diff --git a/figs/uniaxial-vc-cas-dist.png b/docs/figs/uniaxial-vc-cas-dist.png
similarity index 100%
rename from figs/uniaxial-vc-cas-dist.png
rename to docs/figs/uniaxial-vc-cas-dist.png
diff --git a/figs/uniaxial-vc-psd-dist.pdf b/docs/figs/uniaxial-vc-psd-dist.pdf
similarity index 100%
rename from figs/uniaxial-vc-psd-dist.pdf
rename to docs/figs/uniaxial-vc-psd-dist.pdf
diff --git a/figs/uniaxial-vc-psd-dist.png b/docs/figs/uniaxial-vc-psd-dist.png
similarity index 100%
rename from figs/uniaxial-vc-psd-dist.png
rename to docs/figs/uniaxial-vc-psd-dist.png
diff --git a/figs/uniaxial_cedrat_open_loop.pdf b/docs/figs/uniaxial_cedrat_open_loop.pdf
similarity index 100%
rename from figs/uniaxial_cedrat_open_loop.pdf
rename to docs/figs/uniaxial_cedrat_open_loop.pdf
diff --git a/figs/uniaxial_cedrat_open_loop.png b/docs/figs/uniaxial_cedrat_open_loop.png
similarity index 100%
rename from figs/uniaxial_cedrat_open_loop.png
rename to docs/figs/uniaxial_cedrat_open_loop.png
diff --git a/figs/uniaxial_cedrat_plant.pdf b/docs/figs/uniaxial_cedrat_plant.pdf
similarity index 100%
rename from figs/uniaxial_cedrat_plant.pdf
rename to docs/figs/uniaxial_cedrat_plant.pdf
diff --git a/figs/uniaxial_cedrat_plant.png b/docs/figs/uniaxial_cedrat_plant.png
similarity index 100%
rename from figs/uniaxial_cedrat_plant.png
rename to docs/figs/uniaxial_cedrat_plant.png
diff --git a/figs/uniaxial_dvf_loop_gain.pdf b/docs/figs/uniaxial_dvf_loop_gain.pdf
similarity index 100%
rename from figs/uniaxial_dvf_loop_gain.pdf
rename to docs/figs/uniaxial_dvf_loop_gain.pdf
diff --git a/figs/uniaxial_dvf_loop_gain.png b/docs/figs/uniaxial_dvf_loop_gain.png
similarity index 100%
rename from figs/uniaxial_dvf_loop_gain.png
rename to docs/figs/uniaxial_dvf_loop_gain.png
diff --git a/figs/uniaxial_dvf_plant.pdf b/docs/figs/uniaxial_dvf_plant.pdf
similarity index 100%
rename from figs/uniaxial_dvf_plant.pdf
rename to docs/figs/uniaxial_dvf_plant.pdf
diff --git a/figs/uniaxial_dvf_plant.png b/docs/figs/uniaxial_dvf_plant.png
similarity index 100%
rename from figs/uniaxial_dvf_plant.png
rename to docs/figs/uniaxial_dvf_plant.png
diff --git a/figs/uniaxial_iff_open_loop.pdf b/docs/figs/uniaxial_iff_open_loop.pdf
similarity index 100%
rename from figs/uniaxial_iff_open_loop.pdf
rename to docs/figs/uniaxial_iff_open_loop.pdf
diff --git a/figs/uniaxial_iff_open_loop.png b/docs/figs/uniaxial_iff_open_loop.png
similarity index 100%
rename from figs/uniaxial_iff_open_loop.png
rename to docs/figs/uniaxial_iff_open_loop.png
diff --git a/figs/uniaxial_iff_plant.pdf b/docs/figs/uniaxial_iff_plant.pdf
similarity index 100%
rename from figs/uniaxial_iff_plant.pdf
rename to docs/figs/uniaxial_iff_plant.pdf
diff --git a/figs/uniaxial_iff_plant.png b/docs/figs/uniaxial_iff_plant.png
similarity index 100%
rename from figs/uniaxial_iff_plant.png
rename to docs/figs/uniaxial_iff_plant.png
diff --git a/figs/uniaxial_iff_vc_open_loop.pdf b/docs/figs/uniaxial_iff_vc_open_loop.pdf
similarity index 100%
rename from figs/uniaxial_iff_vc_open_loop.pdf
rename to docs/figs/uniaxial_iff_vc_open_loop.pdf
diff --git a/figs/uniaxial_iff_vc_open_loop.png b/docs/figs/uniaxial_iff_vc_open_loop.png
similarity index 100%
rename from figs/uniaxial_iff_vc_open_loop.png
rename to docs/figs/uniaxial_iff_vc_open_loop.png
diff --git a/figs/uniaxial_plant_cedrat_damped.pdf b/docs/figs/uniaxial_plant_cedrat_damped.pdf
similarity index 100%
rename from figs/uniaxial_plant_cedrat_damped.pdf
rename to docs/figs/uniaxial_plant_cedrat_damped.pdf
diff --git a/figs/uniaxial_plant_cedrat_damped.png b/docs/figs/uniaxial_plant_cedrat_damped.png
similarity index 100%
rename from figs/uniaxial_plant_cedrat_damped.png
rename to docs/figs/uniaxial_plant_cedrat_damped.png
diff --git a/figs/uniaxial_plant_damped_comp.pdf b/docs/figs/uniaxial_plant_damped_comp.pdf
similarity index 100%
rename from figs/uniaxial_plant_damped_comp.pdf
rename to docs/figs/uniaxial_plant_damped_comp.pdf
diff --git a/figs/uniaxial_plant_damped_comp.png b/docs/figs/uniaxial_plant_damped_comp.png
similarity index 100%
rename from figs/uniaxial_plant_damped_comp.png
rename to docs/figs/uniaxial_plant_damped_comp.png
diff --git a/figs/uniaxial_plant_dvf_damped.pdf b/docs/figs/uniaxial_plant_dvf_damped.pdf
similarity index 100%
rename from figs/uniaxial_plant_dvf_damped.pdf
rename to docs/figs/uniaxial_plant_dvf_damped.pdf
diff --git a/figs/uniaxial_plant_dvf_damped.png b/docs/figs/uniaxial_plant_dvf_damped.png
similarity index 100%
rename from figs/uniaxial_plant_dvf_damped.png
rename to docs/figs/uniaxial_plant_dvf_damped.png
diff --git a/figs/uniaxial_plant_iff_damped.pdf b/docs/figs/uniaxial_plant_iff_damped.pdf
similarity index 100%
rename from figs/uniaxial_plant_iff_damped.pdf
rename to docs/figs/uniaxial_plant_iff_damped.pdf
diff --git a/figs/uniaxial_plant_iff_damped.png b/docs/figs/uniaxial_plant_iff_damped.png
similarity index 100%
rename from figs/uniaxial_plant_iff_damped.png
rename to docs/figs/uniaxial_plant_iff_damped.png
diff --git a/figs/uniaxial_plant_rmc_damped.pdf b/docs/figs/uniaxial_plant_rmc_damped.pdf
similarity index 100%
rename from figs/uniaxial_plant_rmc_damped.pdf
rename to docs/figs/uniaxial_plant_rmc_damped.pdf
diff --git a/figs/uniaxial_plant_rmc_damped.png b/docs/figs/uniaxial_plant_rmc_damped.png
similarity index 100%
rename from figs/uniaxial_plant_rmc_damped.png
rename to docs/figs/uniaxial_plant_rmc_damped.png
diff --git a/figs/uniaxial_rmc_open_loop.pdf b/docs/figs/uniaxial_rmc_open_loop.pdf
similarity index 100%
rename from figs/uniaxial_rmc_open_loop.pdf
rename to docs/figs/uniaxial_rmc_open_loop.pdf
diff --git a/figs/uniaxial_rmc_open_loop.png b/docs/figs/uniaxial_rmc_open_loop.png
similarity index 100%
rename from figs/uniaxial_rmc_open_loop.png
rename to docs/figs/uniaxial_rmc_open_loop.png
diff --git a/figs/uniaxial_rmc_plant.pdf b/docs/figs/uniaxial_rmc_plant.pdf
similarity index 100%
rename from figs/uniaxial_rmc_plant.pdf
rename to docs/figs/uniaxial_rmc_plant.pdf
diff --git a/figs/uniaxial_rmc_plant.png b/docs/figs/uniaxial_rmc_plant.png
similarity index 100%
rename from figs/uniaxial_rmc_plant.png
rename to docs/figs/uniaxial_rmc_plant.png
diff --git a/figs/uniaxial_sensitivity_direct_force.pdf b/docs/figs/uniaxial_sensitivity_direct_force.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_direct_force.pdf
rename to docs/figs/uniaxial_sensitivity_direct_force.pdf
diff --git a/figs/uniaxial_sensitivity_direct_force.png b/docs/figs/uniaxial_sensitivity_direct_force.png
similarity index 100%
rename from figs/uniaxial_sensitivity_direct_force.png
rename to docs/figs/uniaxial_sensitivity_direct_force.png
diff --git a/figs/uniaxial_sensitivity_dist_cedrat.pdf b/docs/figs/uniaxial_sensitivity_dist_cedrat.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_cedrat.pdf
rename to docs/figs/uniaxial_sensitivity_dist_cedrat.pdf
diff --git a/figs/uniaxial_sensitivity_dist_cedrat.png b/docs/figs/uniaxial_sensitivity_dist_cedrat.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_cedrat.png
rename to docs/figs/uniaxial_sensitivity_dist_cedrat.png
diff --git a/figs/uniaxial_sensitivity_dist_comp.pdf b/docs/figs/uniaxial_sensitivity_dist_comp.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_comp.pdf
rename to docs/figs/uniaxial_sensitivity_dist_comp.pdf
diff --git a/figs/uniaxial_sensitivity_dist_comp.png b/docs/figs/uniaxial_sensitivity_dist_comp.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_comp.png
rename to docs/figs/uniaxial_sensitivity_dist_comp.png
diff --git a/figs/uniaxial_sensitivity_dist_dvf.pdf b/docs/figs/uniaxial_sensitivity_dist_dvf.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_dvf.pdf
rename to docs/figs/uniaxial_sensitivity_dist_dvf.pdf
diff --git a/figs/uniaxial_sensitivity_dist_dvf.png b/docs/figs/uniaxial_sensitivity_dist_dvf.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_dvf.png
rename to docs/figs/uniaxial_sensitivity_dist_dvf.png
diff --git a/figs/uniaxial_sensitivity_dist_iff.pdf b/docs/figs/uniaxial_sensitivity_dist_iff.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_iff.pdf
rename to docs/figs/uniaxial_sensitivity_dist_iff.pdf
diff --git a/figs/uniaxial_sensitivity_dist_iff.png b/docs/figs/uniaxial_sensitivity_dist_iff.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_iff.png
rename to docs/figs/uniaxial_sensitivity_dist_iff.png
diff --git a/figs/uniaxial_sensitivity_dist_rmc.pdf b/docs/figs/uniaxial_sensitivity_dist_rmc.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_rmc.pdf
rename to docs/figs/uniaxial_sensitivity_dist_rmc.pdf
diff --git a/figs/uniaxial_sensitivity_dist_rmc.png b/docs/figs/uniaxial_sensitivity_dist_rmc.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_rmc.png
rename to docs/figs/uniaxial_sensitivity_dist_rmc.png
diff --git a/figs/uniaxial_sensitivity_dist_stages_cedrat.pdf b/docs/figs/uniaxial_sensitivity_dist_stages_cedrat.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_cedrat.pdf
rename to docs/figs/uniaxial_sensitivity_dist_stages_cedrat.pdf
diff --git a/figs/uniaxial_sensitivity_dist_stages_cedrat.png b/docs/figs/uniaxial_sensitivity_dist_stages_cedrat.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_cedrat.png
rename to docs/figs/uniaxial_sensitivity_dist_stages_cedrat.png
diff --git a/figs/uniaxial_sensitivity_dist_stages_comp.pdf b/docs/figs/uniaxial_sensitivity_dist_stages_comp.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_comp.pdf
rename to docs/figs/uniaxial_sensitivity_dist_stages_comp.pdf
diff --git a/figs/uniaxial_sensitivity_dist_stages_comp.png b/docs/figs/uniaxial_sensitivity_dist_stages_comp.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_comp.png
rename to docs/figs/uniaxial_sensitivity_dist_stages_comp.png
diff --git a/figs/uniaxial_sensitivity_dist_stages_dvf.pdf b/docs/figs/uniaxial_sensitivity_dist_stages_dvf.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_dvf.pdf
rename to docs/figs/uniaxial_sensitivity_dist_stages_dvf.pdf
diff --git a/figs/uniaxial_sensitivity_dist_stages_dvf.png b/docs/figs/uniaxial_sensitivity_dist_stages_dvf.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_dvf.png
rename to docs/figs/uniaxial_sensitivity_dist_stages_dvf.png
diff --git a/figs/uniaxial_sensitivity_dist_stages_iff.pdf b/docs/figs/uniaxial_sensitivity_dist_stages_iff.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_iff.pdf
rename to docs/figs/uniaxial_sensitivity_dist_stages_iff.pdf
diff --git a/figs/uniaxial_sensitivity_dist_stages_iff.png b/docs/figs/uniaxial_sensitivity_dist_stages_iff.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_iff.png
rename to docs/figs/uniaxial_sensitivity_dist_stages_iff.png
diff --git a/figs/uniaxial_sensitivity_dist_stages_rmc.pdf b/docs/figs/uniaxial_sensitivity_dist_stages_rmc.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_rmc.pdf
rename to docs/figs/uniaxial_sensitivity_dist_stages_rmc.pdf
diff --git a/figs/uniaxial_sensitivity_dist_stages_rmc.png b/docs/figs/uniaxial_sensitivity_dist_stages_rmc.png
similarity index 100%
rename from figs/uniaxial_sensitivity_dist_stages_rmc.png
rename to docs/figs/uniaxial_sensitivity_dist_stages_rmc.png
diff --git a/figs/uniaxial_sensitivity_frz.pdf b/docs/figs/uniaxial_sensitivity_frz.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_frz.pdf
rename to docs/figs/uniaxial_sensitivity_frz.pdf
diff --git a/figs/uniaxial_sensitivity_frz.png b/docs/figs/uniaxial_sensitivity_frz.png
similarity index 100%
rename from figs/uniaxial_sensitivity_frz.png
rename to docs/figs/uniaxial_sensitivity_frz.png
diff --git a/figs/uniaxial_sensitivity_fty.pdf b/docs/figs/uniaxial_sensitivity_fty.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_fty.pdf
rename to docs/figs/uniaxial_sensitivity_fty.pdf
diff --git a/figs/uniaxial_sensitivity_fty.png b/docs/figs/uniaxial_sensitivity_fty.png
similarity index 100%
rename from figs/uniaxial_sensitivity_fty.png
rename to docs/figs/uniaxial_sensitivity_fty.png
diff --git a/figs/uniaxial_sensitivity_ground_motion.pdf b/docs/figs/uniaxial_sensitivity_ground_motion.pdf
similarity index 100%
rename from figs/uniaxial_sensitivity_ground_motion.pdf
rename to docs/figs/uniaxial_sensitivity_ground_motion.pdf
diff --git a/figs/uniaxial_sensitivity_ground_motion.png b/docs/figs/uniaxial_sensitivity_ground_motion.png
similarity index 100%
rename from figs/uniaxial_sensitivity_ground_motion.png
rename to docs/figs/uniaxial_sensitivity_ground_motion.png
diff --git a/figs/variation_zeros_active_damping_plants.pdf b/docs/figs/variation_zeros_active_damping_plants.pdf
similarity index 100%
rename from figs/variation_zeros_active_damping_plants.pdf
rename to docs/figs/variation_zeros_active_damping_plants.pdf
diff --git a/figs/variation_zeros_active_damping_plants.png b/docs/figs/variation_zeros_active_damping_plants.png
similarity index 100%
rename from figs/variation_zeros_active_damping_plants.png
rename to docs/figs/variation_zeros_active_damping_plants.png
diff --git a/functions/index.html b/docs/functions.html
similarity index 86%
rename from functions/index.html
rename to docs/functions.html
index 5955185..a2193ab 100644
--- a/functions/index.html
+++ b/docs/functions.html
@@ -1,10 +1,11 @@
+
-
+
Matlab Functions used for the NASS Project
@@ -259,21 +260,20 @@ for the JavaScript code in this tag.
function[L] = inverseKinematicsHexapod(hexapod, AP, ARB)
-% inverseKinematicsHexapod - Compute the initial position of each leg to have the wanted Hexapod's position
-%
-% Syntax: inverseKinematicsHexapod(hexapod, AP, ARB)
-%
-% Inputs:
-% - hexapod - Hexapod object containing the geometry of the hexapod
-% - AP - Position vector of point OB expressed in frame {A} in [m]
-% - ARB - Rotation Matrix expressed in frame {A}
-
- % Wanted Length of the hexapod's legs [m]
- L = zeros(6, 1);
-
- fori = 1:length(L)
- Bbi = hexapod.pos_top_tranform(i, :)'- 1e-3*[0 ; 0 ; hexapod.TP.thickness+hexapod.Leg.sphere.top+hexapod.SP.thickness.top+hexapod.jacobian]; % [m]
- Aai = hexapod.pos_base(i, :)'+ 1e-3*[0 ; 0 ; hexapod.BP.thickness+hexapod.Leg.sphere.bottom+hexapod.SP.thickness.bottom-hexapod.h-hexapod.jacobian]; % [m]
-
- L(i) = sqrt(AP'*AP + Bbi'*Bbi + Aai'*Aai - 2*AP'*Aai + 2*AP'*(ARB*Bbi) - 2*(ARB*Bbi)'*Aai);
- end
-end
-
-
-
-
-
-
-
5 computeReferencePose
-
-
-
+
@@ -648,7 +611,7 @@ This Matlab function is accessible here
0 0 1 Dn(3) ;
0 0 0 1 ];
- Rn(1:3, 1:3) = Rnx*Rny*Rnz;
+ Rn(1:3, 1:3) = Rnz*Rny*Rnx;
%% Total Homogeneous transformation
WTr = Rty*Rry*Rrz*Rh*Rn;
@@ -657,11 +620,11 @@ This Matlab function is accessible here
-
-
6 Compute the Sample Position Error w.r.t. the NASS
-
+
+
5 Compute the Sample Position Error w.r.t. the NASS
+
-
+
@@ -696,7 +659,7 @@ MTr = [WTm(1:3,1:3)<
Author: Dehaeze Thomas
-
Created: 2020-01-29 mer. 20:25
+
Created: 2020-02-25 mar. 18:08
diff --git a/hac_lac/index.html b/docs/hac_lac.html
similarity index 80%
rename from hac_lac/index.html
rename to docs/hac_lac.html
index 28709ea..375a2e3 100644
--- a/hac_lac/index.html
+++ b/docs/hac_lac.html
@@ -1,10 +1,11 @@
+
-
+
HAC-LAC applied on the Simscape Model
@@ -259,28 +260,28 @@ for the JavaScript code in this tag.
We initialize elements for the tomography experiment.
@@ -460,8 +454,8 @@ We initialize elements for the tomography experiment.
We change the simulation stop time.