MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / writeDict

Function writeDict

src/surfMesh/surfZone/surfZone/surfZone.C:113–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111
112
113void Foam::surfZone::writeDict(Ostream& os) const
114{
115 os << indent << name() << nl
116 << indent << token::BEGIN_BLOCK << incrIndent << nl;
117
118 surfZoneIdentifier::write(os);
119 os.writeKeyword("nFaces") << size() << token::END_STATEMENT << nl;
120 os.writeKeyword("startFace") << start() << token::END_STATEMENT << nl;
121
122 os << decrIndent << indent << token::END_BLOCK << endl;
123}
124
125
126// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //

Callers

nothing calls this directly

Calls 4

sizeFunction · 0.85
startFunction · 0.85
nameFunction · 0.50
writeFunction · 0.50

Tested by

no test coverage detected