Converting continuous filters to discrete implementation

Here’s a trick to quickly convert a continuous, strictly proper transfer function into pseudocode for a discrete time implementation.  Let’s start with a first order low pass filter:

Y(s)U(s)=1τs+1

The first step is to cross multiply the terms (for simplicity I’ll omit the Y(s) and U(s) for the rest of this post).

τsY+Y=UτY˙+Y=U

Then solve the transfer function for the highest ordered derivative of Y (meaning the Y term with the most above it), then integrate both sides of the equation until Y (with no dots) becomes the left hand side.  The integration is with respect to time, but I’ve omitted that for clarity in the expression.

Y˙=UYτY˙=UYτY=UYτ

Now replace the =() with a +=dt() to achieve the following pseudocode

Y+=dt(UYτ)

Here, dt is the time between filter updates, and Y is a static variable whose value persists between filter updates.  What we did is solve for the derivative of the filter output (Y˙) and then integrated the derivative using Euler’s method to get the filter’s software implementation.

We can do the same thing with a second order filter:

YU=ωn2s2+2ζωns+ωn2

Y¨+2ζωnY˙+ωn2Y=ωn2UY¨=2ζωnY˙+ωn2(UY)

Here we’ve again solved for the highest ordered derivative of Y.  Now what we’ll do is integrate both sides of the equation until we are again left with only Y on the left hand side.

Y¨=2ζωnY˙+ωn2(UY)Y˙=2ζωnY+ωn2(UY)

Y˙=(2ζωnY+ωn2(UY))Y=(2ζωnY+ωn2(UY))

Let’s break the previous expression into two parts so only one () appears on the right hand of any equals sign.

k=ωn2(UY)

Y=(2ζωnY+k)

Now we pull the same trick we did before by replacing each =() with +=dt() to arrive at the software pseudocode.

k+=dt(ωn2(UY))

Y+=dt(2ζωnY+k)

Now we have two static variables, k and Y, that each represent a separate state variable of the second order filter.

As an exercise for the reader (oh man, did I really just say that?), show that the second order band pass filter

YU=2ζωnss2+2ζωns+ωn2

has the following pseudocode implementation

k+=dt(ωn2Y)

Y+=dt(k+2ζωn(UY))

1 thought on “Converting continuous filters to discrete implementation

  1. This is a really good site post, im delighted I came across it. Ill be back down the track to check out other posts that

Comments are closed.