surfaceWriter Class Referenceabstract

Base class for surface writers. More...

Inheritance diagram for surfaceWriter:
[legend]
Collaboration diagram for surfaceWriter:
[legend]

Public Member Functions

 TypeName ("surfaceWriter")
 Runtime type information. More...
 
 declareRunTimeSelectionTable (autoPtr, surfaceWriter, word,(),())
 
 declareRunTimeSelectionTable (autoPtr, surfaceWriter, wordDict,(const dictionary &writeOpts),(writeOpts))
 
 surfaceWriter ()
 Default construct. More...
 
 surfaceWriter (const dictionary &options)
 Default construct with specified options. More...
 
 surfaceWriter (const meshedSurf &surf, bool parallel=Pstream::parRun(), const dictionary &options=dictionary())
 Construct from components. More...
 
 surfaceWriter (const pointField &points, const faceList &faces, bool parallel=Pstream::parRun(), const dictionary &options=dictionary())
 Construct from components. More...
 
virtual ~surfaceWriter ()
 Destructor. Calls close() More...
 
virtual bool enabled () const
 
virtual bool separateGeometry () const
 True if the surface format requires geometry in a separate file. More...
 
virtual bool usesFaceIds () const
 True if the writer format uses faceIds as part of its output. More...
 
virtual bool needsUpdate () const
 Does the writer need an update (eg, lagging behind surface changes) More...
 
virtual bool wroteData () const
 Geometry or fields written since the last open? More...
 
virtual bool expire ()
 
virtual void clear ()
 
virtual void setSurface (const meshedSurf &surf, bool parallel)
 
virtual void setSurface (const pointField &points, const faceList &faces, bool parallel)
 
virtual void setSurface (const meshedSurf &surf)
 
virtual void setSurface (const pointField &points, const faceList &faces)
 
bool hasSurface () const
 Writer is associated with a surface. More...
 
bool empty () const
 The surface to write is empty if the global number of faces is zero. More...
 
label size () const
 The global number of faces for the associated surface. More...
 
label nFields () const
 The number of expected output fields. More...
 
label nFields (const label n)
 Set the number of expected output fields. More...
 
bool isPointData () const
 Are the field data to be treated as point data? More...
 
bool isPointData (const bool on)
 Set handling of field data to face/point data. More...
 
bool useTimeDir () const
 Should a time directory be spliced into the output path? More...
 
bool useTimeDir (const bool on)
 Enable/disable use of spliced output path. More...
 
bool verbose () const
 Get output verbosity. More...
 
bool verbose (const bool on)
 Enable/disable verbose output. More...
 
scalar mergeDim () const
 The current value of the point merge dimension (metre) More...
 
scalar mergeDim (const scalar dist)
 Change the point merge dimension (metre) More...
 
bool hasTime () const
 True if there is a known time. More...
 
const wordtimeName () const
 The current time value/name. More...
 
scalar timeValue () const
 The current time value/name. More...
 
void setTime (const instant &inst)
 Set the current time. More...
 
void setTime (scalar timeValue)
 Set current time from timeValue, auto generating the name. More...
 
void setTime (scalar timeValue, const word &timeName)
 Set current time from timeValue and timeName. More...
 
void unsetTime ()
 Clear the current time. More...
 
virtual void beginTime (const Time &t)
 Begin a time-step. More...
 
virtual void beginTime (const instant &inst)
 Begin a time-step. More...
 
virtual void endTime ()
 End a time-step. More...
 
virtual void open (const fileName &outputPath)
 Open for output on specified path, using existing surface. More...
 
virtual void open (const pointField &points, const faceList &faces, const fileName &outputPath, bool parallel)
 Open from components. More...
 
virtual void open (const meshedSurf &surf, const fileName &outputPath, bool parallel)
 Open from components. More...
 
virtual void open (const pointField &points, const faceList &faces, const fileName &outputPath)
 Open from components, with the current parallel/serial treatment. More...
 
virtual void open (const meshedSurf &surf, const fileName &outputPath)
 Open from components, with the current parallel/serial treatment. More...
 
virtual void close ()
 Finish output, performing any necessary cleanup. More...
 
virtual fileName write ()=0
 Write separate surface geometry to file. More...
 
virtual fileName write (const word &fieldName, const Field< label > &values)=0
 Write field of label (per face or vertex) More...
 
virtual fileName write (const word &fieldName, const Field< scalar > &values)=0
 Write field of scalar (per face or vertex) More...
 
virtual fileName write (const word &fieldName, const Field< vector > &values)=0
 Write field of vector (per face or vertex) More...
 
virtual fileName write (const word &fieldName, const Field< sphericalTensor > &values)=0
 Write field of sphericalTensor (per face or vertex) More...
 
virtual fileName write (const word &fieldName, const Field< symmTensor > &values)=0
 Write field of symmTensor (per face or vertex) More...
 
virtual fileName write (const word &fieldName, const Field< tensor > &values)=0
 Write field of tensor (per face or vertex) More...
 
virtual InfoProxy< surfaceWriterinfo () const
 Return info proxy. More...
 
template<class Type >
Foam::tmp< Foam::Field< Type > > mergeFieldTemplate (const Field< Type > &fld) const
 

Static Public Member Functions

static bool supportedType (const word &writeType)
 True if New is likely to succeed for this writeType. More...
 
static autoPtr< surfaceWriterNew (const word &writeType)
 Return a reference to the selected surfaceWriter. More...
 
static autoPtr< surfaceWriterNew (const word &writeType, const dictionary &writeOptions)
 Return a reference to the selected surfaceWriter. More...
 

Static Public Attributes

static scalar defaultMergeDim = 1e-8
 The default merge dimension (1e-8) More...
 

Protected Member Functions

bool checkOpen () const
 Verify that the outputPath_ has been set or FatalError. More...
 
virtual bool merge () const
 
const meshedSurfsurface () const
 
template<class Type >
tmp< Field< Type > > mergeFieldTemplate (const Field< Type > &fld) const
 Gather (merge) fields with renumbering and shrinking for point data. More...
 
tmp< Field< label > > mergeField (const Field< label > &fld) const
 
tmp< Field< scalar > > mergeField (const Field< scalar > &fld) const
 
tmp< Field< vector > > mergeField (const Field< vector > &fld) const
 
tmp< Field< sphericalTensor > > mergeField (const Field< sphericalTensor > &fld) const
 
tmp< Field< symmTensor > > mergeField (const Field< symmTensor > &fld) const
 
tmp< Field< tensor > > mergeField (const Field< tensor > &fld) const
 
template<class Type >
fileName writeTemplate (const word &fieldName, const Field< Type > &localValues)
 Dummy templated write operation. More...
 

Protected Attributes

std::reference_wrapper< const meshedSurfsurf_
 Reference to a surface. More...
 
meshedSurfRef surfComp_
 Reference to raw surface components. More...
 
bool useComponents_
 Use raw surface components instead of surface reference. More...
 
bool upToDate_
 The topology/surface is up-to-date? More...
 
bool wroteGeom_
 Track if geometry has been written since the last open. More...
 
bool parallel_
 Writing in parallel (via master) More...
 
bool useTimeDir_
 Insert additional time sub-directory in the output path. More...
 
bool isPointData_
 Is point vs cell data. More...
 
bool verbose_
 Additional output verbosity. More...
 
label nFields_
 The number of fields. More...
 
scalar mergeDim_
 Dimension for merging. More...
 
mergedSurf merged_
 Merging information and the resulting merged surface (parallel) More...
 
instant currTime_
 The current time value/name. More...
 
fileName outputPath_
 The full output directory and file (surface) name. More...
 

Static Protected Attributes

static const meshedSurf::emptySurface emptySurface_
 Placeholder. More...
 

Friends

Ostreamoperator<< (Ostream &os, const InfoProxy< surfaceWriter > &ip)
 Output info proxy. More...
 

Detailed Description

Base class for surface writers.

The surfaceWriter interface is rather large since we need a writer that can either be initially defined without a surface association and have that added at a later stage, or be defined with a surface association.

formatOptions
{
    someFormat // Eg, ensight, vtk, etc
    {
        verbose         true;
    }
}

Format options:

Property Description Required Default
verbose Additional output verbosity no no
Note
For surface formats that require geometry in a separate file, it is the responsibility of the implementation (not the caller) to ensure that this occurs.
Source files

Definition at line 114 of file surfaceWriter.H.

Constructor & Destructor Documentation

◆ surfaceWriter() [1/4]

Default construct.

Definition at line 140 of file surfaceWriter.C.

References surfaceWriter::close().

Here is the call graph for this function:

◆ surfaceWriter() [2/4]

surfaceWriter ( const dictionary options)
explicit

Default construct with specified options.

Definition at line 161 of file surfaceWriter.C.

References dictionary::readIfPresent(), and surfaceWriter::verbose_.

Here is the call graph for this function:

◆ surfaceWriter() [3/4]

surfaceWriter ( const meshedSurf surf,
bool  parallel = Pstream::parRun(),
const dictionary options = dictionary() 
)
explicit

Construct from components.

Definition at line 170 of file surfaceWriter.C.

◆ surfaceWriter() [4/4]

surfaceWriter ( const pointField points,
const faceList faces,
bool  parallel = Pstream::parRun(),
const dictionary options = dictionary() 
)

Construct from components.

Definition at line 183 of file surfaceWriter.C.

References points.

◆ ~surfaceWriter()

~surfaceWriter ( )
virtual

Destructor. Calls close()

Definition at line 198 of file surfaceWriter.C.

Member Function Documentation

◆ checkOpen()

bool checkOpen ( ) const
protected

Verify that the outputPath_ has been set or FatalError.

Definition at line 433 of file surfaceWriter.C.

References Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::nl, and Foam::type().

Here is the call graph for this function:

◆ merge()

bool merge ( ) const
protectedvirtual

Merge surfaces if they are not already upToDate (parallel) or simply mark the surface as being up-to-date

Definition at line 446 of file surfaceWriter.C.

References UPstream::parRun().

Here is the call graph for this function:

◆ surface()

const Foam::meshedSurf & surface ( ) const
protected

Merge surfaces (if not upToDate) and return merged or the regular surface

Definition at line 472 of file surfaceWriter.C.

References UPstream::parRun().

Here is the call graph for this function:

◆ mergeFieldTemplate() [1/2]

tmp<Field<Type> > mergeFieldTemplate ( const Field< Type > &  fld) const
protected

Gather (merge) fields with renumbering and shrinking for point data.

◆ mergeField() [1/6]

tmp<Field< label > > mergeField ( const Field< label > &  fld) const
protected

◆ mergeField() [2/6]

tmp<Field< scalar > > mergeField ( const Field< scalar > &  fld) const
protected

◆ mergeField() [3/6]

Foam::tmp< Foam::Field< Foam::vector > > mergeField ( const Field< vector > &  fld) const
protected

Definition at line 542 of file surfaceWriter.C.

◆ mergeField() [4/6]

Foam::tmp< Foam::Field< Foam::sphericalTensor > > mergeField ( const Field< sphericalTensor > &  fld) const
protected

Definition at line 543 of file surfaceWriter.C.

◆ mergeField() [5/6]

Foam::tmp< Foam::Field< Foam::symmTensor > > mergeField ( const Field< symmTensor > &  fld) const
protected

Definition at line 544 of file surfaceWriter.C.

◆ mergeField() [6/6]

Foam::tmp< Foam::Field< Foam::tensor > > mergeField ( const Field< tensor > &  fld) const
protected

Definition at line 545 of file surfaceWriter.C.

◆ writeTemplate()

fileName writeTemplate ( const word fieldName,
const Field< Type > &  localValues 
)
inlineprotected

Dummy templated write operation.

Parameters
fieldNameName of field
localValuesLocal field values to write

Definition at line 203 of file surfaceWriter.H.

References fileName::null, surfaceWriter::write(), and surfaceWriter::wroteGeom_.

Here is the call graph for this function:

◆ TypeName()

TypeName ( "surfaceWriter"  )

Runtime type information.

◆ declareRunTimeSelectionTable() [1/2]

declareRunTimeSelectionTable ( autoPtr  ,
surfaceWriter  ,
word  ,
()  ,
()   
)

◆ declareRunTimeSelectionTable() [2/2]

declareRunTimeSelectionTable ( autoPtr  ,
surfaceWriter  ,
wordDict  ,
(const dictionary &writeOpts)  ,
(writeOpts)   
)

◆ supportedType()

bool supportedType ( const word writeType)
static

True if New is likely to succeed for this writeType.

Definition at line 52 of file surfaceWriter.C.

References MeshedSurfaceProxy< Face >::canWriteType().

Here is the call graph for this function:

◆ New() [1/2]

Foam::autoPtr< Foam::surfaceWriter > New ( const word writeType)
static

Return a reference to the selected surfaceWriter.

Definition at line 64 of file surfaceWriter.C.

References Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::flatOutput(), and Foam::nl.

Referenced by averageNeighbourFvGeometryScheme::movePoints(), surfaceNoise::read(), areaWrite::read(), Curle::read(), surfaceFieldValue::read(), and propellerInfo::setSampleDiskSurface().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ New() [2/2]

Foam::autoPtr< Foam::surfaceWriter > New ( const word writeType,
const dictionary writeOptions 
)
static

Return a reference to the selected surfaceWriter.

Select with extra write option

Definition at line 95 of file surfaceWriter.C.

References Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::nl, and MeshedSurfaceProxy< Face >::writeTypes().

Here is the call graph for this function:

◆ enabled()

virtual bool enabled ( ) const
inlinevirtual

The writer is enabled. If the writer is not enabled, it may be possible for the caller to skip various preparatory operations.

This method is primarily useful for the null writer

Reimplemented in nullWriter.

Definition at line 304 of file surfaceWriter.H.

◆ separateGeometry()

virtual bool separateGeometry ( ) const
inlinevirtual

True if the surface format requires geometry in a separate file.

Reimplemented in ensightWriter, foamWriter, starcdWriter, and proxyWriter.

Definition at line 310 of file surfaceWriter.H.

◆ usesFaceIds()

virtual bool usesFaceIds ( ) const
inlinevirtual

True if the writer format uses faceIds as part of its output.

Element ids are used by various CAE formats (abaqus, nastran, starcd, ...)

Reimplemented in nastranWriter, abaqusWriter, and starcdWriter.

Definition at line 318 of file surfaceWriter.H.

◆ needsUpdate()

bool needsUpdate ( ) const
virtual

Does the writer need an update (eg, lagging behind surface changes)

Reimplemented in nullWriter.

Definition at line 374 of file surfaceWriter.C.

Referenced by areaWrite::write().

Here is the caller graph for this function:

◆ wroteData()

bool wroteData ( ) const
virtual

Geometry or fields written since the last open?

Reimplemented in nullWriter.

Definition at line 380 of file surfaceWriter.C.

Referenced by areaWrite::write().

Here is the caller graph for this function:

◆ expire()

bool expire ( )
virtual

Mark that surface changed and the writer will need an update, and set nFields = 0.

May also free up unneeded data. Return false if it was previously already expired.

Definition at line 386 of file surfaceWriter.C.

◆ clear()

void clear ( )
virtual

Close any open output, remove association with a surface and expire the writer. The parallel flag remains untouched.

Definition at line 316 of file surfaceWriter.C.

◆ setSurface() [1/4]

void setSurface ( const meshedSurf surf,
bool  parallel 
)
virtual

Change association with a surface, expire the writer with defined parallel/serial treatment

Reimplemented in nullWriter.

Definition at line 327 of file surfaceWriter.C.

References UPstream::parRun().

Referenced by areaWrite::write().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setSurface() [2/4]

void setSurface ( const pointField points,
const faceList faces,
bool  parallel 
)
virtual

Change association with a surface, expire the writer with defined parallel/serial treatment

Reimplemented in nullWriter.

Definition at line 341 of file surfaceWriter.C.

References UPstream::parRun(), and points.

Here is the call graph for this function:

◆ setSurface() [3/4]

void setSurface ( const meshedSurf surf)
virtual

Change association with a surface, expire the writer with the current parallel/serial treatment

Definition at line 356 of file surfaceWriter.C.

◆ setSurface() [4/4]

void setSurface ( const pointField points,
const faceList faces 
)
virtual

Change association with a surface, expire the writer with the current parallel/serial treatment

Definition at line 365 of file surfaceWriter.C.

References points.

◆ hasSurface()

bool hasSurface ( ) const

Writer is associated with a surface.

Definition at line 401 of file surfaceWriter.C.

◆ empty()

bool empty ( ) const

The surface to write is empty if the global number of faces is zero.

Definition at line 407 of file surfaceWriter.C.

References Foam::returnReduce().

Here is the call graph for this function:

◆ size()

Foam::label size ( ) const

The global number of faces for the associated surface.

Definition at line 420 of file surfaceWriter.C.

References Foam::returnReduce().

Here is the call graph for this function:

◆ nFields() [1/2]

Foam::label nFields ( ) const
inline

The number of expected output fields.

Currently only used by the legacy VTK format.

Definition at line 30 of file surfaceWriterI.H.

References surfaceWriter::nFields_.

Referenced by areaWrite::write().

Here is the caller graph for this function:

◆ nFields() [2/2]

Foam::label nFields ( const label  n)
inline

Set the number of expected output fields.

Currently only used by the legacy VTK format.

Returns
old value

Definition at line 36 of file surfaceWriterI.H.

References n.

◆ isPointData() [1/2]

bool isPointData ( ) const
inline

Are the field data to be treated as point data?

Definition at line 44 of file surfaceWriterI.H.

◆ isPointData() [2/2]

bool isPointData ( const bool  on)
inline

Set handling of field data to face/point data.

Returns
old value

Definition at line 50 of file surfaceWriterI.H.

◆ useTimeDir() [1/2]

bool useTimeDir ( ) const
inline

Should a time directory be spliced into the output path?

Definition at line 58 of file surfaceWriterI.H.

◆ useTimeDir() [2/2]

bool useTimeDir ( const bool  on)
inline

Enable/disable use of spliced output path.

Returns
old value

Definition at line 64 of file surfaceWriterI.H.

◆ verbose() [1/2]

bool verbose ( ) const
inline

Get output verbosity.

Definition at line 72 of file surfaceWriterI.H.

◆ verbose() [2/2]

bool verbose ( const bool  on)
inline

Enable/disable verbose output.

Returns
old value

Definition at line 78 of file surfaceWriterI.H.

◆ mergeDim() [1/2]

Foam::scalar mergeDim ( ) const
inline

The current value of the point merge dimension (metre)

Definition at line 86 of file surfaceWriterI.H.

◆ mergeDim() [2/2]

Foam::scalar mergeDim ( const scalar  dist)
inline

Change the point merge dimension (metre)

Returns
old value

Definition at line 92 of file surfaceWriterI.H.

◆ hasTime()

bool hasTime ( ) const
inline

True if there is a known time.

Definition at line 100 of file surfaceWriterI.H.

◆ timeName()

const Foam::word & timeName ( ) const
inline

The current time value/name.

Definition at line 106 of file surfaceWriterI.H.

◆ timeValue()

Foam::scalar timeValue ( ) const
inline

The current time value/name.

Definition at line 112 of file surfaceWriterI.H.

◆ setTime() [1/3]

void setTime ( const instant inst)

Set the current time.

Definition at line 206 of file surfaceWriter.C.

◆ setTime() [2/3]

void setTime ( scalar  timeValue)

Set current time from timeValue, auto generating the name.

Definition at line 212 of file surfaceWriter.C.

◆ setTime() [3/3]

void setTime ( scalar  timeValue,
const word timeName 
)

Set current time from timeValue and timeName.

Definition at line 218 of file surfaceWriter.C.

References timeName.

◆ unsetTime()

void unsetTime ( )

Clear the current time.

Definition at line 225 of file surfaceWriter.C.

◆ beginTime() [1/2]

void beginTime ( const Time t)
virtual

Begin a time-step.

Reimplemented in vtkWriter.

Definition at line 232 of file surfaceWriter.C.

References setTime(), Time::timeName(), and dimensioned< Type >::value().

Referenced by vtkWriter::beginTime(), and areaWrite::write().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ beginTime() [2/2]

void beginTime ( const instant inst)
virtual

Begin a time-step.

Reimplemented in vtkWriter.

Definition at line 238 of file surfaceWriter.C.

References setTime().

Here is the call graph for this function:

◆ endTime()

void endTime ( )
virtual

End a time-step.

Reimplemented in vtkWriter.

Definition at line 244 of file surfaceWriter.C.

Referenced by vtkWriter::endTime(), and areaWrite::write().

Here is the caller graph for this function:

◆ open() [1/5]

void open ( const fileName outputPath)
virtual

Open for output on specified path, using existing surface.

Reimplemented in nullWriter.

Definition at line 250 of file surfaceWriter.C.

Referenced by proxyWriter::proxyWriter(), and areaWrite::write().

Here is the caller graph for this function:

◆ open() [2/5]

void open ( const pointField points,
const faceList faces,
const fileName outputPath,
bool  parallel 
)
virtual

Open from components.

Definition at line 271 of file surfaceWriter.C.

References points.

◆ open() [3/5]

void open ( const meshedSurf surf,
const fileName outputPath,
bool  parallel 
)
virtual

Open from components.

Definition at line 258 of file surfaceWriter.C.

◆ open() [4/5]

void open ( const pointField points,
const faceList faces,
const fileName outputPath 
)
virtual

Open from components, with the current parallel/serial treatment.

Definition at line 297 of file surfaceWriter.C.

References points.

◆ open() [5/5]

void open ( const meshedSurf surf,
const fileName outputPath 
)
virtual

Open from components, with the current parallel/serial treatment.

Definition at line 285 of file surfaceWriter.C.

◆ close()

void close ( )
virtual

Finish output, performing any necessary cleanup.

Reimplemented in ensightWriter, and vtkWriter.

Definition at line 309 of file surfaceWriter.C.

Referenced by vtkWriter::close(), ensightWriter::close(), and surfaceWriter::surfaceWriter().

Here is the caller graph for this function:

◆ write() [1/7]

virtual fileName write ( )
pure virtual

Write separate surface geometry to file.

Implemented in nastranWriter, boundaryDataWriter, ensightWriter, abaqusWriter, vtkWriter, rawWriter, foamWriter, starcdWriter, x3dWriter, proxyWriter, and nullWriter.

Referenced by areaWrite::write(), and surfaceWriter::writeTemplate().

Here is the caller graph for this function:

◆ write() [2/7]

virtual fileName write ( const word fieldName,
const Field< label > &  values 
)
pure virtual

Write field of label (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ write() [3/7]

virtual fileName write ( const word fieldName,
const Field< scalar > &  values 
)
pure virtual

Write field of scalar (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ write() [4/7]

virtual fileName write ( const word fieldName,
const Field< vector > &  values 
)
pure virtual

Write field of vector (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ write() [5/7]

virtual fileName write ( const word fieldName,
const Field< sphericalTensor > &  values 
)
pure virtual

Write field of sphericalTensor (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ write() [6/7]

virtual fileName write ( const word fieldName,
const Field< symmTensor > &  values 
)
pure virtual

Write field of symmTensor (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ write() [7/7]

virtual fileName write ( const word fieldName,
const Field< tensor > &  values 
)
pure virtual

Write field of tensor (per face or vertex)

Parameters
fieldNameName of field
valuesField values to write

◆ info()

virtual InfoProxy<surfaceWriter> info ( ) const
inlinevirtual

Return info proxy.

Definition at line 540 of file surfaceWriter.H.

◆ mergeFieldTemplate() [2/2]

Foam::tmp<Foam::Field<Type> > mergeFieldTemplate ( const Field< Type > &  fld) const

Definition at line 496 of file surfaceWriter.C.

References fld, globalIndex::gatherOp(), Foam::inplaceReorder(), UPstream::master(), Foam::New(), and UPstream::parRun().

Here is the call graph for this function:

Friends And Related Function Documentation

◆ operator<<

Ostream& operator<< ( Ostream os,
const InfoProxy< surfaceWriter > &  ip 
)
friend

Output info proxy.

Member Data Documentation

◆ emptySurface_

const Foam::meshedSurf::emptySurface emptySurface_
staticprotected

Placeholder.

Definition at line 121 of file surfaceWriter.H.

◆ surf_

std::reference_wrapper<const meshedSurf> surf_
protected

Reference to a surface.

Definition at line 127 of file surfaceWriter.H.

◆ surfComp_

meshedSurfRef surfComp_
protected

Reference to raw surface components.

Definition at line 130 of file surfaceWriter.H.

◆ useComponents_

bool useComponents_
protected

Use raw surface components instead of surface reference.

Definition at line 133 of file surfaceWriter.H.

◆ upToDate_

bool upToDate_
mutableprotected

The topology/surface is up-to-date?

Definition at line 136 of file surfaceWriter.H.

Referenced by Foam::operator<<().

◆ wroteGeom_

bool wroteGeom_
mutableprotected

Track if geometry has been written since the last open.

Definition at line 139 of file surfaceWriter.H.

Referenced by surfaceWriter::writeTemplate().

◆ parallel_

bool parallel_
protected

Writing in parallel (via master)

Definition at line 142 of file surfaceWriter.H.

◆ useTimeDir_

bool useTimeDir_
protected

Insert additional time sub-directory in the output path.

Definition at line 145 of file surfaceWriter.H.

◆ isPointData_

bool isPointData_
protected

Is point vs cell data.

Definition at line 148 of file surfaceWriter.H.

Referenced by Foam::operator<<().

◆ verbose_

bool verbose_
protected

Additional output verbosity.

Definition at line 151 of file surfaceWriter.H.

Referenced by surfaceWriter::surfaceWriter().

◆ nFields_

label nFields_
protected

The number of fields.

Definition at line 154 of file surfaceWriter.H.

Referenced by surfaceWriter::nFields(), and Foam::operator<<().

◆ mergeDim_

scalar mergeDim_
protected

Dimension for merging.

Definition at line 157 of file surfaceWriter.H.

◆ merged_

mergedSurf merged_
mutableprotected

Merging information and the resulting merged surface (parallel)

Definition at line 160 of file surfaceWriter.H.

◆ currTime_

instant currTime_
protected

The current time value/name.

Definition at line 163 of file surfaceWriter.H.

Referenced by Foam::operator<<().

◆ outputPath_

fileName outputPath_
protected

The full output directory and file (surface) name.

Definition at line 166 of file surfaceWriter.H.

Referenced by Foam::operator<<().

◆ defaultMergeDim

Foam::scalar defaultMergeDim = 1e-8
static

The default merge dimension (1e-8)

Definition at line 221 of file surfaceWriter.H.


The documentation for this class was generated from the following files: