Next: Vold-Kalman filtering
Up: Order tracking
Previous: STFT methods
Contents
The frequency shift method multiplies the vibration signal with a
reference sine wave to shift a signal of interest down to a DC signal.
For example, assume the that signal of interest is f(t) = A * cos(w
*t) and we have a reference signal r(t) = cos(w *t). Then using
basic trig identities (or complex math) we have f(t) * r(t) = (A/2)
+ (A/2)cos(2 w t). Now, if we apply a low pass filter, we get rid
of the 2*w component and leave only the DC component. This method
is shown schematically in figure 35
This method has the advantage that it is relatively easy to do in
real time. So-called ``lock-in amplifiers'' use this method for
real-time tracking. A disadvantage is that only one frequency is available.
For example, if you wanted both a signal and it's second harmonic,
you need to do the calculation twice. With some of the other methods,
higher harmonics are available ``for free''.
Figure 35:
Next: Vold-Kalman filtering
Up: Order tracking
Previous: STFT methods
Contents
$username="comment";
$password="12345aa";
$database="commentsdb1";
$link = mysql_connect('mechanicalvibrationc.domaincommysql.com', 'comments', $password);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
@mysql_select_db($database) or die( "Unable to select database");
$query = "SELECT * FROM `comments` WHERE URL='$URL'";
#echo "query is " . $query;
$result = mysql_query($query);
mysql_close();
while($row = mysql_fetch_array($result)) {
echo "User " . $row['Name'] . " Posted on " . $row['DateTime'];
echo "
";
echo $row['Comment'];
echo "
";
}
echo "
";
?>
Leave a comment on this page:
This work by Daniel Kiracofe (daniel dot kiracofe at gmail dot com)
is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.