diff --git a/actuators-sensors/index.html b/actuators-sensors/index.html index e00805f..5c2d1a0 100644 --- a/actuators-sensors/index.html +++ b/actuators-sensors/index.html @@ -3,12 +3,12 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Equipment - + - - - - + + + + + -
+
+ UP + | + HOME +

Equipment

-

-Back to main page. -

- -
-

1 Sensors

+
+

1 Sensors

-
-

1.1 Accelerometers

+
+

1.1 Accelerometers

-
-

1.1.1 Wireless Accelerometers

+
+

1.1.1 Wireless Accelerometers

-
-

1.1.2 Suppliers

+
+

1.1.2 Suppliers

-
-

1.2 Geophones

+
+

1.2 Geophones

-
-

1.2.1 Suppliers

+
+

1.2.1 Suppliers

-
-

1.3 Force Sensors

+
+

1.3 Force Sensors

-
-

1.4 Interferometers

-
+
+

1.4 Strain Gauge

-
-

1.4.1 Suppliers

-
+
+

1.5 Interferometers

+
+
+
+

1.5.1 Suppliers

+
@@ -400,25 +424,28 @@ for the JavaScript code in this tag.
-
-

1.5 Bibliography

- -
-

2 Actuators

+
+

2 Actuators

-
-

2.1 Piezoelectric

+
+

2.1 Piezoelectric

-
-

2.1.1 Suppliers

+
+

2.1.1 Suppliers

-
-

2.2 Voice Coil

+ -
-

3 Positioning Stages

+
+

3 Measurement System / Acquisition System

+
+ +
+ +
+

4 Control System

+
+

+Dspace, Speedgoat +

+
+
+ +
+

5 Positioning Stages

+
+
+ -
-

4 Amplifiers

-
+
+

5.2 Translation/Rotation Stage

+ -
-

4.1 Current Amplifiers

-
- -
-

4.2 Voltage Amplifiers

-
-

5 ESRF Equipment

-
+
+

6 Amplifiers

+
-
-

5.1 Geophones

-
+
+

6.1 Current Amplifiers

-
-

5.1.1 L-28LB

-
+ +
+

6.2 Voltage Amplifiers

+
+
+ +
+

7 ESRF Equipment

+
+
+
+

7.1 Geophones

+
+
+
+

7.1.1 L-28LB

+
-
+

L28LB.png

Figure 1: Picture of the L-28LB Geophone

- +
@@ -524,18 +621,18 @@ for the JavaScript code in this tag.
Table 1: L-28LB Parameters

-We define the parameters of the geophone and we plot its bode plot (figure 2). +We define the parameters of the geophone and we plot its bode plot (figure 2).

-
w0 = 4.5*2*pi; % [rad/s]
-ksi = 0.38;
-G0 = 31.3; % [V/(m/s)]
-[Omitted long matching line]
+
w0 = 4.5*2*pi; % [rad/s]
+ksi = 0.38;
+G0 = 31.3; % [V/(m/s)]
+G = G0*(s/w0)^2/((s/w0)^2 + 2*ksi*(s/w0) + 1);
 
-
+

L28LB_bode_plot.png

Figure 2: Bode plot of the L-28LB Geophone

@@ -543,22 +640,22 @@ G0 = 31.3
-
-

5.1.2 L-4C

-
+
+

7.1.2 L-4C

+
-
+

L4C.png

Figure 3: Picture of the L-4C Geophone

- +
@@ -589,48 +686,57 @@ The transfer function from the velocity and the measured voltage is defined belo

-Its bode plot is shown on figure 4. +Its bode plot is shown on figure 4.

-
w0 = 2*pi; % [rad/s]
-ksi = 0.28;
-G0 = 276.8; % [V/(m/s)]
-[Omitted long matching line]
+
w0 = 2*pi; % [rad/s]
+ksi = 0.28;
+G0 = 276.8; % [V/(m/s)]
+G = G0*(s/w0)^2/((s/w0)^2 + 2*ksi*(s/w0) + 1);
 
-
+

L4C_bode_plot.png

Figure 4: Bode plot of the L4C Geophone

+ + -
-

5.2 Accelerometers

-
+
+

7.2 Accelerometers

+
-
-

5.2.1 Pieozoelectric acc. 356b18 - 3 axis

-
+
+

7.2.1 Pieozoelectric acc. 356b18 - 3 axis

+
-
+

356b18.jpg

Figure 5: Pieozoelectric acc. 356b18 - 3 axis

-
Table 2: L4C Parameters
+
@@ -668,23 +774,23 @@ G0 = 276.8 -
-

5.2.2 Ceramic acc. 393B05 - 1 axis

-
+
+

7.2.2 Ceramic acc. 393B05 - 1 axis

+
-
+

393b05.jpg

Figure 6: Ceramic acc. 393B05 - 1 axis

-
Table 3: 356b18 Parameters
+
@@ -722,11 +828,19 @@ G0 = 276.8 +
+

7.3 Modal analysis

+ +
-

Author: Thomas Dehaeze

-

Created: 2019-03-19 mar. 16:44

+

Author: Dehaeze Thomas

+

Created: 2019-07-05 ven. 11:41

Validate

diff --git a/actuators-sensors/index.org b/actuators-sensors/index.org index 31f1f17..911fdb1 100644 --- a/actuators-sensors/index.org +++ b/actuators-sensors/index.org @@ -133,13 +133,13 @@ We define the parameters of the geophone and we plot its bode plot (figure [[fig freqs = logspace(-1, 2, 1000); figure; - ax1 = subaxis(2,1,1); + ax1 = subplot(2,1,1); plot(freqs, abs(squeeze(freqresp(G, freqs, 'Hz')))); set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log'); set(gca, 'XTickLabel',[]); ylabel('Magnitude [V/(m/s)]'); - ax2 = subaxis(2,1,2); + ax2 = subplot(2,1,2); plot(freqs, 180/pi*angle(squeeze(freqresp(G, freqs, 'Hz')))); set(gca,'xscale','log'); yticks(-180:90:180); @@ -197,13 +197,13 @@ Its bode plot is shown on figure [[fig:L4C_bode_plot]]. freqs = logspace(-2, 2, 1000); figure; - ax1 = subaxis(2,1,1); + ax1 = subplot(2,1,1); plot(freqs, abs(squeeze(freqresp(G, freqs, 'Hz')))); set(gca, 'XScale', 'log'); set(gca, 'YScale', 'log'); set(gca, 'XTickLabel',[]); ylabel('Magnitude [V/(m/s)]'); - ax2 = subaxis(2,1,2); + ax2 = subplot(2,1,2); plot(freqs, 180/pi*angle(squeeze(freqresp(G, freqs, 'Hz')))); set(gca,'xscale','log'); yticks(-180:90:180);
Table 4: 393B05 Parameters