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

prescribibg cyclic boundary in openfoam

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 17, 2017, 04:00
Default prescribibg cyclic boundary in openfoam
  #1
Member
 
Mike
Join Date: Apr 2011
Location: Canada
Posts: 83
Rep Power: 14
saeedi is on a distinguished road
Hi there,

I am fairly new to Openfoam and had a question on cyclic BC:

I have a case, with a rectangular domain that I want to prescribe cyclic BC to its front-back and up-down boundaries.

the mesh on those boundaries are structured and fully identical.


In the U and p files inside the 0 folder, I have uased the new names of the boundaries (c_front, ....). Then I used the createPatchDict, and ran it.

However, when I want to decompose it, it gives me errors that seems to be due to the Patch things. Also, inside the Ploymesh folder, I can't find the new names in the file boundary.

Is there any subtle thing that I have to take care when I want to make those boundaries cyclic?

Just in case, here is my createPatchDict

// ----- createPatchDict ----------------------------------------------
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object createPatchDict;
}
// --------------------------------------------------------------------

pointSync false;

patches
(
{
name c_up;
patchInfo
{
type cyclic;
matchTolerance 0.001;
neighbourPatch c_down;
}
constructFrom patches;
patches ( up );
}
{
name c_down;
patchInfo
{
type cyclic;
matchTolerance 0.001;
neighbourPatch c_up;
}
constructFrom patches;
patches ( down );
}
{
name c_front;
patchInfo
{
type cyclic;
matchTolerance 0.001;
neighbourPatch c_back;
}
constructFrom patches;
patches ( front );
}
{
name c_back;
patchInfo
{
type cyclic;
matchTolerance 0.001;
neighbourPatch c_front;
}
constructFrom patches;
patches ( back );
}
);

// --------------------------------------------------------------------
saeedi is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
My radial inflow turbine Abo Anas CFX 27 May 11, 2018 01:44
Setting cyclicAMI and cyclic Boundary conditions (ICEM Mesh to OpenFoam) bowen1024 OpenFOAM Pre-Processing 4 March 1, 2018 19:28
OpenFOAM v3.0+ ?? SBusch OpenFOAM 22 December 26, 2016 14:24
Basic Nozzle-Expander Design karmavatar CFX 20 March 20, 2016 08:44
cyclic boundary condition in OpenFOAM 1.6-ext cctv OpenFOAM Programming & Development 4 December 9, 2013 16:49


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