Renamed the active damping file

This commit is contained in:
Thomas Dehaeze 2020-03-23 09:55:10 +01:00
parent 057442db23
commit 161595e824
3 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1832,7 +1832,7 @@ We initialize all the stages with the default parameters.
We set the IFF controller.
#+begin_src matlab
load('./mat/active_damping_K_iff.mat', 'K_iff');
initializeController('type', 'iff', 'K', K_iff);
initializeController('type', 'iff');
#+end_src
We identify the dynamics of the system using the =linearize= function.
@ -2023,7 +2023,7 @@ We initialize elements for the tomography experiment.
We set the IFF controller.
#+begin_src matlab
load('./mat/active_damping_K_iff.mat', 'K_iff');
initializeController('type', 'iff', 'K', K_iff);
initializeController('type', 'iff');
#+end_src
We change the simulation stop time.
@ -2312,7 +2312,7 @@ We initialize all the stages with the default parameters.
We set the DVF controller.
#+begin_src matlab
load('./mat/active_damping_K_dvf.mat', 'K_dvf');
initializeController('type', 'dvf', 'K', K_dvf);
initializeController('type', 'dvf');
#+end_src
We identify the dynamics of the system using the =linearize= function.
@ -2503,7 +2503,7 @@ We initialize elements for the tomography experiment.
We set the DVF controller.
#+begin_src matlab
load('./mat/active_damping_K_dvf.mat', 'K_dvf');
initializeController('type', 'dvf', 'K', K_dvf);
initializeController('type', 'dvf');
#+end_src
We change the simulation stop time.
@ -2787,7 +2787,7 @@ We initialize all the stages with the default parameters.
We set the Inertial controller.
#+begin_src matlab
load('./mat/active_damping_K_ine.mat', 'K_ine');
initializeController('type', 'ine', 'K', K_ine);
initializeController('type', 'ine');
#+end_src
We identify the dynamics of the system using the =linearize= function.