|
[Sponsors] |
October 27, 2013, 02:58 |
problem in axisymmetric Mesh.
|
#1 |
Member
sajad
Join Date: Aug 2013
Posts: 71
Rep Power: 13 |
Greetings to all.
I want run this mesh but I see the error. PHP Code:
PHP Code:
HTML Code:
http://openfoamwiki.net/index.php/Main_ContribExamples/AxiSymmetric after change polyMesh in terminal I run: blockMesh is it wrong? where is my drawback?? *best regards* sajad |
|
November 2, 2013, 23:48 |
Using wedge elements
|
#2 | ||
Member
|
Sajad,
In order to create wedge elements with blockMesh, you must be careful to follow the guidelines provided in the OpenFOAM documentation (5.3.3): http://www.openfoam.org/docs/user/blockMesh.php Also, note that when specifying patches, Quote:
Code:
/*--------------------------------*- 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.012; vertices ( (0.0999 -0.04362 0) // new 0, old 4 (0.0999 -0.04362 5) // new 1, old 5 (0.0999 0.04362 5) // new 2, old 2 (0.0999 0.04362 0) // new 3, old 1 (0 0 0) // new 4, old 0 (0 0 5) // new 5, old 3 // Old vertices: //(0 0 0) //0 //(0.0999 0.04362 0) //1 //(0.0999 0.04362 5) //2 //(0 0 5) //3 //(0.0999 -0.04362 0) //4 //(0.0999 -0.04362 5) //5 ); blocks ( hex (0 1 2 3 4 5 5 4) (40 1 200) simpleGrading (1 1 1) ); edges ( ); boundary ( front { type wedge; faces ( (0 1 5 4) ); } back { type wedge; faces ( (2 3 4 5) ); } fixedkWall { type wall; faces ( (0 1 2 3) ); } bottom { type patch; faces ( (1 2 5 5) ); } top { type patch; faces ( (0 3 4 4) ); } axis { type empty; faces ( (4 5 5 4) ); } ); mergePatchPairs ( ); // ************************************************************************* // Quote:
As defined, the angle is closer to 25 degrees. You can check this with 'checkMesh' : Code:
.... Checking geometry... Overall domain bounding box (0 -0.00052344 0) (0.0011988 0.00052344 0.06) Mesh (non-empty, non-wedge) directions (1 0 1) Mesh (non-empty) directions (1 1 1) Wedge front with angle 23.587845 degrees Wedge back with angle 23.587845 degrees All edges aligned with or perpendicular to non-empty directions. Boundary openness (-8.8718496e-14 -3.0464533e-16 -1.9670129e-19) OK. Max cell openness = 2.5596435e-16 OK. Max aspect ratio = 500.5005 OK. Minimum face area = 1.5687497e-11. Maximum face area = 1.57032e-06. Face area magnitudes OK. Min volume = 2.3531245e-14. Max volume = 9.3889668e-12. Total volume = 3.7649992e-08. Cell volumes OK. Mesh non-orthogonality Max: 0 average: 0 Non-orthogonality check OK. Face pyramids OK. Max skewness = 1.0915773 OK. Coupled point location match (average 0) OK. Mesh OK. End -Nuc |
|||
November 25, 2014, 12:23 |
Negative pyramid volume warning
|
#3 |
Member
Vignesh
Join Date: Oct 2012
Location: Darmstadt, Germany
Posts: 66
Rep Power: 14 |
Dear All,
I am trying to create an axisymmetric mesh. The blockMeshDict i edited is shown below. Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.0.0 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // angle 5 deg // radius 1 convertToMeters 1; vertices ( (0 0 0) (0.49952 0 0.02180) (0.49952 1 0.02180) (0 1 0) (0.49952 0 -0.02180) (0.49952 1 -0.02180) ); blocks ( hex (0 4 1 0 3 5 2 3) (60 1 60) simpleGrading (1 1 1) ); edges ( ); boundary ( front { type wedge; faces ( (0 1 2 3) ); } back { type wedge; faces ( (0 3 5 4) ); } sideWall { type wall; faces ( (1 4 5 2) ); } bottom { type wall; faces ( (0 4 1 0) ); } top { type patch; faces ( (3 5 2 3) ); } axis { type empty; faces ( (0 3 3 0) ); } ); mergePatchPairs ( ); // ************************************************************************* // Code:
--> FOAM Warning : From function cellModel::mag(const labelList&, const pointField&) in file meshes/meshShapes/cellModel/cellModel.C at line 128 zero or negative pyramid volume: -0.00362985 for face 1 --> FOAM Warning : From function cellModel::mag(const labelList&, const pointField&) in file meshes/meshShapes/cellModel/cellModel.C at line 128 zero or negative pyramid volume: -0.00181492 for face 2 --> FOAM Warning : From function cellModel::mag(const labelList&, const pointField&) in file meshes/meshShapes/cellModel/cellModel.C at line 128 zero or negative pyramid volume: -0.00181492 for face 3 --> FOAM Warning : From function cellModel::mag(const labelList&, const pointField&) in file meshes/meshShapes/cellModel/cellModel.C at line 128 zero or negative pyramid volume: -0.00181492 for face 4 --> FOAM Warning : From function cellModel::mag(const labelList&, const pointField&) in file meshes/meshShapes/cellModel/cellModel.C at line 128 zero or negative pyramid volume: -0.00181492 for face 5 --> FOAM Warning : From function blockMesh::createTopology(IOdictionary&) in file blockMesh/blockMeshTopology.C at line 255 negative volume block : 0, probably defined inside-out
__________________
Thanks and Regards Vignesh |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
[ICEM] Problem with using the Delaunay volume mesh method | manahara | ANSYS Meshing & Geometry | 12 | December 25, 2014 22:54 |
[ICEM] problem in mesh output | mehrzad | ANSYS Meshing & Geometry | 2 | December 10, 2014 19:07 |
3D Hybrid Mesh Errors | DarrenC | ANSYS Meshing & Geometry | 11 | August 5, 2013 07:42 |
[ICEM] Problem making structured mesh on a surface | froztbear | ANSYS Meshing & Geometry | 4 | November 10, 2011 09:52 |
Icemcfd 11: Loss of mesh from surface mesh option? | Joe | CFX | 2 | March 26, 2007 19:10 |