Processing math: 100%

« Previous
Next »

Polynomial approximation of the phase error

Taylor series expansion for small Δt gives a formula that is easier to understand:

>>> from sympy import *
>>> dt, w = symbols('dt w')
>>> w_tilde = asin(w*dt/2).series(dt, 0, 4)*2/dt
>>> print w_tilde
(dt*w + dt**3*w**3/24 + O(dt**4))/dt  # note the final "/dt"
˜ω=ω(1+124ω2Δt2)+O(Δt3) The numerical frequency is too large (to fast oscillations).

« Previous
Next »