GeometricField::dimensionedInteralFieldRef() -> GeometricField::ref()
In order to simplify expressions involving dimensioned internal field it is preferable to use a simpler access convention. Given that GeometricField is derived from DimensionedField it is simply a matter of de-referencing this underlying type unlike the boundary field which is peripheral information. For consistency with the new convention in "tmp" "dimensionedInteralFieldRef()" has been renamed "ref()".
This commit is contained in:
@ -714,7 +714,7 @@ Foam::GeometricField<Type, PatchField, GeoMesh>::~GeometricField()
|
||||
template<class Type, template<class> class PatchField, class GeoMesh>
|
||||
typename
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::Internal&
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::dimensionedInternalFieldRef()
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::ref()
|
||||
{
|
||||
this->setUpToDate();
|
||||
storeOldTimes();
|
||||
@ -1138,7 +1138,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator=
|
||||
|
||||
// Only assign field contents not ID
|
||||
|
||||
dimensionedInternalFieldRef() = gf.dimensionedInternalField();
|
||||
ref() = gf();
|
||||
boundaryFieldRef() = gf.boundaryField();
|
||||
}
|
||||
|
||||
@ -1182,7 +1182,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator=
|
||||
const dimensioned<Type>& dt
|
||||
)
|
||||
{
|
||||
dimensionedInternalFieldRef() = dt;
|
||||
ref() = dt;
|
||||
boundaryFieldRef() = dt.value();
|
||||
}
|
||||
|
||||
@ -1199,7 +1199,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator==
|
||||
|
||||
// Only assign field contents not ID
|
||||
|
||||
dimensionedInternalFieldRef() = gf.dimensionedInternalField();
|
||||
ref() = gf();
|
||||
boundaryFieldRef() == gf.boundaryField();
|
||||
|
||||
tgf.clear();
|
||||
@ -1212,7 +1212,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator==
|
||||
const dimensioned<Type>& dt
|
||||
)
|
||||
{
|
||||
dimensionedInternalFieldRef() = dt;
|
||||
ref() = dt;
|
||||
boundaryFieldRef() == dt.value();
|
||||
}
|
||||
|
||||
@ -1227,7 +1227,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator op \
|
||||
{ \
|
||||
checkField(*this, gf, #op); \
|
||||
\
|
||||
dimensionedInternalFieldRef() op gf.dimensionedInternalField(); \
|
||||
ref() op gf(); \
|
||||
boundaryFieldRef() op gf.boundaryField(); \
|
||||
} \
|
||||
\
|
||||
@ -1247,7 +1247,7 @@ void Foam::GeometricField<Type, PatchField, GeoMesh>::operator op \
|
||||
const dimensioned<TYPE>& dt \
|
||||
) \
|
||||
{ \
|
||||
dimensionedInternalFieldRef() op dt; \
|
||||
ref() op dt; \
|
||||
boundaryFieldRef() op dt.value(); \
|
||||
}
|
||||
|
||||
@ -1268,7 +1268,7 @@ Foam::Ostream& Foam::operator<<
|
||||
const GeometricField<Type, PatchField, GeoMesh>& gf
|
||||
)
|
||||
{
|
||||
gf.dimensionedInternalField().writeData(os, "internalField");
|
||||
gf().writeData(os, "internalField");
|
||||
os << nl;
|
||||
gf.boundaryField().writeEntry("boundaryField", os);
|
||||
|
||||
|
||||
@ -447,7 +447,7 @@ public:
|
||||
//- Return a reference to the dimensioned internal field
|
||||
// Note: this increments the event counter and checks the
|
||||
// old-time fields; avoid in loops.
|
||||
Internal& dimensionedInternalFieldRef();
|
||||
Internal& ref();
|
||||
|
||||
//- Return a const-reference to the dimensioned internal field
|
||||
inline const Internal& dimensionedInternalField() const;
|
||||
|
||||
@ -33,17 +33,6 @@ Foam::GeometricField<Type, PatchField, GeoMesh>::null()
|
||||
}
|
||||
|
||||
|
||||
template<class Type, template<class> class PatchField, class GeoMesh>
|
||||
inline
|
||||
const typename
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::Internal&
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::
|
||||
operator()() const
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
template<class Type, template<class> class PatchField, class GeoMesh>
|
||||
inline
|
||||
const typename
|
||||
@ -90,4 +79,17 @@ Foam::GeometricField<Type, PatchField, GeoMesh>::timeIndex()
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
||||
|
||||
template<class Type, template<class> class PatchField, class GeoMesh>
|
||||
inline
|
||||
const typename
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::Internal&
|
||||
Foam::GeometricField<Type, PatchField, GeoMesh>::
|
||||
operator()() const
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -695,7 +695,7 @@ void kkLOmega::correct()
|
||||
- fvm::Sp(Cw2_*sqr(fw)*omega_, omega_)
|
||||
+ (
|
||||
Cw3_*fOmega(lambdaEff, lambdaT)*alphaTEff*sqr(fw)*sqrt(kt_)
|
||||
)().dimensionedInternalField()/pow3(y_.dimensionedInternalField())
|
||||
)()()/pow3(y_())
|
||||
);
|
||||
|
||||
omegaEqn.ref().relax();
|
||||
|
||||
@ -57,7 +57,7 @@ Foam::laplaceFilter::laplaceFilter(const fvMesh& mesh, scalar widthCoeff)
|
||||
calculatedFvPatchScalarField::typeName
|
||||
)
|
||||
{
|
||||
coeff_.dimensionedInternalFieldRef() = pow(mesh.V(), 2.0/3.0)/widthCoeff_;
|
||||
coeff_.ref() = pow(mesh.V(), 2.0/3.0)/widthCoeff_;
|
||||
}
|
||||
|
||||
|
||||
@ -78,7 +78,7 @@ Foam::laplaceFilter::laplaceFilter(const fvMesh& mesh, const dictionary& bd)
|
||||
calculatedFvPatchScalarField::typeName
|
||||
)
|
||||
{
|
||||
coeff_.dimensionedInternalFieldRef() = pow(mesh.V(), 2.0/3.0)/widthCoeff_;
|
||||
coeff_.ref() = pow(mesh.V(), 2.0/3.0)/widthCoeff_;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -158,7 +158,7 @@ tmp<volScalarField> SpalartAllmarasDES<BasicTurbulenceModel>::dTilda
|
||||
) const
|
||||
{
|
||||
tmp<volScalarField> tdTilda(CDES_*this->delta());
|
||||
min(tdTilda.ref().dimensionedInternalFieldRef(), tdTilda(), y_);
|
||||
min(tdTilda.ref().ref(), tdTilda(), y_);
|
||||
return tdTilda;
|
||||
}
|
||||
|
||||
|
||||
@ -161,7 +161,7 @@ singleStepCombustion<CombThermoType, ThermoType>::dQ() const
|
||||
if (this->active())
|
||||
{
|
||||
volScalarField& dQ = tdQ.ref();
|
||||
dQ.dimensionedInternalFieldRef() = this->mesh().V()*Sh()();
|
||||
dQ.ref() = this->mesh().V()*Sh()();
|
||||
}
|
||||
return tdQ;
|
||||
}
|
||||
|
||||
@ -157,7 +157,7 @@ void Foam::fvMeshAdder::MapVolField
|
||||
(
|
||||
bfld[newPatchi], // old field
|
||||
mesh.boundary()[newPatchi], // new fvPatch
|
||||
fld.dimensionedInternalField(), // new internal field
|
||||
fld(), // new internal field
|
||||
patchMapper // mapper (new to old)
|
||||
)
|
||||
);
|
||||
@ -211,7 +211,7 @@ void Foam::fvMeshAdder::MapVolField
|
||||
(
|
||||
fldToAdd.boundaryField()[patchi], // added field
|
||||
mesh.boundary()[newPatchi], // new fvPatch
|
||||
fld.dimensionedInternalField(), // new int. field
|
||||
fld(), // new int. field
|
||||
patchMapper // mapper
|
||||
)
|
||||
);
|
||||
@ -464,7 +464,7 @@ void Foam::fvMeshAdder::MapSurfaceField
|
||||
(
|
||||
bfld[newPatchi], // old field
|
||||
mesh.boundary()[newPatchi], // new fvPatch
|
||||
fld.dimensionedInternalField(), // new internal field
|
||||
fld(), // new internal field
|
||||
patchMapper // mapper (new to old)
|
||||
)
|
||||
);
|
||||
@ -518,7 +518,7 @@ void Foam::fvMeshAdder::MapSurfaceField
|
||||
(
|
||||
fldToAdd.boundaryField()[patchi],// added field
|
||||
mesh.boundary()[newPatchi], // new fvPatch
|
||||
fld.dimensionedInternalField(), // new int. field
|
||||
fld(), // new int. field
|
||||
patchMapper // mapper
|
||||
)
|
||||
);
|
||||
|
||||
@ -61,7 +61,7 @@ void Foam::fvMeshTools::addPatchFields
|
||||
GeoField::Patch::New
|
||||
(
|
||||
mesh.boundary()[sz],
|
||||
fld.dimensionedInternalField(),
|
||||
fld(),
|
||||
patchFieldDict.subDict(fld.name())
|
||||
)
|
||||
);
|
||||
@ -75,7 +75,7 @@ void Foam::fvMeshTools::addPatchFields
|
||||
(
|
||||
defaultPatchFieldType,
|
||||
mesh.boundary()[sz],
|
||||
fld.dimensionedInternalField()
|
||||
fld()
|
||||
)
|
||||
);
|
||||
bfld[sz] == defaultPatchValue;
|
||||
@ -112,7 +112,7 @@ void Foam::fvMeshTools::setPatchFields
|
||||
GeoField::Patch::New
|
||||
(
|
||||
mesh.boundary()[patchi],
|
||||
fld.dimensionedInternalField(),
|
||||
fld(),
|
||||
patchFieldDict.subDict(fld.name())
|
||||
)
|
||||
);
|
||||
|
||||
@ -323,14 +323,14 @@ CrankNicolsonDdtScheme<Type>::fvcDdt
|
||||
{
|
||||
dimensionedScalar rDtCoef0 = rDtCoef0_(ddt0);
|
||||
|
||||
ddt0.dimensionedInternalFieldRef() =
|
||||
ddt0.ref() =
|
||||
(
|
||||
(rDtCoef0*dt)*(mesh().V0() - mesh().V00())
|
||||
- mesh().V00()*offCentre_(ddt0.dimensionedInternalField())
|
||||
)/mesh().V0();
|
||||
}
|
||||
|
||||
tdtdt.ref().dimensionedInternalFieldRef() =
|
||||
tdtdt.ref().ref() =
|
||||
(
|
||||
(rDtCoef*dt)*(mesh().V() - mesh().V0())
|
||||
- mesh().V0()*offCentre_(ddt0.dimensionedInternalField())
|
||||
|
||||
@ -144,7 +144,7 @@ tmp<GeometricField<Type, fvPatchField, volMesh>> fvMeshSubset::interpolate
|
||||
(
|
||||
vf.boundaryField()[patchMap[patchi]],
|
||||
subPatch,
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
directFvPatchFieldMapper(directAddressing)
|
||||
)
|
||||
);
|
||||
@ -288,7 +288,7 @@ tmp<GeometricField<Type, fvsPatchField, surfaceMesh>> fvMeshSubset::interpolate
|
||||
(
|
||||
vf.boundaryField()[patchMap[patchi]],
|
||||
subPatch,
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
directFvPatchFieldMapper(directAddressing)
|
||||
)
|
||||
);
|
||||
@ -462,7 +462,7 @@ fvMeshSubset::interpolate
|
||||
(
|
||||
vf.boundaryField()[patchMap[patchi]],
|
||||
subPatch,
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
directPointPatchFieldMapper(directAddressing)
|
||||
)
|
||||
);
|
||||
|
||||
@ -115,7 +115,7 @@ tmp<GeometricField<Type, fvPatchField, volMesh>> singleCellFvMesh::interpolate
|
||||
(
|
||||
vf.boundaryField()[patchi],
|
||||
boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
agglomPatchFieldMapper(coarseToFine, coarseWeights)
|
||||
)
|
||||
);
|
||||
@ -134,7 +134,7 @@ tmp<GeometricField<Type, fvPatchField, volMesh>> singleCellFvMesh::interpolate
|
||||
(
|
||||
vf.boundaryField()[patchi],
|
||||
boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
directFvPatchFieldMapper(map)
|
||||
)
|
||||
);
|
||||
|
||||
@ -87,7 +87,7 @@ void Foam::volPointInterpolation::addSeparated
|
||||
}
|
||||
|
||||
typename GeometricField<Type, pointPatchField, pointMesh>::
|
||||
Internal& pfi = pf.dimensionedInternalFieldRef();
|
||||
Internal& pfi = pf.ref();
|
||||
|
||||
typename GeometricField<Type, pointPatchField, pointMesh>::
|
||||
Boundary& pfbf = pf.boundaryFieldRef();
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -249,7 +249,7 @@ void uniformInterpolatedDisplacementPointPatchVectorField::updateCoeffs()
|
||||
// Extract back from the internal field
|
||||
this->operator==
|
||||
(
|
||||
this->patchInternalField(result.dimensionedInternalField())
|
||||
this->patchInternalField(result())
|
||||
);
|
||||
|
||||
fixedValuePointPatchField<vector>::updateCoeffs();
|
||||
|
||||
@ -226,7 +226,7 @@ void Foam::meshRefinement::addPatchFields
|
||||
(
|
||||
patchFieldType,
|
||||
mesh.boundary()[sz],
|
||||
fld.dimensionedInternalField()
|
||||
fld()
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@ -96,7 +96,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
(
|
||||
field.boundaryField()[boundaryAddressing_[patchi]],
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
*patchFieldDecomposerPtrs_[patchi]
|
||||
)
|
||||
);
|
||||
@ -109,7 +109,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
new processorCyclicFvPatchField<Type>
|
||||
(
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
Field<Type>
|
||||
(
|
||||
field.internalField(),
|
||||
@ -126,7 +126,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
new processorFvPatchField<Type>
|
||||
(
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
Field<Type>
|
||||
(
|
||||
field.internalField(),
|
||||
@ -143,7 +143,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
new emptyFvPatchField<Type>
|
||||
(
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField()
|
||||
resF()
|
||||
)
|
||||
);
|
||||
}
|
||||
@ -266,7 +266,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
(
|
||||
field.boundaryField()[boundaryAddressing_[patchi]],
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
*patchFieldDecomposerPtrs_[patchi]
|
||||
)
|
||||
);
|
||||
@ -279,7 +279,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
new processorCyclicFvsPatchField<Type>
|
||||
(
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
Field<Type>
|
||||
(
|
||||
allFaceField,
|
||||
@ -296,7 +296,7 @@ Foam::fvFieldDecomposer::decomposeField
|
||||
new processorFvsPatchField<Type>
|
||||
(
|
||||
procMesh_.boundary()[patchi],
|
||||
resF.dimensionedInternalField(),
|
||||
resF(),
|
||||
Field<Type>
|
||||
(
|
||||
allFaceField,
|
||||
|
||||
@ -142,10 +142,10 @@ void Foam::CourantNo::execute()
|
||||
mesh.lookupObject<volScalarField>(type())
|
||||
);
|
||||
|
||||
Co.dimensionedInternalFieldRef() = byRho
|
||||
Co.ref() = byRho
|
||||
(
|
||||
(0.5*mesh.time().deltaT())
|
||||
*fvc::surfaceSum(mag(phi))().dimensionedInternalField()
|
||||
*fvc::surfaceSum(mag(phi))()()
|
||||
/mesh.V()
|
||||
);
|
||||
Co.correctBoundaryConditions();
|
||||
|
||||
@ -351,7 +351,7 @@ void Foam::meshToMesh::mapSrcToTgt
|
||||
(
|
||||
srcField,
|
||||
tgtField.patch(),
|
||||
result.dimensionedInternalField(),
|
||||
result(),
|
||||
weightedFvPatchFieldMapper
|
||||
(
|
||||
AMIList[i].tgtAddress(),
|
||||
@ -540,7 +540,7 @@ void Foam::meshToMesh::mapTgtToSrc
|
||||
(
|
||||
tgtField,
|
||||
srcField.patch(),
|
||||
result.dimensionedInternalField(),
|
||||
result(),
|
||||
weightedFvPatchFieldMapper
|
||||
(
|
||||
AMIList[i].srcAddress(),
|
||||
|
||||
@ -611,7 +611,7 @@ Foam::chemistryModel<CompType, ThermoType>::dQ() const
|
||||
if (this->chemistry_)
|
||||
{
|
||||
volScalarField& dQ = tdQ.ref();
|
||||
dQ.dimensionedInternalFieldRef() = this->mesh_.V()*Sh()();
|
||||
dQ.ref() = this->mesh_.V()*Sh()();
|
||||
}
|
||||
|
||||
return tdQ;
|
||||
|
||||
@ -282,11 +282,11 @@ Foam::tmp<Foam::DimensionedField<Foam::scalar, Foam::volMesh>>
|
||||
Foam::radiation::P1::Ru() const
|
||||
{
|
||||
const DimensionedField<scalar, volMesh>& G =
|
||||
G_.dimensionedInternalField();
|
||||
G_();
|
||||
const DimensionedField<scalar, volMesh> E =
|
||||
absorptionEmission_->ECont()().dimensionedInternalField();
|
||||
absorptionEmission_->ECont()()();
|
||||
const DimensionedField<scalar, volMesh> a =
|
||||
absorptionEmission_->aCont()().dimensionedInternalField();
|
||||
absorptionEmission_->aCont()()();
|
||||
|
||||
return a*G - E;
|
||||
}
|
||||
|
||||
@ -494,14 +494,14 @@ Foam::radiation::fvDOM::Ru() const
|
||||
{
|
||||
|
||||
const DimensionedField<scalar, volMesh>& G =
|
||||
G_.dimensionedInternalField();
|
||||
G_();
|
||||
|
||||
const DimensionedField<scalar, volMesh> E =
|
||||
absorptionEmission_->ECont()().dimensionedInternalField();
|
||||
absorptionEmission_->ECont()()();
|
||||
|
||||
// Only include continuous phase absorption
|
||||
const DimensionedField<scalar, volMesh> a =
|
||||
absorptionEmission_->aCont()().dimensionedInternalField();
|
||||
absorptionEmission_->aCont()()();
|
||||
|
||||
return a*G - E;
|
||||
}
|
||||
|
||||
@ -177,7 +177,7 @@ Foam::solidChemistryModel<CompType, SolidThermo>::dQ() const
|
||||
if (this->chemistry_)
|
||||
{
|
||||
volScalarField& dQ = tdQ.ref();
|
||||
dQ.dimensionedInternalFieldRef() = this->mesh_.V()*Sh()();
|
||||
dQ.ref() = this->mesh_.V()*Sh()();
|
||||
}
|
||||
|
||||
return tdQ;
|
||||
|
||||
Reference in New Issue
Block a user