Skip to content

simper_eq bugs #81

@Tremus

Description

@Tremus

Bug 1: The high shelf cutoff moves when boosting / cutting

let g = w / sqrt (A);

Solution:
let g = w * sqrt (A);

Bug 2: The bell filters quality is not symmetrical when boosting / cutting

c.a1 = 1 / (1 + g * (g + k));
c.a2 = g * c.a1;
c.a3 = g * c.a2;
c.m0 = 1;
c.m1 = k * (A * A - 1);

Solution:
k = 1 / (A * clamp(quality, 0.01, 100.0));

NOTE: The bell filter is the only filter that uses a different k

Source: https://cytomic.com/files/dsp/SvfLinearTrapOptimised2.pdf
Page 32

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions