[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: More Fun With Filters



PureBytes Links

Trading Reference Links

Alex,

> The only problem that remains is the fact that the critically damped
> filter blows up below a certain value of L.  For the 2-pass critical
> damping filter, it blows up when L<=4.6, and starts ringing around L=9.2,
> so you wouldn't want the length to be less than 9.2.  There's some
> adjustment that needs to be put in the formula somewhere but I haven't
> figured out what it is.
>

I think the problem is here:
	Wc = tangent(180 * cc / length); {pi = 180 degrees in EL}
at pi or n*pi (180 or n*180) the tangent becomes 0 and then everything else 
hereafter becomes zero too:
	K2=0,  a0=0,  a1=0, a2=0, b1=0.36 and b2=0.64

Calli