Next: Enveloping
Up: Time domain analysis
Previous: Time domain differentiation (e.g.
Contents
If you want to convert acceleration to velocity, etc., cumtrapz()
in matlab is probably what you want (this is second order trapezoidal
integration). The only catch is that if you are integrating real vibration
data, there is almost certainly a small DC offset. No matter how good
your AC coupling is, it is not perfect. There will be a tiny non-zero
offset at 0 Hz. When integrated, this becomes huge in the output signal.
Therefore you will almost certainly need to high pass filter your
data after integration.
$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.