|
[Sponsors] |
January 7, 2014, 18:59 |
|
#21 |
New Member
Eslam Hashem Mohamed
Join Date: Oct 2013
Location: Cairo,Egypt
Posts: 13
Rep Power: 13 |
Dear Alhasan,
Unfortunately i deals with rotating blades and rotating zone should be considered in my study and i never found any thing a bout ffowcs williams and hawkings formula in openfoam. i don't know what should i do. if i didn't find any thing about fw-h in openfoam my study will stop. please, can you suggest how i can solve this problem |
|
January 7, 2014, 23:50 |
|
#22 |
Senior Member
Hasan K.J.
Join Date: Dec 2011
Location: Bristol, United Kingdom
Posts: 200
Rep Power: 15 |
Hi Eslam,
Search hard if some one has FW-H model written for openFOAM, its been there out too long both FW-H and OpenFOAM so some one should have written it at some point ? If it is not necessary you have to use OpenFOAM, FW-H model is available in Fluent !!! If not comes the complicated part where you have to write you own C++ codes for FW-H you can start this by understanding the Curle's Equation and see how the model is written in OpenFOAM that is provided above, then you can try to understand FW-H equations and write your own. - in my point of view writing a FW-H code for openFOAM and validation can be a BEng Dissertation by itself. Best of Luck Hasan K.J |
|
January 8, 2014, 12:57 |
|
#23 |
New Member
Eslam Hashem Mohamed
Join Date: Oct 2013
Location: Cairo,Egypt
Posts: 13
Rep Power: 13 |
Hi Alhasan,
thank you my friend, i will work hardly to implement this analogy in openfoam. any time if you found any thing about this topic, i will be grateful for informing me. Best regards, Eslam H. Mohamed |
|
January 9, 2014, 02:32 |
|
#24 | |
Member
|
Quote:
__________________
practice makes perfect |
||
January 9, 2014, 16:59 |
Acoustic analogy in openfoam
|
#25 |
New Member
Eslam Hashem Mohamed
Join Date: Oct 2013
Location: Cairo,Egypt
Posts: 13
Rep Power: 13 |
i want to ask for how to implement an acoustic analogy in openfoam. my study focus on noise emitted from wind turbine and as we know, there is no acoustic model in openfoam. any one know how to do this especially using ffowcs williams and hawkings formula.
|
|
March 14, 2014, 03:59 |
|
#26 | |
New Member
sethu
Join Date: Oct 2011
Posts: 7
Rep Power: 15 |
Quote:
Thanks for sharing the code. With the help of the notes given I could able to compile only the libraries (dynamically using wmake libso) but when I tried to link the main solver "libAcoustics" I am getting the following error. In file included from /apps/OpenFOAM/OpenFOAM-2.2.2/src/OpenFOAM/lnInclude/OutputFilterFunctionObject.H:232:0, from Curle/CurleFunctionObject.H:40, from Curle/CurleFunctionObject.C:26: /apps/OpenFOAM/OpenFOAM-2.2.2/src/OpenFOAM/lnInclude/OutputFilterFunctionObject.C: In member function ‘bool Foam::OutputFilterFunctionObject<OutputFilter>::ti meSet() [with OutputFilter = Foam::Curle]’: Curle/CurleFunctionObject.C:40:1: instantiated from here /apps/OpenFOAM/OpenFOAM-2.2.2/src/OpenFOAM/lnInclude/OutputFilterFunctionObject.C:219:9: error: ‘class Foam::Curle’ has no member named ‘timeSet’ make: *** [Make/linux64Gcc45DPOpt/CurleFunctionObject.o] Error 1 make: *** Waiting for unfinished jobs.... It would be nice if you could help me out to implement the solver properly.. Regards, Sethu |
||
March 17, 2014, 09:11 |
|
#27 |
Senior Member
|
Hi,
I saw that Professor Jasak made a OF-Summerschool anouncement Adam Azenic: numerical simulation of the acoustic response in the edge tone simulation. Presenting a full non-linear acoustics solver https://twitter.com/hrvoje_jasak/sta...93641565782017 |
|
March 17, 2014, 09:17 |
|
#28 | |
Member
|
Quote:
Although it was mentioned in libAcou documentation that it was developed for OF 2.1 and later, i'd suppose to compile it for OF 2.1
__________________
practice makes perfect |
||
March 18, 2014, 20:52 |
|
#29 |
New Member
sethu
Join Date: Oct 2011
Posts: 7
Rep Power: 15 |
Dear Ilya.,
Yes, it did work well for OF 2.1.0. I could able to compile all the solver codes and libraries in it. I also notice that "OutputFilterFunctionObject.C" file in OF 2.2.2 has got significant changes in it while revision. I dont know how to resolve this issue. But, I will proceed now with OF 2.1.0 to solve the test cases and some of my trail cases. Thanks for your help. If you have any further updates on this solver, do let us know. Regards, Sethu |
|
August 20, 2014, 11:41 |
why?
|
#30 |
Member
Björn Bergqvist
Join Date: Mar 2009
Location: Gothenburg, Västra Götaland, Sweden
Posts: 43
Rep Power: 17 |
did you not add in Curle/Curle.C
" void Foam::Curle::timeSet() { // Do nothing - only valid on execute } " and in Curle/Curle.H " //- set time virtual void timeSet(); " It compiles on openfoam 2.2.0 then
__________________
________________________________________ Björn Bergqvist, creator of Discretizer, a free mesh generator for OpenFOAM _________http://www.discretizer.org_____________
|
|
September 16, 2014, 07:58 |
|
#31 | |
New Member
DAPHNE
Join Date: Apr 2014
Posts: 6
Rep Power: 12 |
Quote:
Thank you so much for sharing the information. From the presentation material ( OFW-Seoul-Kraposhin-AcousticTrack-5 pdf) given for Curle implementation discussed in slide 9 the expression used for acoustic pressure is p'= 1/4IIc0_ * x/r^2 *[ (df/dt) + c0 f/r]. But in the Curle .C at line 288 scalar coeff1 = 1. / 4. / Foam::constant::mathematical:: pi / c0_ / c0_ ; forAll (observers_, iObs) { SoundObserver& obs = observers_[iObs]; vector l = obs.position() - c_; scalar r = mag(l); scalar oap = l & (dFdT + c0_ * F / r) * coeff1 / r /r; if (dRef_ > 0.0) { oap /= dRef_; } obs.apressure(oap); } } } It is clear that oap is the expression to find the p' value. But in the expression for oap, at the denominator we have c0_^2 , which is computed from the coeff1 expression. Is there any approximation made?Could you please explain is there any approximation like nearfield or farfield behind this approximation? Thanks in advance. Last edited by DAPHNE; September 16, 2014 at 07:59. Reason: a small modification |
||
October 2, 2014, 10:33 |
Curle analogy code in OpenFOAM
|
#32 | |
New Member
Paul
Join Date: Apr 2012
Posts: 27
Rep Power: 14 |
Hello,
Unfortunately, the code shared by skeptic can't be downloaded anymore. Quote:
Best Regards, Delcraft |
||
October 4, 2014, 09:43 |
|
#33 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,981
Blog Entries: 45
Rep Power: 128 |
Quick answer:
Last edited by wyldckat; October 4, 2014 at 09:47. Reason: see "edit:" |
|
October 4, 2014, 11:24 |
|
#34 |
New Member
Paul
Join Date: Apr 2012
Posts: 27
Rep Power: 14 |
Thank you! That's exactly what I want.
Delcraft |
|
October 29, 2014, 10:17 |
FW-H model in OpenFOAM required.
|
#35 |
Senior Member
Hasan K.J.
Join Date: Dec 2011
Location: Bristol, United Kingdom
Posts: 200
Rep Power: 15 |
Hey @Eslam Hashem
How did your project go, did you implement the FW-H model in OpenFOAM yet or did you find any one else who has implimented any other acoustic anology other than Curles provided by @Ilya in OpenFOAM Regards, Hasan K.J |
|
April 7, 2015, 09:55 |
Updated Curle library
|
#36 |
Member
|
Hey all.
You can find updated libAcoustics with Curle analogue for OpenFOAM 2.3.0 through following link. https://unihub.ru/resources/625 Thanks.
__________________
practice makes perfect |
|
April 7, 2015, 09:57 |
|
#37 |
Senior Member
Hasan K.J.
Join Date: Dec 2011
Location: Bristol, United Kingdom
Posts: 200
Rep Power: 15 |
Thanks a lot for sharing this,
Eagerly waiting for the F-WH for openfoam if any updates please share with us, Kind Regards, Hasan K.J
__________________
"Real knowledge is to know the extent of one's ignorance." - Confucius |
|
May 12, 2015, 02:26 |
how ??
|
#38 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
thanks for the updates but I have a problem
How I can compile it, it seems to be precompiled because ther is (lnInclude) folder and (deb) files. any one can help me to compile it thanks in advance |
|
May 18, 2015, 02:53 |
Help
|
#39 |
Member
Ahmad Habib
Join Date: Nov 2014
Location: Aleppo, Syria
Posts: 53
Rep Power: 12 |
Please. any one can help me compiling this library
|
|
May 18, 2015, 15:49 |
|
#40 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,981
Blog Entries: 45
Rep Power: 128 |
Quick answer:
|
|
|
|
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 |