|
[Sponsors] |
May 17, 2017, 05:00 |
prescribibg cyclic boundary in openfoam
|
#1 |
Member
Mike
Join Date: Apr 2011
Location: Canada
Posts: 83
Rep Power: 15 |
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 ); } ); // -------------------------------------------------------------------- |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
My radial inflow turbine | Abo Anas | CFX | 27 | May 11, 2018 02:44 |
Setting cyclicAMI and cyclic Boundary conditions (ICEM Mesh to OpenFoam) | bowen1024 | OpenFOAM Pre-Processing | 4 | March 1, 2018 20:28 |
OpenFOAM v3.0+ ?? | SBusch | OpenFOAM | 22 | December 26, 2016 15:24 |
Basic Nozzle-Expander Design | karmavatar | CFX | 20 | March 20, 2016 09:44 |
cyclic boundary condition in OpenFOAM 1.6-ext | cctv | OpenFOAM Programming & Development | 4 | December 9, 2013 17:49 |