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

Rotating Mesh

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 13, 2010, 11:21
Default
  #21
Senior Member
 
Steve Hansel
Join Date: Jun 2009
Location: Colorado, USA
Posts: 112
Rep Power: 16
hansel is on a distinguished road
I have yet to get reasonable numbers with turbDyMFoam. (Probably because I have no idea what to use for turbulence parameters.) I suggest starting with icoDyMFoam and see what you get. I find I get pretty reasonable results on a lot of VAWTs.
hansel is offline   Reply With Quote

Old   March 13, 2010, 11:28
Default
  #22
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
Hi hansel, thanks for your quikly reply.
Sorry but, icoDyMFoam is a solver for LAMINAR flows, isn't it? I can't understand how can I get reasonable results...
enry is offline   Reply With Quote

Old   March 15, 2010, 08:02
Default
  #23
Member
 
Nick Gardiner
Join Date: Apr 2009
Location: Chichester, UK
Posts: 94
Rep Power: 17
NickG is on a distinguished road
Hi enry

I'm fairly new to this but is magUInf the right value?
NickG is offline   Reply With Quote

Old   March 15, 2010, 09:23
Default
  #24
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
Hi Nick,
I found my error...
Since the mesh is 2D, OF tranform it into 3D mesh, even if it solve with 2D solver. So to compare 2D FLUENT's results with pseudo-3D OF's results I have to divide OF results by thickness that OF create.
enry is offline   Reply With Quote

Old   March 15, 2010, 09:42
Default
  #25
Member
 
Nick Gardiner
Join Date: Apr 2009
Location: Chichester, UK
Posts: 94
Rep Power: 17
NickG is on a distinguished road
enry

So how did they compare? Mostly I'm simulating vertical axis marine current turbines and also use CFX while I explore this option.
NickG is offline   Reply With Quote

Old   March 15, 2010, 10:24
Default
  #26
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
Hi Nick,

the curves overlap! Results is very very similar. I haven't done any error percentage until now, but I'm satisfied.
enry is offline   Reply With Quote

Old   March 15, 2010, 10:29
Default
  #27
Senior Member
 
Steve Hansel
Join Date: Jun 2009
Location: Colorado, USA
Posts: 112
Rep Power: 16
hansel is on a distinguished road
Enry, would you post what you used for transport properties and RASProperties? I've never manage to get good numbers form turbDyMFoam.
hansel is offline   Reply With Quote

Old   March 15, 2010, 10:31
Default
  #28
Member
 
Nick Gardiner
Join Date: Apr 2009
Location: Chichester, UK
Posts: 94
Rep Power: 17
NickG is on a distinguished road
Hi again Enry

Sounds good. How did the processing times compare?
NickG is offline   Reply With Quote

Old   March 15, 2010, 10:37
Default
  #29
Member
 
Nick Gardiner
Join Date: Apr 2009
Location: Chichester, UK
Posts: 94
Rep Power: 17
NickG is on a distinguished road
Another question Enry!

Are you using parallel? Can you get forces etc. in parallel? If so how?!

Cheers
Nick
NickG is offline   Reply With Quote

Old   March 15, 2010, 10:52
Default
  #30
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
@Nick: Sorry, not yet, but I think that I will run calculation in parallel untill next month.

@Hansel:

RASProperties:

RASModel RNGkEpsilon;

You can use also realizable K-E. Standard K-E don't work.


TransportProperties:

transportModel Newtonian;

nu nu [0 2 -1 0 0 0 0] 1.46e-05;

CrossPowerLawCoeffs
{
nu0 nu0 [0 2 -1 0 0 0 0] 1e-06;
nuInf nuInf [0 2 -1 0 0 0 0] 1e-06;
m m [0 0 1 0 0 0 0] 1;
n n [0 0 0 0 0 0 0] 1;
}

BirdCarreauCoeffs
{
nu0 nu0 [0 2 -1 0 0 0 0] 1e-06;
nuInf nuInf [0 2 -1 0 0 0 0] 1e-06;
k k [0 0 1 0 0 0 0] 0;
n n [0 0 0 0 0 0 0] 1;
}


ControlDict:

applicationClass turbDyMFoam;

startFrom latestTime;

startTime 0;

stopAt endTime;

endTime 8;

deltaT 0.0001;

writeControl adjustableRunTime;

writeInterval 0.5;

cycleWrite 0;

writeFormat ascii;

writePrecision 6;

writeCompression uncompressed;

timeFormat general;

timePrecision 6;

runTimeModifiable yes;

adjustTimeStep yes;

maxCo 0.3;

maxDeltaT 1.0;

functions
(



forces
{
type forces;
functionObjectLibs ("libforces.so"); //Lib to load
patches (blades); // change to your patch name
rhoName rhoInf;
rhoInf 1.225; //Reference density for fluid
CofR (0 0 0); //Origin for moment calculations
outputControl timeStep;
outputInterval 1;
}
forceCoeffs
{
// rhoInf - reference density
// CofR - Centre of rotation
// dragDir - Direction of drag coefficient
// liftDir - Direction of lift coefficient
// pitchAxis - Pitching moment axis
// magUinf - free stream velocity magnitude
// lRef - reference length
// Aref - reference area
type forceCoeffs;
functionObjectLibs ("libforces.so");
patches (blades);
rhoName rhoInf;
rhoInf 1.225;
CofR (0 0 0);
liftDir (0 1 0);
dragDir (1 0 0);
pitchAxis (0 0 1);
magUInf 6;
lRef 1;
Aref 1;

outputControl timeStep;
outputInterval 1;
}


ggiCheck
{
// Type of functionObject
type ggiCheck;

phi phi;

// Where to load it from (if not already in solver)
functionObjectLibs ("libsampling.so");
}





);

// ************************************************** *********************** //

Fv schemes and Fv solutions are those imposed into turbFoam cavity tutorial.
enry is offline   Reply With Quote

Old   March 15, 2010, 11:17
Default
  #31
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
Hi nick, sorry, I read only your last reply .

FLUENT is faster than OF, because In FLUENT I impose a time step, wile in OF I set adjustTimeStep in order to have CFL<0.3-0.4.
I can say that FLUENT is maybe three - four times faster than OF.
enry is offline   Reply With Quote

Old   March 15, 2010, 11:32
Default
  #32
Senior Member
 
Steve Hansel
Join Date: Jun 2009
Location: Colorado, USA
Posts: 112
Rep Power: 16
hansel is on a distinguished road
Thanks for the info, Enrico. One last question (I think). How fine was your mesh at the turbine's surface?
hansel is offline   Reply With Quote

Old   March 15, 2010, 11:40
Default
  #33
Senior Member
 
Herman
Join Date: Nov 2009
Posts: 122
Rep Power: 16
enry is on a distinguished road
Hi hansel,
I create a mesh that can give me a value of mean y+ about 30. Mesh resolution so depend of course on simulation set up. My first cell is about 1/800 turbine diameter.
I advice you to get some simulation in order to establish your mesh resolution near the blades.
enry is offline   Reply With Quote

Old   July 9, 2010, 13:32
Default Wind Turbine
  #34
New Member
 
Join Date: Jul 2010
Posts: 17
Rep Power: 15
hm86 is on a distinguished road
Hey guys,
I've read this thread and some others and its been helpful. I am trying to simulate a wind turbine at a high rpm in OF1.7. Now, I read online that simpleSRFFoam is not good for this. So my options are pimpleDymFoam or MRFSimpleFoam. I gather that pimpleDymFoam moves the mesh whereas MRFSimpleFoam does not (it adds a source term).

I guess when I think of a wind turbine simulation, I usually imagine just creating a mesh for a single blade and then using periodic boundary conditions but from the looks of it none of you guys are doing that - why is that? And I'm still not sure which one is better - MRFSimpleFoam or pimpleDymFoam. If anyone has plots of results from these versus experimental data, I would love to see it.

Thanks!
hm86 is offline   Reply With Quote

Old   July 9, 2010, 20:11
Default
  #35
Senior Member
 
Steve Hansel
Join Date: Jun 2009
Location: Colorado, USA
Posts: 112
Rep Power: 16
hansel is on a distinguished road
Quote:
Originally Posted by hm86 View Post
Hey guys,

I guess when I think of a wind turbine simulation, I usually imagine just creating a mesh for a single blade and then using periodic boundary conditions but from the looks of it none of you guys are doing that - why is that?
Thanks!
I've been trying to simulate VAWTs, and since the air flows from one side to the other it's not symmetric about the center.

Will OF1.7 rotate meshes?
hansel is offline   Reply With Quote

Old   July 9, 2010, 20:21
Default
  #36
New Member
 
Join Date: Jul 2010
Posts: 17
Rep Power: 15
hm86 is on a distinguished road
If you used pimpleDymFoam, i think that moves the mesh doesnt it?
hm86 is offline   Reply With Quote

Old   December 13, 2010, 03:44
Default
  #37
Member
 
Usit McCarra
Join Date: Oct 2010
Posts: 51
Blog Entries: 2
Rep Power: 15
McCarra is on a distinguished road
Hi Foamers,

I inserted an obstacle in the icoFoam/cavity case and to see what happens when it rotates I've included dynamic mesh effects on icoFoam.

The thing is: The square rotates correctly, but the problem is that the mesh rotates with it, and that produces an invalid mesh (severe non-orthogonality). I would like the mesh to just stretch and contract as the square rotates. I mean, I don't want the points attached to the square to rotate.
To better explain: When you look at the mesh in the wireframe form on paraView, I want the horizontal wires to keep their y(vertical) position and move (expand or contract) horizontally as the square rotates, and I want the vertical wires to keep their x (horizontal) position and move (expand or contract) vertically as the square rotates.

How can I implement this?

I'm on OpenFoam 171 and had to modify icoFoam to create icoDyMFoam. How can I install the 1.5-dev? There I believe lives icoDyMFoam and the GGI utility.

Thanks and regards!

All the best
McCarra is offline   Reply With Quote

Old   April 2, 2013, 16:05
Default
  #38
Member
 
R. P.
Join Date: Jul 2010
Posts: 73
Rep Power: 15
Rophys is on a distinguished road
Hi all,

I made a 2D mesh using the blockMeshDict and now I wish to rotate producing a half geometry. For example, rotating (180 degree) 2D cylinder we obtain a half 3D cylinder.

There is a tool called rotateMesh (http://www.openfoam.com/features/mesh-manipulation.php) but how can I use it ? Any idea ?

Thanks.
Rophys is offline   Reply With Quote

Reply

Tags
openfoam 1.5, rotating mesh


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
Rotating mesh Jesper CFX 14 April 27, 2012 17:57
problem with rotating mesh viet CFX 5 March 9, 2007 23:16
Sliding mesh dmoroian OpenFOAM Running, Solving & CFD 5 November 4, 2005 05:37
Multiple rotating frame VS dynamic mesh Jen FLUENT 3 July 2, 2005 06:31
How to control Minximum mesh space? hung FLUENT 7 April 18, 2005 09:38


All times are GMT -4. The time now is 15:03.