Minor typo corrections

Patch contributed by Timo Niemi, VTT.
This commit is contained in:
Henry Weller
2023-01-24 18:27:37 +00:00
parent 9875bfb418
commit 00ca8905a0
27 changed files with 72 additions and 73 deletions

View File

@ -25,7 +25,7 @@ Class
Foam::solvers::solid
Description
Solver module for thermal transport is solid domains and regions for
Solver module for thermal transport in solid domains and regions for
conjugate heat transfer, HVAC and similar applications, with optional mesh
motion and mesh topology changes.

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -292,7 +292,7 @@ class vtkPVFoam
// TODO: regions
List<polyDecomp> regionPolyDecomp_;
//- Decomposed cells information (cellZonas)
//- Decomposed cells information (cellZones)
List<polyDecomp> zonePolyDecomp_;
//- Decomposed cells information (cellSets)

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -128,7 +128,7 @@ public:
//- Construct given size and initial value
Field(const label, const Type&);
//- Construct given size and initialed to zero
//- Construct given size and initialised to zero
Field(const label, const zero);
//- Copy constructor of a UList\<Type\>

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -84,7 +84,7 @@ inline void Foam::pointConstraint::combine(const pointConstraint& pc)
{
// Save single normal
vector n = second();
// Apply to supplied point constaint
// Apply to supplied point constant
operator=(pc);
applyConstraint(n);
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2017-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2017-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -481,7 +481,7 @@ protected:
);
//- Helper: check IO for local existence. Like filePathInfo but
// without parent searchign and instance searching
// without parent searching and instance searching
bool exists(const dirIndexList&, IOobject& io) const;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -127,7 +127,7 @@ class GAMGSolver
//- Hierarchy of interface internal coefficients
PtrList<FieldField<Field, scalar>> interfaceLevelsIntCoeffs_;
//- LU decompsed coarsest matrix
//- LU decomposed coarsest matrix
autoPtr<LUscalarMatrix> coarsestLUMatrixPtr_;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,7 @@ Class
Foam::lduPrimitiveMesh
Description
Simplest contrete lduMesh which stores the addressing needed by lduMatrix.
Simplest concrete lduMesh which stores the addressing needed by lduMatrix.
SourceFiles
lduPrimitiveMesh.C

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -71,7 +71,7 @@ inline edgeList cellModel::edges(const labelList& pointLabels) const
{
edgeList e(edges_.size());
// Translate model lebels into global labels
// Translate model labels into global labels
forAll(edges_, edgeI)
{
e[edgeI] =

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -62,13 +62,13 @@ class processorPolyPatch
int myProcNo_;
int neighbProcNo_;
//- Processor-neighbbour patch face centres
//- Processor-neighbour patch face centres
vectorField neighbFaceCentres_;
//- Processor-neighbbour patch face areas
//- Processor-neighbour patch face areas
vectorField neighbFaceAreas_;
//- Processor-neighbbour patch neighbour cell centres
//- Processor-neighbour patch neighbour cell centres
vectorField neighbFaceCellCentres_;
//- Corresponding neighbouring local point label for every local point
@ -243,19 +243,19 @@ public:
const label neighbProcNo
);
//- Return processor-neighbbour patch face centres
//- Return processor-neighbour patch face centres
const vectorField& neighbFaceCentres() const
{
return neighbFaceCentres_;
}
//- Return processor-neighbbour patch face areas
//- Return processor-neighbour patch face areas
const vectorField& neighbFaceAreas() const
{
return neighbFaceAreas_;
}
//- Return processor-neighbbour patch neighbour cell centres
//- Return processor-neighbour patch neighbour cell centres
const vectorField& neighbFaceCellCentres() const
{
return neighbFaceCellCentres_;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2012-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,7 @@ Class
Foam::MRFZoneList
Description
List container for MRF zomes
List container for MRF zones
SourceFiles
MRFZoneList.C

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -40,7 +40,7 @@ Description
The \c Foam::solvers::buoyancy::New function returns an \c autoPtr<buoyancy>
pointer containing either a \c buoyancy class pointer if the \c p_rgh field
file is available othewise a \c nullptr which can be checked using
file is available otherwise a \c nullptr which can be checked using
the \c autoPtr::valid() member function.
SourceFiles

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -57,7 +57,7 @@ Usage
p | pressure field name | no | p
cyclicPatch | cyclic patch name | yes |
orientation | 1 or -1 used to switch flow direction | yes|
openFraction | current opatch open fraction [0-1]| yes |
openFraction | current patch open fraction [0-1]| yes |
openingTime | time taken to open the baffle | yes |
maxOpenFractionDelta | max open fraction change per timestep | yes |
\endtable

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -133,7 +133,7 @@ class CrankNicolsonDdtScheme
const fvMesh& mesh
);
//- Constructor from components, initisalised to zero with given
//- Constructor from components, initialised to zero with given
// dimensions.
DDt0Field
(
@ -191,7 +191,7 @@ class CrankNicolsonDdtScheme
template<class GeoField>
dimensionedScalar rDtCoef0_(const DDt0Field<GeoField>&) const;
//- Return ddt0 multiplied by the off-centreing coefficient
//- Return ddt0 multiplied by the off-centering coefficient
template<class GeoField>
tmp<GeoField> offCentre_(const GeoField& ddt0) const;
@ -222,7 +222,7 @@ public:
return fv::ddtScheme<Type>::mesh();
}
//- Return the current off-centreing coefficient
//- Return the current off-centering coefficient
scalar ocCoeff() const
{
return ocCoeff_->value(mesh().time().value());

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -142,7 +142,7 @@ public:
//- Return the face-interpolate of the given cell field
// with the given owner and neighbour weigting factors
// with the given owner and neighbour weighting factors
static tmp<SurfaceField<Type>>
interpolate
(

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019-2021 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2019-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -132,7 +132,7 @@ class comfort
//- Maximum number of correctors for cloth temperature
int maxClothIter_;
//- Switch to use volume weighted velocity field for caluclation
//- Switch to use volume weighted velocity field for calculation
Switch meanVelocity_;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2020-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -26,7 +26,7 @@ Class
Description
Calculates the estimated flow heat transfer coefficient at wall patches
as the volScalarField field 'kappaEff' using one of equeations bellow.
as the volScalarField field 'kappaEff' using one of equations bellow.
kappaEff model, given by:
@ -99,7 +99,7 @@ Usage
\endtable
Note:
Cp and rho are required only for incompressible flow calclulations.
Cp and rho are required only for incompressible flow calculations.
SourceFiles
kappaEff.C

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -78,7 +78,7 @@ class loadBalancer
cpuTime cpuTime_;
//- Enable multi-constraint load-balancing in which separate weights
// are provided to the distrubutor for each of the CPU loads.
// are provided to the distributor for each of the CPU loads.
// When disabled the CPU loads are summed and a single weight per cell
// is provided to the distrubutor.
// Defaults to true.

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2021-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2021-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,7 @@ Class
Foam::fvMeshStitchers::moving
Description
Mesh stitcher for movng meshes
Mesh stitcher for moving meshes
SourceFiles
fvMeshStitchersMoving.C

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2014-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2014-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -109,7 +109,7 @@ Usage
Cu | Model coefficient [1/s] | no | 100000
q | Model coefficient | no | 0.001
beta | Thermal expansion coefficient [1/K] | yes |
g | Accelerartion due to gravity | no |
g | Acceleration due to gravity | no |
\endtable
SourceFiles

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,7 @@ Class
Foam::exponentialDiffusivity
Description
Mesh motion diffusivity maipulator which returns the exp(-alpha/D)
Mesh motion diffusivity manipulator which returns the exp(-alpha/D)
of the given diffusivity D.
SourceFiles

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,7 +25,7 @@ Class
Foam::quadraticDiffusivity
Description
Mesh motion diffusivity maipulator which returns the sqr of the given
Mesh motion diffusivity manipulator which returns the sqr of the given
diffusivity.
SourceFiles

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -221,9 +221,9 @@ void Foam::SprayCloud<CloudType>::info()
scalar dMax = 1.0e+6*this->Dmax();
scalar pen = this->penetration(0.95);
Info << " D10, D32, Dmax (mu) = " << d10 << ", " << d32
<< ", " << dMax << nl
<< " Liquid penetration 95% mass (m) = " << pen << endl;
Info<< " D10, D32, Dmax (mu) = " << d10 << ", " << d32
<< ", " << dMax << nl
<< " Liquid penetration 95% mass (m) = " << pen << endl;
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -26,7 +26,7 @@ Class
Description
Base for a set of schemes which integrate simple ODEs which arise from
semi-implcit rate expressions.
semi-implicit rate expressions.
\f[
\frac{d \phi}{d t} = A - B \phi

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2013-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -312,11 +312,11 @@ void Foam::PackingModels::Implicit<CloudType>::cacheFields(const bool store)
);
uCorrect_->correctBoundaryConditions();
// Info << endl;
// Info << " alpha: " << alpha_.primitiveField() << endl;
// Info << "phiCorrect: " << phiCorrect_->primitiveField() << endl;
// Info << " uCorrect: " << uCorrect_->primitiveField() << endl;
// Info << endl;
// Info<< endl;
// Info<< " alpha: " << alpha_.primitiveField() << endl;
// Info<< "phiCorrect: " << phiCorrect_->primitiveField() << endl;
// Info<< " uCorrect: " << uCorrect_->primitiveField() << endl;
// Info<< endl;
}
else
{

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -309,8 +309,8 @@ public:
scalar layerThickness
(
const label nLayers,
const scalar firstLayerThickess,
const scalar finalLayerThickess,
const scalar firstLayerThickness,
const scalar finalLayerThickness,
const scalar totalThickness,
const scalar expansionRatio
) const;
@ -320,8 +320,8 @@ public:
scalar layerExpansionRatio
(
const label nLayers,
const scalar firstLayerThickess,
const scalar finalLayerThickess,
const scalar firstLayerThickness,
const scalar finalLayerThickness,
const scalar totalThickness,
const scalar expansionRatio
) const;
@ -331,8 +331,8 @@ public:
scalar firstLayerThickness
(
const label nLayers,
const scalar firstLayerThickess,
const scalar finalLayerThickess,
const scalar firstLayerThickness,
const scalar finalLayerThickness,
const scalar totalThickness,
const scalar expansionRatio
) const;

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -25,8 +25,7 @@ Class
Foam::NonEquilibriumReversibleReaction
Description
Simple extension of Reaction to handle reversible reactions using
equilibrium thermodynamics.
Simple extension of Reaction to handle non-equilibrium reversible reactions.
SourceFiles
NonEquilibriumReversibleReaction.C

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2020-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -195,7 +195,7 @@ class MPLICcell
// Multicut addressing
//- Is addressnig computed?
//- Is addressing computed?
bool addressingCalculated_;
//- Local edge faces