If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Zero Delay Feedback Filter
Re: Zero Delay Feedback Filter
It goes down at around 18kHz at SR/2=22k.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
Feel free to donate. Thank you for your contribution.
- tester
- Posts: 1786
- Joined: Wed Jan 18, 2012 10:52 pm
- Location: Poland, internet
Re: Zero Delay Feedback Filter
tester wrote:It goes down at around 18kHz at SR/2=22k.
KG_is_back wrote:You may put stream min just before the actual ZDF code block with the cutoff connected and value close to 1 in the other (like 0.9999) to prevent the cutoff from exceeding that point.
JUST BEFORE the CODE block. that is inside the filter module.
- KG_is_back
- Posts: 1196
- Joined: Tue Oct 22, 2013 5:43 pm
- Location: Slovakia
Re: Zero Delay Feedback Filter
I did so. Just before the code module. After multiplications. Yes, cutoff node. Yes, resonance node is not zero.
I don't know, if it works on your machinery, then maybe I left something else in the schematic, that hangs the whole audio part.
I don't know, if it works on your machinery, then maybe I left something else in the schematic, that hangs the whole audio part.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
Feel free to donate. Thank you for your contribution.
- tester
- Posts: 1786
- Joined: Wed Jan 18, 2012 10:52 pm
- Location: Poland, internet
Re: Zero Delay Feedback Filter
try lower values (like 0.9 instead of 0.999). Maybe near the nyquist the filter still becomes unstable. If that doesn't help, then I do not know what's wrong... Still filters seem like black magic to me...
- KG_is_back
- Posts: 1196
- Joined: Tue Oct 22, 2013 5:43 pm
- Location: Slovakia
Re: Zero Delay Feedback Filter
Hmm... Now it seems to work... At max=1. Must been some sily module somewhere blocking the whole stuff. Thanks for help KG.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
Feel free to donate. Thank you for your contribution.
- tester
- Posts: 1786
- Joined: Wed Jan 18, 2012 10:52 pm
- Location: Poland, internet
Re: Zero Delay Feedback Filter
Sorry for bringing up the old topic, but what's the Z-transform of a ZDF filter given frequency, Q and gain factors for HPF, BPF and LPF bands?
My problem: I have an automated (cutoffs are controlled by pitch form midi or audio) EQ made of series of ZDF filters (each has gain for each of 3 bands, to achieve peaking, shelving curves etc.). I need to dynamically display the EQ curve. FFT doesn't cut it (either I need very large windows to display low end smoothly, but then I get like 3FPS because of pointless high-end data).
Flowstone has a prim called "biquad frequency response" which supposedly uses Z-transform to calculate log-scaled frequency graph form the coefficients. I either need similar module to work for ZDF or a module that calculates biquad coefficients from f,q and gains for high/band/low pass.
My problem: I have an automated (cutoffs are controlled by pitch form midi or audio) EQ made of series of ZDF filters (each has gain for each of 3 bands, to achieve peaking, shelving curves etc.). I need to dynamically display the EQ curve. FFT doesn't cut it (either I need very large windows to display low end smoothly, but then I get like 3FPS because of pointless high-end data).
Flowstone has a prim called "biquad frequency response" which supposedly uses Z-transform to calculate log-scaled frequency graph form the coefficients. I either need similar module to work for ZDF or a module that calculates biquad coefficients from f,q and gains for high/band/low pass.
- KG_is_back
- Posts: 1196
- Joined: Tue Oct 22, 2013 5:43 pm
- Location: Slovakia
Re: Zero Delay Feedback Filter
The transfer function is that of an ordinary biquad
with the coefficients given by RBJ formulas.
- Code: Select all
b0 + b1*z^-1 + b2*z^-2
H(z) = -----------------------
1 + a1*z^-1 + a2*z^-2
with the coefficients given by RBJ formulas.
-
martinvicanek - Posts: 1328
- Joined: Sat Jun 22, 2013 8:28 pm
Re: Zero Delay Feedback Filter
First off, many thanks for this filter! I quite like it.
Sorry to dredge up an old post, but could you please elaborate on this a bit for a noob? If it sounds good, I'll pay the CPU cost.
martinvicanek wrote:There are various options for introducing nonlinearities to saturate self-oscillation. The simplest would be to make 1/Q increase with |BP|, I think. Haven't actually done it, but tanh or tanh^-1 isn't cheap. Note that you have an implicit equation to solve, it's a bit harder than just calculate tanh for some given argument. Vadim also suggests simpler functions but the expressions are still awkward.
Sorry to dredge up an old post, but could you please elaborate on this a bit for a noob? If it sounds good, I'll pay the CPU cost.
- noisenerd
- Posts: 69
- Joined: Sun Feb 14, 2016 11:31 pm
Re: Zero Delay Feedback Filter
I would also like to ask questions about the filter, especially the value ranges.
1) Frequency goes from 0 - 1, am I right that 1 refers to Nyquist?
2) Resonance is labeled ">0". I would love to have a fix point here. When other synths have resonance = 0 (no resonance), what would be the equivalent here? I do remember something like 0.7, but I'm not sure, if I remember correctly.
3) Attenuation: What exactly is it used for? What is the difference of using attenuation opposed to gain after the filter?
1) Frequency goes from 0 - 1, am I right that 1 refers to Nyquist?
2) Resonance is labeled ">0". I would love to have a fix point here. When other synths have resonance = 0 (no resonance), what would be the equivalent here? I do remember something like 0.7, but I'm not sure, if I remember correctly.
3) Attenuation: What exactly is it used for? What is the difference of using attenuation opposed to gain after the filter?
"There lies the dog buried" (German saying translated literally)
- tulamide
- Posts: 2714
- Joined: Sat Jun 21, 2014 2:48 pm
- Location: Germany
Re: Zero Delay Feedback Filter
tulamide wrote:I would also like to ask questions about the filter, especially the value ranges.
1) Frequency goes from 0 - 1, am I right that 1 refers to Nyquist?
Yes
tulamide wrote:2) Resonance is labeled ">0". I would love to have a fix point here. When other synths have resonance = 0 (no resonance), what would be the equivalent here? I do remember something like 0.7, but I'm not sure, if I remember correctly.
This is a quote from martins post earlier in this thread:
martinvicanek wrote:For even order N we have i = 1, 2, ..., N/2 biquads with
Q_i = 0.5/cos(alpha_i)
where the alpha_i are spread uniformly over (0,Pi/2):
alpha_i = (i - 0.5)*Pi/N
You can obtain the Q values from this, e.g :
1 biquad: i=1; N=2; Qi = 0.707
2 biquads: First: i=1; N=4; Qi = 0.541 Second: i=2; N=4; Qi = 1.307
...
or take it directly from the various filter examples martin already posted!
- stw
- Posts: 111
- Joined: Tue Jul 13, 2010 11:09 am
Who is online
Users browsing this forum: No registered users and 23 guests