From 0d7c582293cdbd4ab8a10bf2b75111381e94dac8 Mon Sep 17 00:00:00 2001 From: Andrew Heather <a.heather@opencfd.co.uk> Date: Tue, 8 May 2018 13:24:38 +0100 Subject: [PATCH] STYLE: Minor typo corrections --- .../spatialTransform/spatialTransformI.H | 2 +- .../effectivenessHeatExchangerSource.H | 34 +++++++++++-------- 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/src/OpenFOAM/primitives/spatialVectorAlgebra/spatialTransform/spatialTransformI.H b/src/OpenFOAM/primitives/spatialVectorAlgebra/spatialTransform/spatialTransformI.H index 4ab3f7e5124..c1323e1860e 100644 --- a/src/OpenFOAM/primitives/spatialVectorAlgebra/spatialTransform/spatialTransformI.H +++ b/src/OpenFOAM/primitives/spatialVectorAlgebra/spatialTransform/spatialTransformI.H @@ -257,7 +257,7 @@ inline spatialTransform Xrx(const scalar& omega) return spatialTransform(Rx(omega), Zero); } -//- Rotational spatial transformation tensor about the x-axis by omega radians +//- Rotational spatial transformation tensor about the y-axis by omega radians inline spatialTransform Xry(const scalar& omega) { return spatialTransform(Ry(omega), Zero); diff --git a/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H b/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H index 46b3c6fb896..e64bfce4296 100644 --- a/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H +++ b/src/fvOptions/sources/derived/effectivenessHeatExchangerSource/effectivenessHeatExchangerSource.H @@ -107,23 +107,29 @@ Usage \verbatim ( - 0.02 ( - (0.1 A) - (0.2 B) - (0.3 C) - ), - 0.04 + 0.02 + ( + (0.1 A) + (0.2 B) + (0.3 C) + ) + ) ( - (0.1 D) - (0.2 E) - (0.3 F) - ), - 0.06 + 0.04 + ( + (0.1 D) + (0.2 E) + (0.3 F) + ) + ) ( - (0.1 G) - (0.2 H) - (0.3 I) + 0.06 + ( + (0.1 G) + (0.2 H) + (0.3 I) + ) ) ); \endverbatim -- GitLab