[vtkusers] opening a c file of openfoam

Altamash Abbasi altamashabbasi at gmail.com
Wed Aug 21 09:17:32 EDT 2013


/*--------------------------------*- 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
(
);
//
************************************************************************* //



This is the file of openfoam which shows geometry. . .  Now the above code
contains the geometry of Square box . . .
http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/ParticleReader . . . I took the
code from the link and add the path of openfoam file and also add the
vtkopenfoamreader.h directory . . . . but the output is only a single dot
in the middle. . . not the square box with no error . . .

Regards
Abbasi
University of Stuttgurt
Germany























On Wed, Aug 21, 2013 at 2:57 PM, David Doria <daviddoria at gmail.com> wrote:

> On Wed, Aug 21, 2013 at 8:51 AM, Altamash Abbasi
> <altamashabbasi at gmail.com> wrote:
> > All things are fine but when i execute this commands these errors are
> coming
> > ???
> >
> > Opetame1 at itlrstud044:~/software/ReadPLOT3D/build> ./ReadPLOT3D
> > ERROR: In
> > /home/stame1/software/VTK6.0.0/Common/ExecutionModel/vtkExecutive.cxx,
> line
> > 754
> > vtkCompositeDataPipeline (0x62d3d0): Algorithm
> > vtkMultiBlockPLOT3DReader(0x62b720) returned failure for request:
> > vtkInformation (0x62eb50)
> >   Debug: Off
> >   Modified Time: 108
> >   Reference Count: 1
> >   Registered Events: (none)
> >   Request: REQUEST_INFORMATION
> >   ALGORITHM_AFTER_FORWARD: 1
> >   FORWARD_DIRECTION: 0
> >
> >
> >
> > ERROR: In
> >
> /home/stame1/software/VTK6.0.0/Common/ExecutionModel/vtkDemandDrivenPipeline.cxx,
> > line 715
> > vtkCompositeDataPipeline (0x6303a0): Input port 0 of algorithm
> > vtkStructuredGridGeometryFilter(0x62fb50) has 0 connections but is not
> > optional.
>
> "Input port 0 of algorithm vtkStructuredGridGeometryFilter(0x62fb50)
> has 0 connections but is not optional." means that you have not called
> SetInput* (or similar) on your vtkStructuredGridGeometryFilter.
>
> David
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.vtk.org/pipermail/vtkusers/attachments/20130821/d62ff664/attachment.htm>


More information about the vtkusers mailing list