Skip to content
Snippets Groups Projects
Commit b9b15648 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Add support for bi-reciprocal LWDF

parent e8594ea6
No related branches found
No related tags found
1 merge request!296Support for Bireciprocal LWDF
...@@ -29,6 +29,8 @@ def wdf_allpass( ...@@ -29,6 +29,8 @@ def wdf_allpass(
Generate a signal flow graph of a WDF allpass section based on symmetric two-port\ Generate a signal flow graph of a WDF allpass section based on symmetric two-port\
adaptors. adaptors.
Simplifies the SFG in case an adaptor operation is 0.
Parameters Parameters
---------- ----------
coefficients : 1D-array coefficients : 1D-array
...@@ -62,17 +64,20 @@ def wdf_allpass( ...@@ -62,17 +64,20 @@ def wdf_allpass(
output = Output() output = Output()
odd_order = order % 2 odd_order = order % 2
if odd_order: if odd_order:
# First-order section if np_coefficients[0]:
adaptor0 = SymmetricTwoportAdaptor( # First-order section
np_coefficients[0], adaptor0 = SymmetricTwoportAdaptor(
input_op, np_coefficients[0],
latency=latency, input_op,
latency_offsets=latency_offsets, latency=latency,
execution_time=execution_time, latency_offsets=latency_offsets,
) execution_time=execution_time,
signal_out = Signal(adaptor0.output(0)) )
delay = Delay(adaptor0.output(1)) signal_out = Signal(adaptor0.output(0))
Signal(delay, adaptor0.input(1)) delay = Delay(adaptor0.output(1))
Signal(delay, adaptor0.input(1))
else:
signal_out = Delay(input_op)
else: else:
signal_out = Signal(input_op) signal_out = Signal(input_op)
...@@ -80,28 +85,38 @@ def wdf_allpass( ...@@ -80,28 +85,38 @@ def wdf_allpass(
sos_count = (order - 1) // 2 if odd_order else order // 2 sos_count = (order - 1) // 2 if odd_order else order // 2
offset1, offset2 = (1, 2) if odd_order else (0, 1) offset1, offset2 = (1, 2) if odd_order else (0, 1)
for n in range(sos_count): for n in range(sos_count):
adaptor1 = SymmetricTwoportAdaptor( if np_coefficients[2 * n + offset1]:
np_coefficients[2 * n + offset1], adaptor1 = SymmetricTwoportAdaptor(
signal_out, np_coefficients[2 * n + offset1],
latency=latency, signal_out,
latency_offsets=latency_offsets, latency=latency,
execution_time=execution_time, latency_offsets=latency_offsets,
) execution_time=execution_time,
# Signal(prev_adaptor., adaptor1.input(0), name="Previous-stage to next") )
delay1 = Delay(adaptor1.output(1)) # Signal(prev_adaptor., adaptor1.input(0), name="Previous-stage to next")
delay2 = Delay() delay1 = Delay(adaptor1.output(1))
adaptor2 = SymmetricTwoportAdaptor( else:
np_coefficients[2 * n + offset2], delay1 = Delay(signal_out)
delay1, if np_coefficients[2 * n + offset2]:
delay2, delay2 = Delay()
latency=latency, adaptor2 = SymmetricTwoportAdaptor(
latency_offsets=latency_offsets, np_coefficients[2 * n + offset2],
execution_time=execution_time, delay1,
) delay2,
Signal(adaptor2.output(0), adaptor1.input(1)) latency=latency,
Signal(adaptor2.output(1), delay2) latency_offsets=latency_offsets,
signal_out = Signal(adaptor1.output(0)) execution_time=execution_time,
)
Signal(adaptor2.output(0), adaptor1.input(1))
Signal(adaptor2.output(1), delay2)
signal_out = Signal(adaptor1.output(0))
else:
delay2 = Delay(delay1)
if np_coefficients[2 * n + offset1]:
Signal(delay2, adaptor1.input(1))
signal_out = Signal(adaptor1.output(0))
else:
signal_out = Signal(delay2)
output << signal_out output << signal_out
return SFG([input_op], [output], name=Name(name)) return SFG([input_op], [output], name=Name(name))
......
...@@ -73,6 +73,29 @@ def test_wdf_allpass(): ...@@ -73,6 +73,29 @@ def test_wdf_allpass():
== 1 == 1
) )
# Bi-reciprocal third-order
sfg = wdf_allpass([0.0, 0.5, 0.0])
assert (
len(
[
comp
for comp in sfg.components
if isinstance(comp, SymmetricTwoportAdaptor)
]
)
== 1
)
assert len([comp for comp in sfg.components if isinstance(comp, Delay)]) == 3
# Second-order all zeros third-order
sfg = wdf_allpass([0.0, 0.0])
assert not [
comp for comp in sfg.components if isinstance(comp, SymmetricTwoportAdaptor)
]
assert len([comp for comp in sfg.components if isinstance(comp, Delay)]) == 2
def test_direct_form_fir(): def test_direct_form_fir():
impulse_response = [0.3, 0.5, 0.7] impulse_response = [0.3, 0.5, 0.7]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment