CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM

Aeroacoustics in OpenFOAM...

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes
  • 1 Post By Bertrand
  • 1 Post By 7islands

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 22, 2010, 14:15
Default Aeroacoustics in OpenFOAM...
  #1
New Member
 
Bertrand Delvaux
Join Date: Apr 2010
Posts: 29
Rep Power: 16
Bertrand is on a distinguished road
Hello,

I am pretty new to the great OF Community. For my PhD, I need to study the acoustics coming out of a shaped tube (like blowing into an instrument).

My geometry is the following : inlet, shaped tube, outlet consisting in a hemisphere (open atmosphere). I settled periodic boundary condition for velocity as the inlet and "open atmosphere" for the outlet .

I solve the problem with rhoPisoFoam, LES.

Up to now, I've found pretty nice results, using, among others this great tool audioToProbe, to check up with the acoustic signal at different places, but unfortunately, my signal gets noisier with the distance increasing from the source, right when it goes into the hemisphere. I suspect the outlet boundary condition.

Up to now, I tried

p:
outlet
{
type totalPressure;
p0 uniform 1e5;
U U;
phi phi;
rho rho;
psi none;
gamma 1;
value uniform 1e5;
}

and
U:
outlet
{
type inletOutlet;
inletValue uniform (0 0 0);
value uniform (0 0 0);
}

Or p with "waveTransmissive"

But I don't know how to deal with this issue about "non-reflective boundary condition" when dealing with aeroacoustics.

It would be great if someone could give me some hints on these issues :

1. How to set this "open atmosphere" boundary condition?
2. How to take into account the non-reflective boundary condition?
3. How to adapt U outlet condition in accordingly?
4. Is that a good solver for Aeroacoustics?

Thank you very much for your answers...

Bertrand
mm.abdollahzadeh likes this.
Bertrand is offline   Reply With Quote

Old   November 22, 2010, 23:33
Default
  #2
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Hi Bertrand,
I can't say much about compressible aeroacoustics itself, but one thing to note about probeToAudio is that it normalizes the input acoustic waveform with its maximum amplitude to avoid saturation and to obtain maximum S/N ratio. However there could be several potential problems by this feature under your scenario, two of which I can think of are:
  1. If your case generates characteristic narrow band tone at the source and it fades over distance, you might have an impression that the overall signal (including noises) gets noisier over distance because noises typically has broader spectrum.
  2. It could be that your simulation has a pressure fluctuation of very low frequency that is under human audible range but very large amplitude around the source. In such a case the acoustic tone of your interested frequency could be very small. (by the way this is quite a typical case for wind-tunnel measurements)
In any case, you might visually check if your simulation is going well and the waveforms fade over distance.

Takuya
mm.abdollahzadeh likes this.
7islands is offline   Reply With Quote

Old   November 25, 2010, 04:15
Default
  #3
New Member
 
Bertrand Delvaux
Join Date: Apr 2010
Posts: 29
Rep Power: 16
Bertrand is on a distinguished road
Hi Takuya,

Thank you very much for your answer!
Your insights gave me some ideas...

1. How can I (simply?) modify probeToAudio in order not to normalize the sampled pressure with the maximum amplitude?

2. Concerning your suggestion 2, I have an input of a sinus (or half a sinus) for the velocity, with a fundamental frequency of 100 Hz. So there is no problem about being out of the audible range. Whenever I am "in the tube" it is a nice warm sound of 100 Hz, but as soon as I am out of the tube, in the open-atmosphere, the sound is still 100 Hz fundamental frequency (hopefully!) but gets noisier.

3. Therefore, when I add the visualization of what happens about p and U in this outlet hemisphere, I am very suspicious about the outlet boundary condition for both p and U : I really wonder how to implement such an "open atmospehre"... Would you have any idea?

Regards,

Bertrand
Bertrand is offline   Reply With Quote

Old   November 27, 2010, 08:20
Default
  #4
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Hi Bertrand,

@1., @2: I haven't tried by myself but you should be able to modify the following bits to replace max(bias - minValue, maxValue - bias) with a fixed value.
Code:
// scale and convert the data to be fit into the int16_t range
scalar scaleFactor = max(bias - minValue, maxValue - bias);
@3.: Is your flow reaching the outlet smoothly? If not let's hope an expert in compressible aeroacoustics chimes in - I only have experience with incompressible one using acoustic analogy with my own simulation code.

Takuya
7islands is offline   Reply With Quote

Old   December 3, 2010, 05:57
Default
  #5
New Member
 
Bertrand Delvaux
Join Date: Apr 2010
Posts: 29
Rep Power: 16
Bertrand is on a distinguished road
Hi Takuya,

Thank you for your answer, I am now using Audacity, as you suggested months ago, in order to plot the spectrum : really helpfull in my case.

1. I have been modifying the code for audioToProbe, so that it doesn't normalize it, but how shall I "compile" this new code, (and from which location), in order to use it as an alternative audioToProbe utility? Sorry if my question may sound like a newbie one, but I am pretty new to OF, and still didn't implement my own functions, but I am looking forward to it.

2. I am still busy trying to figure out a way of implementing a far-field condition such as it would be an open atmosphere, non-reflective boundary condition, and wave-transmissive. As I saw in other posts, it looks like you are busy with this as well, so if you have more hints on that, I would definitely enjoy if you could share...

3. I've downloaded your last contribution to OF, still have to give it a look, but the principle looks amazing! Congrats'

Regards,

Bertrand
Bertrand is offline   Reply With Quote

Old   December 3, 2010, 22:32
Default
  #6
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Hi Bertrand,
@Compiling: take a look at the User Guide first, http://www.openfoam.com/docs/user/co...p#x10-690003.2

@farfield condition: I know a convective outlet BC works well for low-Mach incompressible cases (which I studied with my own Fortran code) but not sure about compressible cases thus can't be of much help. As far as I've read in this forum the waveTransmissive BC should work?

Takuya
7islands is offline   Reply With Quote

Old   December 7, 2010, 05:59
Default
  #7
New Member
 
Bertrand Delvaux
Join Date: Apr 2010
Posts: 29
Rep Power: 16
Bertrand is on a distinguished road
Hi Takuya,

@Compiling : it didn't work, because there were some files missing in the official link to probeToAudio, but I could use the one from potentialWaveFoam, so no problem.

@probeToAudio : I have a question : what is the meaning of 32767.0 in line 209?

@convectiveOutlet : I am gonna try now, and do comparison cases with waveTransmissive.

Bertrand
Bertrand is offline   Reply With Quote

Old   December 7, 2010, 11:22
Default
  #8
Super Moderator
 
Takuya OSHIMA
Join Date: Mar 2009
Location: Niigata City, Japan
Posts: 518
Blog Entries: 1
Rep Power: 20
7islands is on a distinguished road
Hi Bertrand,

Quote:
Originally Posted by Bertrand View Post
@probeToAudio : I have a question : what is the meaning of 32767.0 in line 209?
It's 2^15 - 1, the maximum amplitude that can be represented by 16-bit linear PCM audio format.

Takuya
7islands is offline   Reply With Quote

Reply

Tags
aeroacoustics, open atmosphere, rhopisofoam, wavetransmissive


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Superlinear speedup in OpenFOAM 13 msrinath80 OpenFOAM Running, Solving & CFD 18 March 3, 2015 05:36
Cross-compiling OpenFOAM 1.7.0 on Linux for Windows 32 and 64bits with Mingw-w64 wyldckat OpenFOAM Announcements from Other Sources 3 September 8, 2010 06:25
Modified OpenFOAM Forum Structure and New Mailing-List pete Site News & Announcements 0 June 29, 2009 05:56
64bitrhel5 OF installation instructions mirko OpenFOAM Installation 2 August 12, 2008 18:07
OpenFOAM Debian packaging current status problems and TODOs oseen OpenFOAM Installation 9 August 26, 2007 13:50


All times are GMT -4. The time now is 13:08.