mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
typos
This commit is contained in:
@ -180,7 +180,7 @@ surfaces
|
|||||||
|
|
||||||
triangleCut
|
triangleCut
|
||||||
{
|
{
|
||||||
// Cutingplaneusing iso surface
|
// Cutingplane using iso surface
|
||||||
type cuttingPlane;
|
type cuttingPlane;
|
||||||
planeType pointAndNormal;
|
planeType pointAndNormal;
|
||||||
pointAndNormalDict
|
pointAndNormalDict
|
||||||
|
|||||||
@ -466,12 +466,13 @@ Foam::sampledIsoSurface::sampledIsoSurface
|
|||||||
{
|
{
|
||||||
if (!sampledSurface::interpolate())
|
if (!sampledSurface::interpolate())
|
||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalIOErrorIn
|
||||||
(
|
(
|
||||||
"sampledIsoSurface::sampledIsoSurface"
|
"sampledIsoSurface::sampledIsoSurface"
|
||||||
"(const word&, const polyMesh&, const dictionary&)"
|
"(const word&, const polyMesh&, const dictionary&)",
|
||||||
|
dict
|
||||||
) << "Non-interpolated iso surface not supported since triangles"
|
) << "Non-interpolated iso surface not supported since triangles"
|
||||||
<< " span across cells." << exit(FatalError);
|
<< " span across cells." << exit(FatalIOError);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (zoneID_.index() != -1)
|
if (zoneID_.index() != -1)
|
||||||
@ -480,14 +481,15 @@ Foam::sampledIsoSurface::sampledIsoSurface
|
|||||||
|
|
||||||
if (mesh.boundaryMesh().findPatchID(exposedPatchName_) == -1)
|
if (mesh.boundaryMesh().findPatchID(exposedPatchName_) == -1)
|
||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalIOErrorIn
|
||||||
(
|
(
|
||||||
"sampledIsoSurface::sampledIsoSurface"
|
"sampledIsoSurface::sampledIsoSurface"
|
||||||
"(const word&, const polyMesh&, const dictionary&)"
|
"(const word&, const polyMesh&, const dictionary&)",
|
||||||
|
dict
|
||||||
) << "Cannot find patch " << exposedPatchName_
|
) << "Cannot find patch " << exposedPatchName_
|
||||||
<< " in which to put exposed faces." << endl
|
<< " in which to put exposed faces." << endl
|
||||||
<< "Valid patches are " << mesh.boundaryMesh().names()
|
<< "Valid patches are " << mesh.boundaryMesh().names()
|
||||||
<< exit(FatalError);
|
<< exit(FatalIOError);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (debug && zoneID_.index() != -1)
|
if (debug && zoneID_.index() != -1)
|
||||||
|
|||||||
Reference in New Issue
Block a user