Change field loop index from "fieldI" to "fieldi"

This commit is contained in:
Henry Weller
2016-05-02 18:20:48 +01:00
parent f83975a701
commit 3cd9b4f5d7
67 changed files with 378 additions and 378 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -147,7 +147,7 @@ void ${typeName}FvOption${SourceType}::correct
void ${typeName}FvOption${SourceType}::addSup
(
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
)
{
if (${verbose:-false})
@ -165,7 +165,7 @@ void ${typeName}FvOption${SourceType}::addSup
(
const volScalarField& rho,
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
)
{
if (${verbose:-false})
@ -182,7 +182,7 @@ void ${typeName}FvOption${SourceType}::addSup
void ${typeName}FvOption${SourceType}::setValue
(
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
)
{
if (${verbose:-false})

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2013-2014 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -33,13 +33,13 @@ Description
codeAddSup
(
fvMatrix<Type}>& eqn,
const label fieldI
const label fieldi
)
setValue
(
fvMatrix<Type}>& eqn,
const label fieldI
const label fieldi
)
where :
@ -159,7 +159,7 @@ public:
virtual void addSup
(
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
);
//- Explicit and implicit matrix contributions for compressible
@ -168,14 +168,14 @@ public:
(
const volScalarField& rho,
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
);
//- Set value
virtual void setValue
(
fvMatrix<${TemplateType}>& eqn,
const label fieldI
const label fieldi
);
};