|
[Sponsors] |
[Other] 'Cannot find patchField entry for outlet' |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
November 24, 2013, 16:50 |
'Cannot find patchField entry for outlet'
|
#1 |
Member
Join Date: Aug 2012
Posts: 41
Rep Power: 14 |
Hi,
I have a geometry that is essentially a cube with the left face as inlet and the right face as outlet. I can generate the mesh with blockMesh but I'm trying to use simpleFoam solver "Cannot find patchField entry for outlet". This is what I have done. not sure if the cyclic patches would be necessary? wondering how I could corect this? Thanks much, any help on this will be appreciated /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.2.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // convertToMeters 0.1; vertices ( (0 0 0) (8 0 0) (8 4 0) (0 4 0) (0 0 1) (8 0 1) (8 4 1) (0 4 1) ); blocks ( hex (0 1 2 3 4 5 6 7) (40 40 1) simpleGrading (1 1 1) ); edges ( ); boundary ( inlet { type patch; faces ( (0 4 7 3) ); } outlet { type patch; faces ( (1 2 6 5) ); left { type cyclic; neighbourPatch right; faces ((0 4 7 3)); } right { type cyclic; neighbourPatch left; faces ((1 5 6 2)); } } fixedWalls { type wall; faces ( (0 1 5 4) (0 3 2 1) (3 7 6 2) (4 5 6 7) ); } ); // ************************************************** *********************** // |
|
November 25, 2013, 01:29 |
|
#2 |
Senior Member
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0 |
in your blockMeshDict example you are missing a
Code:
{ |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Cannot find patchField entry for InletWall | range_rover | OpenFOAM Running, Solving & CFD | 5 | November 18, 2020 22:21 |
Parallel snappyHexMesh problem: Cannot find patchField entry for procBoundary2to7 | hconel | OpenFOAM Pre-Processing | 0 | October 5, 2018 18:22 |
OpenFOAM 1.6-ext git installation on Ubuntu 11.10 x64 | Attesz | OpenFOAM Installation | 45 | January 13, 2012 13:38 |
Problem Building OF on Centos cluster (no admin rights) | CKH | OpenFOAM Installation | 5 | November 13, 2011 07:32 |
Converting Starccm+ mesh | Ladnam | OpenFOAM | 0 | September 14, 2011 07:30 |