CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   Is there any tutorials about rotating machineturbomachinery such as pump etc (https://www.cfd-online.com/Forums/openfoam-solving/60292-there-any-tutorials-about-rotating-machineturbomachinery-such-pump-etc.html)

andycong March 2, 2006 04:26

Hi, I start a simulation which
 
Hi, I start a simulation which has a rotating zone, but I don't know what can do this in FOAM, could anyone help me?

Best Regards.

gschaider March 7, 2006 04:58

I'd suggest you check out thes
 
I'd suggest you check out these threads (the search function of the MessageBoard might give you further hints):

http://www.cfd-online.com/OpenFOAM_D...ges/1/770.html
http://www.cfd-online.com/OpenFOAM_D...es/1/1701.html

hani March 7, 2006 05:10

Hi Andy, If you are looking
 
Hi Andy,

If you are looking for a tutorial on rotor-stator interaction, have a look at icoTopoFoam, mixer2D.

If you only want to compute the flow in a rotating reference frame, add something similar to the following to a suitable solver:

dimensionedVector Omega
(
"Omega",
dimensionSet(0, 0, -1, 0, 0),
vector(0, 2*M_PI/60*(-595), 0) //The last number is RPM
);
// Calculate the centrifugal force
volVectorField Fcent = (Omega ^ (Omega ^ mesh.C()));

tmp<fvvectormatrix> UEqn
(
fvm::div(phi, U)
+ turbulence->divR(U)
+ (2*Omega ^ U) // Coriolis force
+ Fcent // Centrifugal force, computed ONCE above
);

Håkan.

andycong March 7, 2006 08:29

Thank you for your reply. And
 
Thank you for your reply.
And I think I am looking for the rotor-stator interaction.


All times are GMT -4. The time now is 04:19.