AbigailRocketblast
New member
- Joined
- Oct 1, 2013
- Messages
- 11
I have 2 accelerometers mounted at right angles to each other.
I get a stream of data from each one going into my computer program. Ax and Ay.
Each accelerometer has a calibration factor to enable me to convert to engineering units. Fx and Fy.
Using Pythagorus I calculate the vector acceleration V.
V = sqrt ( (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy) )
What I need to calculate is the equivalent calibration factor of the vector - ie Fv.
Initially I thought that it would simply be using Pythagorus and Fx and Fy, but this doesn't work. I thin started rearranging fomulas to try to work it out ...
we know that:
(Av.Fv)(Av.Fv) = (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy)
same as:
(Av.Av)(Fv.Fv) = (Ax.Fx)(Ax.Fx) + Ay.Fy)(Ay.Fy)
and:
Av.Av = Ax.Ax + Ay.Ay
by combining those two formulas, is it possible to rearrange to solve for Fv?
This is what I have tried so far ... replacing Av.Av on the left
(Ax.Ax + Ay.Ay)(Fv.Fv) = (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy)
then I kinda get lost ... am I on the right track?
Is this even possible?
Thank you.
I get a stream of data from each one going into my computer program. Ax and Ay.
Each accelerometer has a calibration factor to enable me to convert to engineering units. Fx and Fy.
Using Pythagorus I calculate the vector acceleration V.
V = sqrt ( (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy) )
What I need to calculate is the equivalent calibration factor of the vector - ie Fv.
Initially I thought that it would simply be using Pythagorus and Fx and Fy, but this doesn't work. I thin started rearranging fomulas to try to work it out ...
we know that:
(Av.Fv)(Av.Fv) = (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy)
same as:
(Av.Av)(Fv.Fv) = (Ax.Fx)(Ax.Fx) + Ay.Fy)(Ay.Fy)
and:
Av.Av = Ax.Ax + Ay.Ay
by combining those two formulas, is it possible to rearrange to solve for Fv?
This is what I have tried so far ... replacing Av.Av on the left
(Ax.Ax + Ay.Ay)(Fv.Fv) = (Ax.Fx)(Ax.Fx) + (Ay.Fy)(Ay.Fy)
then I kinda get lost ... am I on the right track?
Is this even possible?
Thank you.
Last edited: