diff --git a/src/sampling/sampledSurface/readers/ensight/ensightSurfaceReader.H b/src/sampling/sampledSurface/readers/ensight/ensightSurfaceReader.H
index 1a71e74150..4a117a3ad6 100644
--- a/src/sampling/sampledSurface/readers/ensight/ensightSurfaceReader.H
+++ b/src/sampling/sampledSurface/readers/ensight/ensightSurfaceReader.H
@@ -22,7 +22,7 @@ License
along with OpenFOAM. If not, see .
Class
- Foam::ensightensightSurfaceReader
+ Foam::ensightSurfaceReader
Description
Ensight format surface reader
@@ -181,7 +181,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const sphericalTensor& reValue = pTraits::zero
+ const sphericalTensor& refValue = pTraits::zero
) const;
//- Return a symmTensor field at a given time
@@ -189,7 +189,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const symmTensor& reValue = pTraits::zero
+ const symmTensor& refValue = pTraits::zero
) const;
//- Return a tensor field at a given time
@@ -197,7 +197,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const tensor& reValue = pTraits::zero
+ const tensor& refValue = pTraits::zero
) const;
};
diff --git a/src/sampling/sampledSurface/readers/surfaceReader.H b/src/sampling/sampledSurface/readers/surfaceReader.H
index 2ac97ff543..33184258b9 100644
--- a/src/sampling/sampledSurface/readers/surfaceReader.H
+++ b/src/sampling/sampledSurface/readers/surfaceReader.H
@@ -128,7 +128,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const sphericalTensor& reValue = pTraits::zero
+ const sphericalTensor& refValue = pTraits::zero
) const = 0;
//- Return a symmTensor field at a given time
@@ -136,7 +136,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const symmTensor& reValue = pTraits::zero
+ const symmTensor& refValue = pTraits::zero
) const = 0;
//- Return a tensor field at a given time
@@ -144,7 +144,7 @@ public:
(
const label timeIndex,
const label fieldIndex,
- const tensor& reValue = pTraits::zero
+ const tensor& refValue = pTraits::zero
) const = 0;
};