Rework few figures

This commit is contained in:
Thomas Dehaeze 2020-06-24 11:15:40 +02:00
parent feb91387f2
commit ae6c88fae4
14 changed files with 0 additions and 30 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

After

Width:  |  Height:  |  Size: 301 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 315 KiB

After

Width:  |  Height:  |  Size: 315 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 564 KiB

After

Width:  |  Height:  |  Size: 564 KiB

Binary file not shown.

BIN
inkscape/system.svg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
inkscape/system_dvf.pdf Normal file

Binary file not shown.

BIN
inkscape/system_dvf.svg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -2475,16 +2475,6 @@ The obtained damping ratio and control are shown below.
Kiff = opt_gain_iff/(wi + s)*tf(eye(2));
#+end_src
#+begin_src matlab
%% Name of the Simulink File
mdl = 'rotating_frame';
%% Input/Output definition
clear io; io_i = 1;
io(io_i) = linio([mdl, '/dw'], 1, 'input'); io_i = io_i + 1;
io(io_i) = linio([mdl, '/Meas'], 1, 'output'); io_i = io_i + 1;
#+end_src
#+begin_src matlab
Tiff = linearize(mdl, io, 0);
@ -2507,16 +2497,6 @@ The obtained damping ratio and control are shown below.
Kdvf = tf(zeros(2));
#+end_src
#+begin_src matlab
%% Name of the Simulink File
mdl = 'rotating_frame';
%% Input/Output definition
clear io; io_i = 1;
io(io_i) = linio([mdl, '/dw'], 1, 'input'); io_i = io_i + 1;
io(io_i) = linio([mdl, '/Meas'], 1, 'output'); io_i = io_i + 1;
#+end_src
#+begin_src matlab
Tiff_kp = linearize(mdl, io, 0);
@ -2537,16 +2517,6 @@ The obtained damping ratio and control are shown below.
Kdvf = opt_gain_kp*tf(eye(2));
#+end_src
#+begin_src matlab
%% Name of the Simulink File
mdl = 'rotating_frame';
%% Input/Output definition
clear io; io_i = 1;
io(io_i) = linio([mdl, '/dw'], 1, 'input'); io_i = io_i + 1;
io(io_i) = linio([mdl, '/Meas'], 1, 'output'); io_i = io_i + 1;
#+end_src
#+begin_src matlab
Tdvf = linearize(mdl, io, 0);