mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- all formats except ftr and gts are now read as MeshedSurface (thus sorted immediately). Avoid unnecessary sorting during construction though. - moved cleanup routines completely into PrimitiveMeshedSurface
125 lines
3.5 KiB
C++
125 lines
3.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::fileFormats::NASsurfaceFormat
|
|
|
|
Description
|
|
Nastran surface reader.
|
|
|
|
- Uses the Ansa "$ANSA_NAME" or the Hypermesh "$HMNAME COMP" extensions
|
|
to obtain patch names.
|
|
- Handles Nastran short and long formats, but not free format.
|
|
- Properly handles the Nastran compact floating point notation: \n
|
|
@verbatim
|
|
GRID 28 10.20269-.030265-2.358-8
|
|
@endverbatim
|
|
|
|
SourceFiles
|
|
NASsurfaceFormat.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef NASsurfaceFormat_H
|
|
#define NASsurfaceFormat_H
|
|
|
|
#include "Ostream.H"
|
|
#include "OFstream.H"
|
|
#include "MeshedSurface.H"
|
|
#include "UnsortedMeshedSurface.H"
|
|
#include "NASsurfaceFormatCore.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace fileFormats
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class NASsurfaceFormat Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class Face>
|
|
class NASsurfaceFormat
|
|
:
|
|
public MeshedSurface<Face>,
|
|
public NASsurfaceFormatCore
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
NASsurfaceFormat(const NASsurfaceFormat<Face>&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const NASsurfaceFormat<Face>&);
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from file name
|
|
NASsurfaceFormat(const fileName&);
|
|
|
|
// Selectors
|
|
|
|
//- Read file and return surface
|
|
static autoPtr<MeshedSurface<Face> > New(const fileName& name)
|
|
{
|
|
return autoPtr<MeshedSurface<Face> >
|
|
(
|
|
new NASsurfaceFormat<Face>(name)
|
|
);
|
|
}
|
|
|
|
// Destructor
|
|
|
|
virtual ~NASsurfaceFormat()
|
|
{}
|
|
|
|
// Member Functions
|
|
|
|
//- Read from a file
|
|
virtual bool read(const fileName&);
|
|
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace fileFormats
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
# include "NASsurfaceFormat.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|