Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: Zotter, et al., diffuse field radius #140

Open
joslloand opened this issue Jul 10, 2024 · 2 comments
Open

add: Zotter, et al., diffuse field radius #140

joslloand opened this issue Jul 10, 2024 · 2 comments

Comments

@joslloand
Copy link
Contributor

joslloand commented Jul 10, 2024

Diffuse Sound Field Synthesis

"... approximate radial limit of an error-free sweet area...", eq. 65

// return diffuse field radius from decoding radius
~diffRadius = { |decRadius = (AtkHoa.refRadius), order = (AtkHoa.defaultOrder)|
	order / (order + 1) * decRadius
}

Classes:

  • HoaRadius?
  • HoaOrder

Method name(s)?:

  • diffRadius
  • diffuseRadius
  • radiusOfDiffuse
@joslloand
Copy link
Contributor Author

joslloand commented Jul 10, 2024

HoaRadius is concerned with the effective soundfield resynthesis radius, so it may not be suitable to include a method here, as we may run the risk of confusing the radius of exact reproduction with the diffuse field synthesis radius.

HoaOrder is likely the ideal class, as we could also include(?):

  • -decRadius
  • -decodingRadius
  • -arrayRadius
  • -radiusOfArray

a method returning the target array size given a desired diffuse field radius.

NOTE: this could be used in conjunction with HoaRadius to match a given desired effective radius.

// return decoding radius from diffuse field radius
~decRadius = { |diffRadius = (AtkHoa.refRadius), order = (AtkHoa.defaultOrder)|
		(order + 1) / order * diffRadius
}

@joslloand
Copy link
Contributor Author

... for naming, review ATK Code Style Guidelines

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant