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

Flow in a uniformly rotating crucible using SRFPimpleFoam in OpenFoam

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 17, 2020, 11:13
Default Flow in a uniformly rotating crucible using SRFPimpleFoam in OpenFoam
  #1
New Member
 
santi
Join Date: Jan 2020
Posts: 3
Rep Power: 6
ashrujit is on a distinguished road
Hello,

I am new to OpenFoam and CFD. I have been trying to simulate forced convection (water as fluid) in a rotating cylindrical crucible using SRFPimpleFoam.

The system I am trying to establish is this:- the cylindrical crucible should rotate uniformly and due to the rotation of the cylinder the fluid inside would undergo forced convective flow. The system is 'laminar' (set as 'laminar' in 'turbulenceProperties').

I have created the mesh using 'blockMeshDict'. It has three boundary patches - 'bottom', 'top' and 'sides'. Below is the file:-
-------------------------------------------------------------------------------------------------------
vertices
(
(0.25 0 0) // 0
(0 0.25 0) // 1
(-0.25 0 0) // 2
(0 -0.25 0) // 3 bottom circle

(0.25 0 1) // 4
(0 0.25 1) // 5
(-0.25 0 1) // 6
(0 -0.25 1) // 7 top circle

(0 0 0) // 8 centre bottom
(0 0 1) // 9 centre up
);

blocks
(
hex (0 1 8 8 4 5 9 9) (25 25 100) simpleGrading (1 1 1)

hex (1 2 8 8 5 6 9 9) (25 25 100) simpleGrading (1 1 1)
hex (2 3 8 8 6 7 9 9) (25 25 100) simpleGrading (1 1 1)
hex (3 0 8 8 7 4 9 9) (25 25 100) simpleGrading (1 1 1)
);

edges
(
arc 0 1 (0.17677 0.17677 0)
arc 1 2 (-0.17677 0.17677 0)
arc 2 3 (-0.17677 -0.17677 0)
arc 3 0 (0.17677 -0.17677 0)

arc 4 5 (0.17677 0.17677 1)
arc 5 6 (-0.17677 0.17677 1)
arc 6 7 (-0.17677 -0.17677 1)
arc 7 4 (0.17677 -0.17677 1)
);

boundary
(
bottom
{
type wall;
faces
(
(0 8 8 1)
(1 8 8 2)
(2 8 8 3)
(3 8 8 0)
);
}
top
{
type wall;
faces
(
(5 9 9 4)
(6 9 9 5)
(7 9 9 6)
(4 9 9 7)
);
}
sides
{
type wall;
faces
(
(0 1 5 4)
(1 2 6 5) // (1 2 5 6)
(2 3 7 6)
(3 0 4 7)
);
}
);

mergePatchPairs
(
);
-----------------------------------------------------------------------------------------------------

The boundary conditions for 'Urel' as follows:-
--------------------------------------------
dimensions [0 1 -1 0 0 0 0];

internalField uniform (0 0 0);

boundaryField
{
bottom
{
type noSlip;
}

top
{
type fixedValue;
value uniform (0 0 0);
}

sides
{
type noSlip;
}
}
-----------------------------------------------------------------------------------------------------------

The boundary conditions for 'p':-

-------------------------------------------
dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
top
{
type zeroGradient;
}

bottom
{
type zeroGradient;
}

sides
{
type zeroGradient;
}
}
------------------------------------------------------------------------------------------------
The SRFProperties file is as below:-

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

SRFModel rpm;

origin (0 0 0);
axis (0 0 1);

rpmCoeffs
{
rpm 60;
}


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


The problem I am facing is that - in the results it seems that the whole cylinder is rotating along with the 'top' part which should not rotate and is open surface. Images of the mesh and 'U' screenshot are attached.

My questions are:-
1. Am is using the correct solver i.e. "SRFPimpleFoam"?

2. How do I make the 'top' boundary non-rotating?

3. Are my boundary conditions correct?

Any suggestions are much appreciated. Thanks in advance.
Attached Images
File Type: png cylinder.png (31.4 KB, 9 views)
File Type: png U.png (34.6 KB, 10 views)
File Type: png U sliced.png (10.3 KB, 9 views)
File Type: jpg glyph.jpg (59.2 KB, 9 views)
ashrujit is offline   Reply With Quote

Reply


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
About Some Concepts:Laminar flow, turbulent flow, steady flow and time-dependent flow Jing Main CFD Forum 8 October 5, 2018 17:02
OpenFOAM 5.0 Released CFDFoundation OpenFOAM Announcements from OpenFOAM Foundation 11 June 5, 2018 23:48
Suggestion for a new sub-forum at OpenFOAM's Forum wyldckat Site Help, Feedback & Discussions 20 October 28, 2014 09:04
Volume flow rate boundary condition in OpenFOAM mayank.dce2k7 OpenFOAM Running, Solving & CFD 13 August 11, 2014 20:16
pipe flow OpenFOAM stix OpenFOAM Running, Solving & CFD 1 March 4, 2013 16:44


All times are GMT -4. The time now is 09:56.