|
[Sponsors] |
April 23, 2013, 09:37 |
Entropy calculation in OpenFoam
|
#1 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
I have found a figure of entropy in this article that has made by OpenFOAM:
I'm wondering if does OF calculates entropy?which solvers does have it?I couldn't find a useful thread about this subject in the forum. that can improve my work and the conclusions. can anyone guide me through?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
April 23, 2013, 22:08 |
|
#2 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
hi all again
does anyone know an example for adding entropy equation to any of the compressible (or even other) solvers? It this work possible with a rational effort?or is too complicated? Has anyone think about this subject (seeing entropy values) so far? I thank any of thoughts
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
April 24, 2013, 13:48 |
|
#3 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
no any opinion about entropy in OpenFOAM?
does have a solver calculate entropy? any hint?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
April 25, 2013, 03:09 |
|
#4 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
no one is interested?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
April 26, 2013, 23:25 |
|
#5 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
how i can't find anything useful in the forum search related to this subject?
Means no one has ever thought about?!!
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
April 29, 2013, 19:56 |
|
#6 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
According to the paper you've indicated, it seems that the solver "rhoCentralFoam" was used to calculate entropy. I've searched OpenFOAM's source code with the following command: Code:
find $FOAM_SRC -name "*.[CH]" | xargs grep -isl 'Entropy' The same could be done with the text editor "Kate", which can find text inside files on a particular folder. The files that were found were: Code:
./thermophysicalModels/reactionThermo/mixtures/SpecieMixture/SpecieMixture.H ./thermophysicalModels/reactionThermo/mixtures/basicMultiComponentMixture/basicMultiComponentMixture.H ./thermophysicalModels/specie/thermo/eConst/eConstThermo.H ./thermophysicalModels/specie/thermo/hPolynomial/hPolynomialThermo.C ./thermophysicalModels/specie/thermo/hPolynomial/hPolynomialThermo.H ./thermophysicalModels/specie/thermo/thermo/thermo.H ./thermophysicalModels/specie/thermo/hConst/hConstThermo.H ./thermophysicalModels/specie/thermo/janaf/janafThermo.H ./thermophysicalModels/specie/thermo/hExponential/hExponentialThermo.H As for not find much information on this topic: it's OpenFOAM. It's only natural that there are several undocumented or poorly documented details about OpenFOAM's features. But the great thing about OpenFOAM is that the source code is completely open for anyone to look at it and study it Best regards, Bruno
__________________
|
|
April 30, 2013, 07:52 |
|
#7 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
thanks so much.
then entropy is calculated but not is shown.could simply change this behavior?(I have tested simple things like MUST_WRITE without success) will specificHeat.C work by changing only Cp to s or how? -------------------------- hi again I made little changes like this: Code:
int main(int argc, char *argv[]) { timeSelector::addOptions(); # include "setRootCase.H" # include "createTime.H" instantList timeDirs = timeSelector::select0(runTime, args); # include "createMesh.H" forAll(timeDirs, timeI) { runTime.setTime(timeDirs[timeI], timeI); Info<< "Time = " << runTime.timeName() << endl; mesh.readUpdate(); Info<< "Re-reading thermophysical properties\n" << endl; autoPtr<psiThermo> pThermo ( psiThermo::New(mesh) ); psiThermo& thermo = pThermo(); thermo.validate(args.executable(), "s"); Info<< " Calculating entropy" << endl; volScalarField s ( IOobject ( "s", runTime.timeName(), mesh, IOobject::NO_READ ), thermo.s() ); s.write(); Info<< endl; } Info<< nl << "ExecutionTime = " << runTime.elapsedCpuTime() << " s" << " ClockTime = " << runTime.elapsedClockTime() << " s" << nl << endl; Info<< "End\n" << endl; return 0; } Code:
SOURCE=entropy.C ; g++ -m64 -Dlinux64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O3 -DNoRepository -ftemplate-depth-100 -I/opt/openfoam220/src/thermophysicalModels/basic/lnInclude -I/opt/openfoam220/src/finiteVolume/lnInclude -IlnInclude -I. -I/opt/openfoam220/src/OpenFOAM/lnInclude -I/opt/openfoam220/src/OSspecific/POSIX/lnInclude -fPIC -c $SOURCE -o Make/linux64GccDPOpt/entropy.o entropy.C: In function ‘int main(int, char**)’: entropy.C:70:20: error: ‘class Foam::psiThermo’ has no member named ‘s’ make: *** [Make/linux64GccDPOpt/entropy.o] Error 1
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. Last edited by immortality; April 30, 2013 at 09:22. |
|
April 30, 2013, 18:45 |
|
#8 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
I wrote "S", not "s"!
__________________
Last edited by wyldckat; April 30, 2013 at 18:47. Reason: rearranged the answer and added the now 1st quote |
|
May 1, 2013, 04:51 |
|
#9 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
in the solver its s.I changed s to S but erroe is same:
Code:
Making dependency list for source file entropy.C SOURCE=entropy.C ; g++ -m64 -Dlinux64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O3 -DNoRepository -ftemplate-depth-100 -I/opt/openfoam220/src/thermophysicalModels/basic/lnInclude -I/opt/openfoam220/src/finiteVolume/lnInclude -IlnInclude -I. -I/opt/openfoam220/src/OpenFOAM/lnInclude -I/opt/openfoam220/src/OSspecific/POSIX/lnInclude -fPIC -c $SOURCE -o Make/linux64GccDPOpt/entropy.o entropy.C: In function ‘int main(int, char**)’: entropy.C:70:20: error: ‘class Foam::psiThermo’ has no member named ‘S’ make: *** [Make/linux64GccDPOpt/entropy.o] Error 1
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
May 1, 2013, 09:21 |
|
#10 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
I didn't test it myself before... and I was assuming that if there was a "Cp", there should be an "S" as well... but apparently it doesn't exist yet! Looks like the OpenFOAM authors never needed a complete entropy field. And this isn't very simple to solve either. Here's the situation:
Worst thing is that this requires changing the core source code in OpenFOAM, which I don't know if you want to do this, since this would add even more complexity to your thesis, just because you need to calculate the entropy. I'm going to look a bit more into this, because I think I overlooked something... but I don't know when I might find a better answer for this. Best regards, Bruno
__________________
Last edited by wyldckat; May 1, 2013 at 09:23. Reason: see "edit:" |
|
May 1, 2013, 16:35 |
|
#11 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Ehsan,
I think you can consider yourself very lucky today! I've managed to figure out a solution without having to hack directly into OpenFOAM's source code! It took some C++ voodoo (mostly tricks with templates and macros), but it works! The only downside is that you have to modify the source code every time you change "thermoType" in "constant/thermophysicalProperties". This is exemplified in the comment section in "entropy.C" that starts with: Code:
/* For reference: makeTheLenghtyTypedefName( Code:
//Define here the components of the thermodynamic class #define myLengthyThermoClass makeTheLenghtyTypedefName( \ psiThermo, \ hePsiThermo, \ pureMixture, \ sutherlandTransport, \ sensibleEnthalpy, \ janafThermo, \ perfectGas, \ specie \ ) Code:
wmake ______________________ Now, explain what I had to do:
There's going to be some more people interested in this, because this gives access to the methods for the currently loaded thermodynamic sub-models! Best regards, Bruno
__________________
Last edited by wyldckat; May 2, 2013 at 11:02. Reason: added "Note about OpenFOAM 2.2.0" |
|
May 1, 2013, 16:41 |
|
#12 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
then s is only there and they never have used it?
so there is a lot of work to do with it.could find the equation that entropy calculated from that? if it can be done is very nice.but if is so complicated never mind! ---------------------- your post received after mine! really it works?I don't believe it! its second chance i get today.except for this I figured out an issue i was engaged with for months!what a nice day! surprising.I'll test it soon. i think this thread of mine was a brilliant one and so valuable like those effective questions you had told me about before! the second one is http://www.cfd-online.com/Forums/ope...cp-values.html and third prize with a small distance belongs to: http://www.cfd-online.com/Forums/ope...uring-run.html but no prize I have awarded yet! I'm happy that it can help others. thank you very much. (what a post with a lot of big grin icon)
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. Last edited by immortality; May 1, 2013 at 17:09. |
|
May 1, 2013, 16:49 |
|
#13 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
"S" probably is used internally, but doesn't seem to be used for external consumption, such as generating the complete "S" field.
I don't understand the question... do you mean:
__________________
|
|
May 1, 2013, 17:12 |
|
#14 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
I edited the before post.
I think 1 is more near to my intention. what does 2 mean?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
May 1, 2013, 17:37 |
|
#15 | ||||
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Quote:
Quote:
The molar entropy is calculated depending on the equation of state. For example, in "janaf" it's calculated in this method: Quote:
As for the other question: Quote:
Answer: looks like it's mostly for calculating "Gibbs free energy - g()" and "Helmholtz free energy - a()": https://github.com/OpenFOAM/OpenFOAM...thermoI.H#L172 All of this was found thanks to the Doxygen generated documentation: http://www.openfoam.org/docs/cpp/
__________________
|
|||||
May 2, 2013, 10:42 |
|
#16 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
hi
it displayes this error when compiling: Code:
ehsan@Ehsan-com:~/Desktop/entropyHePsi$ wmake Making dependency list for source file entropy.C could not open file cyclicAMILduInterfaceField.H for source file entropy.C could not open file cyclicAMILduInterface.H for source file entropy.C could not open file cyclicAMIPolyPatch.H for source file entropy.C SOURCE=entropy.C ; g++ -m64 -Dlinux64 -DWM_DP -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -O3 -DNoRepository -ftemplate-depth-100 -I/opt/openfoam220/src/thermophysicalModels/basic/lnInclude -I/opt/openfoam220/src/thermophysicalModels/specie/lnInclude -I/opt/openfoam220/src/finiteVolume/lnInclude -IlnInclude -I. -I/opt/openfoam220/src/OpenFOAM/lnInclude -I/opt/openfoam220/src/OSspecific/POSIX/lnInclude -fPIC -c $SOURCE -o Make/linux64GccDPOpt/entropy.o In file included from /opt/openfoam220/src/finiteVolume/lnInclude/jumpCyclicAMIFvPatchField.H:47:0, from /opt/openfoam220/src/finiteVolume/lnInclude/fixedJumpAMIFvPatchField.H:71, from /opt/openfoam220/src/finiteVolume/lnInclude/fixedJumpAMIFvPatchFields.H:29, from /opt/openfoam220/src/thermophysicalModels/basic/lnInclude/heThermo.C:32, from /opt/openfoam220/src/thermophysicalModels/basic/lnInclude/heThermo.H:320, from /opt/openfoam220/src/thermophysicalModels/basic/lnInclude/hePsiThermo.H:39, from /opt/openfoam220/src/thermophysicalModels/basic/lnInclude/psiThermos.C:41, from entropy.C:32: /opt/openfoam220/src/finiteVolume/lnInclude/cyclicAMIFvPatchField.H:62:40: fatal error: cyclicAMILduInterfaceField.H: No such file or directory compilation terminated. make: *** [Make/linux64GccDPOpt/entropy.o] Error 1
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
May 2, 2013, 11:01 |
|
#17 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
OpenFOAM 2.2.0 has some broken stuff that has been already been fixed in 2.2.x....
Anyway, the quick fix is as follows:
__________________
|
|
May 2, 2013, 11:37 |
|
#18 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
thank you.it works except one of the cases.the error in this case is this:
Code:
ehsan@Ehsan-com:~/Desktop/WR_pimple_p$ entropy /*---------------------------------------------------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.2.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ Build : 2.2.0-b363e8d14789 Exec : entropy Date : May 02 2013 Time : 18:59:03 Host : "Ehsan-com" PID : 7363 Case : /home/ehsan/Desktop/WR_pimple_p nProcs : 1 sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE). fileModificationChecking : Monitoring run-time modified files using timeStampMaster allowSystemOperations : Disallowing user-supplied system call operations // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // Create time Create mesh for time = 0 Time = 0 Re-reading thermophysical properties --> FOAM Warning : From function polyBoundaryMesh::groupPatchIDs() const in file meshes/polyMesh/polyBoundaryMesh/polyBoundaryMesh.C at line 474 Patch empty specifies a group empty which is also a patch name. This might give problems later on. --> FOAM Warning : From function groovyBCFvPatchField<Type>::groovyBCFvPatchField(const fvPatch& p,const DimensionedField<Type, volMesh>& iF,const dictionary& dict) in file groovyBCFvPatchField.C at line 131 No value defined for T on right therefore using 20{0} --> FOAM Warning : From function groovyBCFvPatchField<Type>::groovyBCFvPatchField(const fvPatch& p,const DimensionedField<Type, volMesh>& iF,const dictionary& dict) in file groovyBCFvPatchField.C at line 131 No value defined for T on left therefore using 20{0} #0 Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" #1 Foam::sigFpe::sigHandler(int) in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" #2 in "/lib/x86_64-linux-gnu/libc.so.6" #3 Foam::hePsiThermo<Foam::psiThermo, Foam::pureMixture<Foam::sutherlandTransport<Foam::species::thermo<Foam::janafThermo<Foam::perfectGas<Foam::specie> >, Foam::sensibleEnthalpy> > > >::calculate() in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropy" #4 in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropy" #5 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6" #6 in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropy" Floating point exception S dimensions is in SI,correct? is there any real gas model in OF rather than perfectGas?
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
May 2, 2013, 11:41 |
|
#19 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
The problem is that the T field is not properly defined for the time instance "0". It's assuming values of 0 K (zero Kelvin!) for the "left" and "right" patches, which therefore leads to some massive problems!
Try: Code:
entropy -time '1e-30:'
__________________
|
|
September 8, 2013, 10:18 |
|
#20 |
Senior Member
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 27 |
Hi Bruno
I changed the dictionary for one of my cases as this: Code:
#define myLengthyThermoClass makeTheLenghtyTypedefName( \ psiThermo, \ hePsiThermo, \ pureMixture, \ constTransport, \ sensibleEnthalpy, \ hConstThermo, \ perfectGas, \ specie \ ) Code:
Create time Create mesh for time = 0.01586 Time = 0.01586 Re-reading thermophysical properties [3] [3] [3] --> FOAM FATAL ERROR: [3] Not implemented [3] [3] From function scalar hConstThermo<equationOfState>::s(const scalar p, const scalar T) const [3] in file /opt/openfoam220/src/thermophysicalModels/specie/lnInclude/hConstThermoI.H at line 150. [3] FOAM parallel run aborting [3] [3] #0 Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [3] #1 Foam::error::abort()[1] Calculating S [0] [0] [0] --> FOAM FATAL ERROR: [0] Not implemented [0] [0] From function scalar hConstThermo<equationOfState>::s(const scalar p, const scalar T) const [0] in file /opt/openfoam220/src/thermophysicalModels/specie/lnInclude/hConstThermoI.H at line 150. [0] FOAM parallel run aborting [0] in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [3] #2 [2] [2] [2] --> FOAM FATAL ERROR: [2] Not implemented [2] [2] From function scalar hConstThermo<equationOfState>::s(const scalar p, const scalar T) const [2] in file /opt/openfoam220/src/thermophysicalModels/specie/lnInclude/hConstThermoI.H at line 150. [2] FOAM parallel run aborting [2] [1] [1] --> FOAM FATAL ERROR: [1] Not implemented [1] [1] From function scalar hConstThermo<equationOfState>::s(const scalar p, const scalar T) const [1] in file /opt/openfoam220/src/thermophysicalModels/specie/lnInclude/hConstThermoI.H at line 150. [1] FOAM parallel run aborting [1] [2] #0 Foam::error::printStack(Foam::Ostream&)[0] #0 Foam::error::printStack(Foam::Ostream&)[1] #0 Foam::error::printStack(Foam::Ostream&) [3] in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropyConst" [3] #3 __libc_start_main in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [2] #1 Foam::error::abort() in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [0] #1 Foam::error::abort() in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [1] #1 Foam::error::abort() in "/lib/x86_64-linux-gnu/libc.so.6" [3] #4 in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [2] #2 in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [1] #2 -------------------------------------------------------------------------- MPI_ABORT was invoked on rank 3 in communicator MPI_COMM_WORLD with errorcode 1. NOTE: invoking MPI_ABORT causes Open MPI to kill all MPI processes. You may or may not see output from other processes, depending on exactly when Open MPI kills them. -------------------------------------------------------------------------- [3] in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropyConst" in "/opt/openfoam220/platforms/linux64GccDPOpt/lib/libOpenFOAM.so" [0] #2 [2] in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropyConst" [2] #3 __libc_start_main[1] in "/home/ehsan/OpenFOAM/ehsan-2.2.0/platforms/linux64GccDPOpt/bin/entropyConst" [1] #3 __libc_start_main-------------------------------------------------------------------------- mpirun has exited due to process rank 3 with PID 6760 on node Ehsan-com exiting without calling "finalize". This may have caused other processes in the application to be terminated by signals sent by mpirun (as reported here). --------------------------------------------------------------------------
__________________
Injustice Anywhere is a Threat for Justice Everywhere.Martin Luther King. To Be or Not To Be,Thats the Question! The Only Stupid Question Is the One that Goes Unasked. |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Entropy | Cormac | Main CFD Forum | 5 | March 31, 2023 01:30 |
Superlinear speedup in OpenFOAM 13 | msrinath80 | OpenFOAM Running, Solving & CFD | 18 | March 3, 2015 06:36 |
OpenFOAM 1.6.x, 1.7.0 and 1.7.x are not fully prepared to work with gcc-4.5.x | wyldckat | OpenFOAM Bugs | 18 | October 21, 2010 06:51 |
How to Install OpenFOAM on 64 Ubuntu 9.04 | hansel | OpenFOAM Installation | 62 | March 19, 2010 15:43 |
Velocity spots in openFoam results | Valle | OpenFOAM Running, Solving & CFD | 4 | August 19, 2009 06:53 |