Author: Jacob Ward | Email: jacob.ward@live.com
In military jet noise acoustics research, it is useful to know sound pressure levels at all points surrounding a jet, however placing a microphone at all points around a jet is expensive and impractical. Instead, inverse array methods are used to reconstruct the sound field surrounding the jet. One such inverse array method is multisource statistically-optimized nearfield acoustical holography, or M-SONAH for short. In this method, The input from a smaller array of microphones can be used to reconstruct the entire sound field surrounding a jet. An example of this is shown in the figure below. On the left is shown the input array of microphones. The pressures recorded by these microphones are plugged into the M-SONAH algorithm to create the sound field reconstruction on the right. The following section will give a brief overview of the M-SONAH algorithm.
from PIL import Image
img = Image.open('MSONAH_EXAMPLE.png')
img
First the sound field is measured at a set of locations rh,h=1,2,..., I on the hologram Ω. These locations need to be in a region that has no noise sources present. We will be reconstructing the sound pressures at locations rq,q=1,2,..., Q on the surface Γ. Next we select a set of wave functions, Ψn,n=1,2,..., N, that are solutions to the Helmholtz equation in the source-free field. The wave functions we choose depend on the source properties of the noise source we are interested in, but the most common are planar, cylindrical or spherical. Linear combinations of the basis functions, Ψn, can be used to express the pressures at Ω and Γ.
We can expand the hologram pressures on Ω as p(rh)=∑Nn=1gnΨn(rh),h=1,2,..., I, which in matrix form is Dg=p(rh) where g is the matrix of complex expansion coefficeints for the wave functions that we are trying to find so that we can use them to reconstruct the sound field. D is the matrix of wave functions evaluated at our measurement positions. The transpose of D (A′=DT) is
One of the advantages of M-SONAH is the fact that it can include multiple sets of wave functions which can be combinations of planar, cylindrical and spherical functions. Thus, for each of the I positions on Ω, we can define a set of wave function values for each source type, s. For each source, we create a matrix Bs that is defined as
and then we can concatenate the wave function matrices for all s sources to get our A matrix
where the total number of wave functions across all s sets is called M. If the number of equations, I, is greater than the number of unknowns, M, then the problem is overdetermined and we use the least-squares solution to find the coefficients using the equation
Usually in M-SONAH applications, however, I < M so the problem is underdetermined and the least-norm solution is found using the equation
The last step is a regularization process which won't be covered here, and finally the reconstructed pressures can be found by multiplying our expansion coefficients by the matrix of wave function values at all reconstruction locations. One important thing to note is that this reconstruction is only valid in source-free regions and the reconstructed pressures blow up as you approach the source location. This is why there is actually a black region in the reconstruction above close to the centerline of the jet exhaust where the noise sources are located.
Uploaded to this repository is a zip file called MSONAH_EXAMPLE_CODE that contains several MATLAB functions and a script that shows M-SONAH in action. In this code, first numerical sources are generated. An array of 51 source monopoles is generated at x=0, y=0.5, and along the line from z=−0.5 to 0.5. Then to simulate ground reflections (the ground is represented by the grey plane in the figure below), an identical image array of sources is generated at x=0, y=−0.5, and from z=−0.5 to 0.5. These source locations are shown in red in the geometry figure below. Then measurements are generated in the vertical plane at x=0.2. These measurements are "taken" on a 20 by 20 grid for a total of 400 measurement locations. The grid of 400 measurement points is represented by the blue plane in the figure below.
from PIL import Image
img = Image.open('MSONAH_EXAMPLE_CODE_GEOMETRY.png')
img
Next, these measurement values are plugged into the M-SONAH algorithm to try to reconstruct the sound pressure levels near the source in the vertical plane at x=0.01 (remember that we can't do x=0 and reconstruct directly on our sources because our solution is only valid in the source-free region). The measurement and "source" reconstruction are shown in the figure below.
from PIL import Image
img = Image.open('MSONAH_EXAMPLE_CODE_MEASUREMENT_AND_RESULTS.png')
img
Looking at our measurement in the left of the figure above, we see an interference pattern and it isn't clear that our sources are along lines at y=−0.5 and 0.5. However after inputting our measurement values into the M-SONAH algorithm, it is able to correctly predict strong source sound pressure levels at y=+/−0.5 from z=−0.5 to 0.5 just as expected.