CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Main CFD Forum (https://www.cfd-online.com/Forums/main/)
-   -   Opening blockMesh File With VTK (https://www.cfd-online.com/Forums/main/122566-opening-blockmesh-file-vtk.html)

Abbasi047 August 22, 2013 06:41

Opening blockMesh File With VTK
 
But i'm facing a problem. This below code is of openfoam cavity case which shows geometry. . . this code contains the geometry of Square box. It open's quite fine with PARAVIEW but i want to open it with VTK6.0.0. . . .http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/ReadOBJ . . . I took the code from the link and add the path of openfoam file and also add the vtkOpeFOAMReader.h . . . .but the output is only empty GUI with green color and no geometry and with no error . . . can it happens ?? if yes then do you know wheres the Problem???


Regards

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.x |
| \\ / 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)
(1 0 0)
(1 1 0)
(0 1 0)
(0 0 0.1)
(1 0 0.1)
(1 1 0.1)
(0 1 0.1)
);

blocks
(
hex (0 1 2 3 4 5 6 7) (20 20 1) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
movingWall
{
type wall;
faces
(
(3 7 6 2)
);
}
fixedWalls
{
type wall;
faces
(
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
);
}
frontAndBack
{
type empty;
faces
(
(0 3 2 1)
(4 5 6 7)
);
}
);

mergePatchPairs
(
);
// ************************************************** *********************** //


All times are GMT -4. The time now is 23:01.