|
[Sponsors] |
May 19, 2015, 03:16 |
thanks
|
#41 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
Thanks.
Actually my problem seems to be in installing the fftw-3.3.3 the permission for righting files to /user/local ... is denied But I'll try it again using your tips. |
|
May 19, 2015, 05:21 |
|
#42 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
Thanks Alot, It worked
|
|
May 20, 2015, 05:02 |
|
#43 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
I'm Wondering if some one used this library.It's calculate the acoustic pressure and the fft to calculate the SPL sv. frequency, my question is at any point does it calculate the fft? at the end time? or during the runtime solution????
|
|
May 31, 2015, 03:46 |
|
#44 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
Hello FOAMERS
I need a validation case to validate libAcoustic (something simple unlike the Tandem Cylinder case) Any Help |
|
June 1, 2015, 03:39 |
|
#45 |
Member
|
Here is a work about cavity aeroacoustic measurements, for instance
http://www.lr.tudelft.nl/fileadmin/F...ant_Parkhi.pdf
__________________
practice makes perfect |
|
June 1, 2015, 05:35 |
|
#46 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
Hello,
I was wondering why the libAcoustics does calculate an average distance between surface and observer? Why is the distance not evaluated for each face separately? Kind regards, Martin |
|
June 1, 2015, 05:51 |
|
#47 | |
Member
|
Quote:
It was found at least one error in the old realization of this library.
__________________
practice makes perfect |
||
June 1, 2015, 07:16 |
|
#48 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
I am currently working on reimplementing Curle for OpenFOAM 2.4.0 to get a better understanding of acoustic analogies on the way to Ffowcs-Williams-Hawkings. That's why I came up with the question...
|
|
June 1, 2015, 08:07 |
|
#49 |
Member
|
It's nice question and nice challenge. We're developing FWH in addition to Curle now and if you find some errors in libAcoustics, please, report. I hope we will have a time to review old versions and to make a test-cases and validate our results more.
__________________
practice makes perfect |
|
June 2, 2015, 03:40 |
|
#50 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
What is the ((dRef)) in the lib code??
Is it the the long in the z direction if the simulation is 2D [x,y] If so, what I should use for it in the 3D simulations thanks in advance |
|
June 2, 2015, 15:29 |
|
#51 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
If you set dRef to zero, it is not considered in the calculations. If you set the value, the pressure fluctuations are divided by dRef.
I think this is only used for 2D simulations. |
|
June 4, 2015, 03:45 |
|
#52 | |
Member
|
Quote:
If you solve 3D problem assign to dRef any negative value.
__________________
practice makes perfect |
||
June 21, 2015, 17:11 |
|
#53 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
Hello.
I tried to validate this analogy using the paper ((Two and Three-Dimensional Simulation of Sound Generated by Flow Around a Circular Cylinder - 30th AIAA Aeroacoustics Conference)). every thing was good as you can see my results except when I calculated the SPL & OASPL for different cylinder span length. The result where on the opposite, the higher SPL in my calculation where related to the shortest cylinder (in the paper where related to the longest cylinder). any one can tell me why this happened. you can check my controlDit SPL.jpg controlDict.txt Results1.jpg Results2.jpg |
|
July 20, 2015, 11:15 |
|
#54 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
I simulated the NASA tandem cylinder validation case using a Spalart Allmaras DDES turbulence model with a span length of 3 times the diameter. The results are quite satisfactory and similar to other publications on this case.
|
|
July 21, 2015, 05:29 |
|
#55 | |
Member
|
Quote:
I have few questions to clarify DDES-related problems: 1. Did you measure y+? How much is it? 2. What's about wallFunctions? Did you use it? (connected to 1. question) 3. Can you show your fvSchemes file? Or at least say what was your grad and div schemes? Thank you in advance.
__________________
practice makes perfect |
||
July 21, 2015, 07:27 |
|
#56 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
Hello,
the mesh contains contains 8 mio cells with an average y+ value of about 1.9 for the first and 1.4 for the second cylinder. I also prepared two finer meshes but did not test them yet. For nuSgs I used the nutLowReWallFunction and fixedValue 0.0 for nuTilda. My fvSchemes looks as following: Code:
ddtSchemes { default backward; } gradSchemes { default Gauss linear; } divSchemes { default Gauss linear; } laplacianSchemes { div(phi,U) Gauss LUST grad(U); div(phi,nuTilda) Gauss linearUpwind grad(nuTilda); div((nuEff*dev(T(grad(U))))) Gauss linear; } interpolationSchemes { default linear; } snGradSchemes { default corrected; } fluxRequired { default no; p; } Regards, Martin |
|
July 21, 2015, 11:35 |
|
#57 | |
Member
|
Quote:
Code:
laplacianSchemes { div(phi,U) Gauss LUST grad(U); div(phi,nuTilda) Gauss linearUpwind grad(nuTilda); div((nuEff*dev(T(grad(U))))) Gauss linear; } May be Code:
divSchemes { div(phi,U) Gauss LUST grad(U); div(phi,nuTilda) Gauss linearUpwind grad(nuTilda); div((nuEff*dev(T(grad(U))))) Gauss linear; }
__________________
practice makes perfect |
||
July 21, 2015, 12:02 |
|
#58 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
ups, that's my mistake! I mixed up the settings... Now I have to rerun everything ...
|
|
July 22, 2015, 03:13 |
|
#59 | |
Member
|
Quote:
We spent a huge time and resources investigating different numerical schemes, may be we should try something like yours. Despite such errors you get good results, something in your fvSchemes was ignored but something not) will see. Which version you use?
__________________
practice makes perfect |
||
July 27, 2015, 09:12 |
|
#60 |
Member
Join Date: Jun 2012
Posts: 76
Rep Power: 14 |
I'm using OpenFOAM 2.4.0.
I'm currently rerunning the simulation with the correct settings. I can show you the results in a few days. Regards, Martin |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Working directory via command line | Luiz | CFX | 4 | March 6, 2011 21:02 |
Running Problem using Openfoam solver | cfd_staruser | OpenFOAM | 5 | August 14, 2009 03:28 |
64bitrhel5 OF installation instructions | mirko | OpenFOAM Installation | 2 | August 12, 2008 19:07 |
why the solver reject it? Anyone with experience? | bearcat | CFX | 6 | April 28, 2008 15:08 |
OpenFOAM Training and Workshop Zagreb 2628Jan2006 | hjasak | OpenFOAM | 1 | February 2, 2006 22:07 |