diff --git a/README.md b/README.md index 64c271f..06b309c 100644 --- a/README.md +++ b/README.md @@ -12,25 +12,21 @@ Produces NMEA-0183 XDR sentences over USB (See NmeaXDR.h). Baud rate: 115200. Mount atomS3 with LCD facing up. -## Estimating Wave Height using IMU +## Estimating Boat Heave using IMU Estimate vessel heave (vertical displacement) in ocean waves using IMU on esp32 -The method for estimating wave height and heave from a moving boat implemented here is using the following algorithm: +The method for estimating wave height and heave from a moving boat implemented here is using the following on-line algorithm: -1. Estimate observed wave frequency using vertical boat acceleration measurements from IMU with Aranovskiy on-line filter. A frequency of acceleration sampling is important. This code seems able to achieve about 250Hz acceleration sampling from MPU6886. Lower frequencies wouldn’t give reasonable results from Aranovskiy filter. -1. Assume the waves follow trochoidal model. Trochoidal wave would still be observed as trochoidal from a vessel moving with constant speed. I.e. vertical movement is harmonic over time -1. Calculate observed wave period and calculate wave length using trochoidal wave model. -1. In trochoidal model horizontal wave displacement would be simply proportional to measured vertical acceleration. Doppler effect has no impact on displacement (amplitude). Although though it does on observed wave frequency and vertical acceleration in it. -1. Calculate the coefficient for previous step using known wave length in trochoidal model. -1. This gives a simple formula to produce vertical displacement from measured vertical acceleration. Valid in the considered models even by observations from a moving vessel (assuming speed doesn’t change much) -1. So this method avoids double integration of acceleration. It approximates a wave with trochoidal wave parameterized by two variables (frequency and max vertical acceleration in it) by observations from IMU on a moving boat. -1. There is another way to use Kalman filter (with drift correction) which I might add later. See: https://bareboat-necessities.github.io/my-bareboat/bareboat-math.html -However due to high accelerometer noise and low sample frequency scaling of heave is an issue. Plugging in some values periodically from trochoidal model to create sensor fusion will make it more accurate. +1. Sample MPU6886 3D acceleration and 3D gyroscope (angular velocities) measurements at about 250 Hz. +2. Estimate attitude and get attitude quaternion using Mahony agorithm. Using acceleration and gyroscope is enough. No magnetometer required because we only interested vertical acceleration for the next steps. +3. Double integrate vertical acceleration into vertical displacement using specially designed Kalman filter which corrects for integral drift in wave and corrects for the constant accelerometer bias. +4. Estimate observed heave frequency with Aranovskiy on-line filter. The correction for accelerometer bias is important for this step. +5. Smooth frequency produced by Aranovskiy filter with Kalman smoother. +6. Use another specially designed Kalman filter knowing the frequency and fusing model with trochoidal wave model to double integrate vertical acceleration. Assuming convergence of frequency this method would give real-time phase correction of heave compared to the first Kalman method. Doppler effect due to a boat moving relating to waves has no impact on displacement amplitude. ## Implementation Notes -* Tilt compensation. No magnetometer needed as we only need vertical projection of acceleation. Mahony algorithm using accel and gyro (without mag) is enough. Quaternion rotation is done for esimating vertical acceleration -* Rolling min/max algorithm with window of about three wave periods samples to produce wave height measurement. +* Rolling min/max algorithm with window of about couple wave periods samples to produce wave height measurement. Algorithm: https://github.com/lemire/runningmaxmin from Daniel Lemire paper, and improvements from: https://github.com/EvanBalster/STL_mono_wedge