src.acoustools.BEM
Simulation of sound scattering using the Boundary Element Method (BEM).
See:
High-speed acoustic holography with arbitrary scattering objects: https://doi.org/10.1126/sciadv.abn7614
BEM notes: https://www.personal.reading.ac.uk/~sms03snc/fe_bem_notes_sncw.pdf
1''' 2Simulation of sound scattering using the Boundary Element Method (BEM).\n 3See: \n 4High-speed acoustic holography with arbitrary scattering objects: https://doi.org/10.1126/sciadv.abn7614 \n 5BEM notes: https://www.personal.reading.ac.uk/~sms03snc/fe_bem_notes_sncw.pdf \n 6 7` src.acoustools.BEM.Forward_models ` \n 8` src.acoustools.BEM.Gorkov `\n 9` src.acoustools.BEM.Gradients `\n 10` src.acoustools.BEM.Propagator `\n 11 12''' 13 14from acoustools.BEM.Forward_models import * 15from acoustools.BEM.Gorkov import * 16from acoustools.BEM.Gradients import * 17from acoustools.BEM.Propagator import * 18from acoustools.BEM.Force import *