mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: edgeMesh: indentation etc.
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -31,6 +31,7 @@ SourceFiles
|
|||||||
edgeMeshI.H
|
edgeMeshI.H
|
||||||
edgeMesh.C
|
edgeMesh.C
|
||||||
edgeMeshIO.C
|
edgeMeshIO.C
|
||||||
|
edgeMeshNew.C
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -48,14 +48,11 @@ Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New
|
|||||||
<< exit(FatalError);
|
<< exit(FatalError);
|
||||||
}
|
}
|
||||||
|
|
||||||
return autoPtr< edgeMesh >(cstrIter()(name));
|
return autoPtr<edgeMesh>(cstrIter()(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New
|
Foam::autoPtr<Foam::edgeMesh> Foam::edgeMesh::New(const fileName& name)
|
||||||
(
|
|
||||||
const fileName& name
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
word ext = name.ext();
|
word ext = name.ext();
|
||||||
if (ext == "gz")
|
if (ext == "gz")
|
||||||
|
|||||||
@ -161,7 +161,7 @@ private:
|
|||||||
// points and edges, unsorted
|
// points and edges, unsorted
|
||||||
vectorField normals_;
|
vectorField normals_;
|
||||||
|
|
||||||
//-
|
//- Type per normal: which side of normal to mesh
|
||||||
List<sideVolumeType> normalVolumeTypes_;
|
List<sideVolumeType> normalVolumeTypes_;
|
||||||
|
|
||||||
//- Flat and open edges require the direction of the edge
|
//- Flat and open edges require the direction of the edge
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -78,6 +78,8 @@ public:
|
|||||||
featureEdgeMesh(const IOobject&, const featureEdgeMesh&);
|
featureEdgeMesh(const IOobject&, const featureEdgeMesh&);
|
||||||
|
|
||||||
|
|
||||||
|
// IO
|
||||||
|
|
||||||
//- ReadData function required for regIOobject read operation
|
//- ReadData function required for regIOobject read operation
|
||||||
virtual bool readData(Istream&);
|
virtual bool readData(Istream&);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user