diff --git a/src/thermophysicalModels/basicSolidThermo/basicSolidThermo/basicSolidThermo.H b/src/thermophysicalModels/basicSolidThermo/basicSolidThermo/basicSolidThermo.H index 2f4d2a1f99557735534aa014df3a9032690266e6..0f0fb67f278a5a2d3d3a9d262f7018f0b14335f9 100644 --- a/src/thermophysicalModels/basicSolidThermo/basicSolidThermo/basicSolidThermo.H +++ b/src/thermophysicalModels/basicSolidThermo/basicSolidThermo/basicSolidThermo.H @@ -190,7 +190,10 @@ public: virtual tmp<scalarField> kappa(const label patchI) const = 0; //- Thermal conductivity [W//m/K] - virtual tmp<symmTensorField> directionalKappa(const label) const = 0; + virtual tmp<symmTensorField> directionalKappa + ( + const label + ) const = 0; //- Specific heat capacity [J/kg/K)] virtual tmp<scalarField> Cp(const label patchI) const = 0; diff --git a/src/thermophysicalModels/basicSolidThermo/constSolidThermo/constSolidThermo.C b/src/thermophysicalModels/basicSolidThermo/constSolidThermo/constSolidThermo.C index 65ce650bc7067d6420763ecb65d374f13aea69c8..4a4921cb90c78d74b64fd762158379fbd3c3a137 100644 --- a/src/thermophysicalModels/basicSolidThermo/constSolidThermo/constSolidThermo.C +++ b/src/thermophysicalModels/basicSolidThermo/constSolidThermo/constSolidThermo.C @@ -138,7 +138,8 @@ Foam::tmp<Foam::volScalarField> Foam::constSolidThermo::kappa() const } -Foam::tmp<Foam::volSymmTensorField> Foam::constSolidThermo::directionalKappa() const +Foam::tmp<Foam::volSymmTensorField> +Foam::constSolidThermo::directionalKappa() const { dimensionedSymmTensor t ( diff --git a/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.C b/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.C index 9f41b82a9159652c555b895c088afa47e7ddffac..57f6eb172769f3c7786022a387c302e635f95eaf 100644 --- a/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.C +++ b/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.C @@ -394,7 +394,8 @@ void Foam::directionalKSolidThermo::calculate() forAll(directionalKappa_.boundaryField(), patchI) { - directionalKappa_.boundaryField()[patchI] == this->directionalKappa(patchI)(); + directionalKappa_.boundaryField()[patchI] == + this->directionalKappa(patchI)(); } } @@ -409,7 +410,10 @@ Foam::tmp<Foam::symmTensorField> Foam::directionalKSolidThermo::directionalKappa Field<vector> localKappa(interpolateXY(patchT, TValues_, kappaValues_)); tmp<symmTensorField> tglobalK(new symmTensorField(localKappa.size())); - transformField(tglobalK(), ccTransforms_.boundaryField()[patchI], localKappa); + transformField + ( + tglobalK(), ccTransforms_.boundaryField()[patchI], localKappa + ); return tglobalK; } @@ -424,7 +428,8 @@ bool Foam::directionalKSolidThermo::read() bool Foam::directionalKSolidThermo::read(const dictionary& dict) { coordSys_ = coordinateSystem(dict, mesh_); - kappaValues_ = Field<vector>(subDict(typeName + "Coeffs").lookup("kappaValues")); + kappaValues_ = + Field<vector>(subDict(typeName + "Coeffs").lookup("kappaValues")); return true; } diff --git a/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.H b/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.H index ae3a48adb3d514c178f7938b3098c3385883b8eb..68c176a7cc716eb7f4cfa721e255e4ae369dd3e5 100644 --- a/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.H +++ b/src/thermophysicalModels/basicSolidThermo/directionalKSolidThermo/directionalKSolidThermo.H @@ -131,7 +131,10 @@ public: //- Thermal conductivity [W//m/K] virtual tmp<scalarField> kappa(const label patchI) const { - notImplemented("directionalKSolidThermo::kappa(const label) const"); + notImplemented + ( + "directionalKSolidThermo::kappa(const label) const" + ); return tmp<scalarField>(NULL); } diff --git a/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.C b/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.C index 8a697a9d1adc1da83fa74bf7708adda43ad69a6b..b1e25dfad61fc30e29b926e88fdf589b932f90af 100644 --- a/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.C +++ b/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.C @@ -147,14 +147,16 @@ Foam::tmp<Foam::scalarField> Foam::isotropicKSolidThermo::kappa bool Foam::isotropicKSolidThermo::read() { - kappaValues_ = Field<scalar>(subDict(typeName + "Coeffs").lookup("kappaValues")); + kappaValues_ = + Field<scalar>(subDict(typeName + "Coeffs").lookup("kappaValues")); return true; } bool Foam::isotropicKSolidThermo::writeData(Ostream& os) const { - os.writeKeyword("kappaValues") << kappaValues_ << token::END_STATEMENT << nl; + os.writeKeyword("kappaValues") << kappaValues_ + << token::END_STATEMENT << nl; bool ok = interpolatedSolidThermo::writeData(os); return ok && os.good(); diff --git a/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.H b/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.H index 8daff60560e76a0ef52cec3b69ad6553be11dee1..c53e669e0c4b146f4fe63327a9e84551b01122a2 100644 --- a/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.H +++ b/src/thermophysicalModels/basicSolidThermo/isotropicKSolidThermo/isotropicKSolidThermo.H @@ -92,7 +92,10 @@ public: //- Thermal conductivity [W/m/K] virtual tmp<volSymmTensorField> directionalKappa() const { - notImplemented("directionalKSolidThermo::directionalKappa() const"); + notImplemented + ( + "directionalKSolidThermo::directionalKappa() const" + ); return tmp<volSymmTensorField>(NULL); } diff --git a/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/solidMixtureThermo/solidMixtureThermo.C b/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/solidMixtureThermo/solidMixtureThermo.C index 1239bb16ee4e50e3713179aa13f33598514b6d71..cea2e2288de3b4c0fadd096188e254662f586722 100644 --- a/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/solidMixtureThermo/solidMixtureThermo.C +++ b/src/thermophysicalModels/basicSolidThermo/solidMixtureThermo/solidMixtureThermo/solidMixtureThermo.C @@ -225,7 +225,8 @@ void Foam::solidMixtureThermo<MixtureType>::correct() template<class MixtureType> -Foam::tmp<Foam::volScalarField> Foam::solidMixtureThermo<MixtureType>::kappa() const +Foam::tmp<Foam::volScalarField> Foam::solidMixtureThermo<MixtureType>:: +kappa() const { return kappa_; } diff --git a/src/thermophysicalModels/solid/transport/const/constSolidTransportI.H b/src/thermophysicalModels/solid/transport/const/constSolidTransportI.H index a2b538e505682a3631588b25550b3400e78386a1..639f3179c7a5a221873039c9917104f5af82137d 100644 --- a/src/thermophysicalModels/solid/transport/const/constSolidTransportI.H +++ b/src/thermophysicalModels/solid/transport/const/constSolidTransportI.H @@ -52,7 +52,8 @@ inline Foam::constSolidTransport<thermo>::constSolidTransport // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template<class thermo> -inline Foam::scalar Foam::constSolidTransport<thermo>::kappa(const scalar T) const +inline Foam::scalar Foam::constSolidTransport<thermo>:: +kappa(const scalar T) const { return kappa_; } diff --git a/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C b/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C index 0258ff87f5b4e7114e2cc885b107e0a66c8393ee..44e43d3c67ca192ba5b04969e0e9001a5ffef3d8 100644 --- a/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C +++ b/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/temperatureCoupledBase/temperatureCoupledBase.C @@ -132,15 +132,24 @@ Foam::tmp<Foam::scalarField> Foam::temperatureCoupledBase::kappa { if (mesh.objectRegistry::foundObject<volScalarField>(kappaName_)) { - return patch_.lookupPatchField<volScalarField, scalar>(kappaName_); + return patch_.lookupPatchField + < + volScalarField, scalar + >(kappaName_); } else if ( - mesh.objectRegistry::foundObject<volSymmTensorField>(kappaName_) + mesh.objectRegistry::foundObject + < + volSymmTensorField + >(kappaName_) ) { const symmTensorField& KWall = - patch_.lookupPatchField<volSymmTensorField, scalar>(kappaName_); + patch_.lookupPatchField + < + volSymmTensorField, scalar + >(kappaName_); const vectorField n(patch_.nf()); @@ -152,7 +161,8 @@ Foam::tmp<Foam::scalarField> Foam::temperatureCoupledBase::kappa << "Did not find field " << kappaName_ << " on mesh " << mesh.name() << " patch " << patch_.name() << endl - << "Please set 'kappa' to one of " << KMethodTypeNames_.toc() + << "Please set 'kappa' to one of " + << KMethodTypeNames_.toc() << " and 'kappaName' to the name of the volScalar" << " or volSymmTensor field (if kappa=lookup)" << exit(FatalError); diff --git a/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H b/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H index d4164998ecfbac1435fb2c0a81b24fca99b375e9..2703274ed3de46390b202c264764e163ad7f6bda 100644 --- a/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H +++ b/src/turbulenceModels/compressible/turbulenceModel/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.H @@ -48,8 +48,8 @@ Description Needs to be on underlying mapped(Wall)FvPatch. - Note: kappa : heat conduction at patch. Gets supplied how to lookup/calculate - kappa: + Note: kappa : heat conduction at patch. Gets supplied how to lookup + calculate kappa: - 'lookup' : lookup volScalarField (or volSymmTensorField) with name - 'basicThermo' : use basicThermo and compressible::RASmodel to calculate kappa