diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C index 6885bd7d4dbcbee30d2845b94615dabf4591031f..3f855d52fa7a1ccbf96f92254457daa8f586a9bd 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -46,32 +46,38 @@ Foam::fanFvPatchField<Type>::fanFvPatchField const DimensionedField<Type, volMesh>& iF ) : - uniformJumpFvPatchField<Type>(p, iF) + uniformJumpFvPatchField<Type>(p, iF), + phiName_("phi"), + rhoName_("rho") {} template<class Type> Foam::fanFvPatchField<Type>::fanFvPatchField ( - const fanFvPatchField<Type>& ptf, const fvPatch& p, const DimensionedField<Type, volMesh>& iF, - const fvPatchFieldMapper& mapper + const dictionary& dict ) : - uniformJumpFvPatchField<Type>(ptf, p, iF, mapper) + uniformJumpFvPatchField<Type>(p, iF, dict), + phiName_(dict.lookupOrDefault<word>("phi", "phi")), + rhoName_(dict.lookupOrDefault<word>("rho", "rho")) {} template<class Type> Foam::fanFvPatchField<Type>::fanFvPatchField ( + const fanFvPatchField<Type>& ptf, const fvPatch& p, const DimensionedField<Type, volMesh>& iF, - const dictionary& dict + const fvPatchFieldMapper& mapper ) : - uniformJumpFvPatchField<Type>(p, iF, dict) + uniformJumpFvPatchField<Type>(ptf, p, iF, mapper), + phiName_(ptf.phiName_), + rhoName_(ptf.rhoName_) {} @@ -81,7 +87,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField const fanFvPatchField<Type>& ptf ) : - uniformJumpFvPatchField<Type>(ptf) + uniformJumpFvPatchField<Type>(ptf), + phiName_(ptf.phiName_), + rhoName_(ptf.rhoName_) {} @@ -92,7 +100,9 @@ Foam::fanFvPatchField<Type>::fanFvPatchField const DimensionedField<Type, volMesh>& iF ) : - uniformJumpFvPatchField<Type>(ptf, iF) + uniformJumpFvPatchField<Type>(ptf, iF), + phiName_(ptf.phiName_), + rhoName_(ptf.rhoName_) {} @@ -113,4 +123,13 @@ void Foam::fanFvPatchField<Type>::updateCoeffs() } +template<class Type> +void Foam::fanFvPatchField<Type>::write(Ostream& os) const +{ + uniformJumpFvPatchField<Type>::write(os); + this->template writeEntryIfDifferent<word>(os, "phi", "phi", phiName_); + this->template writeEntryIfDifferent<word>(os, "rho", "rho", rhoName_); +} + + // ************************************************************************* // diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H index fd27dfecd3633a1e6fd8613ada060e0c5743612d..2ad75b1da61e2b0f7d69796fe06b8e7e48bc7481 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchField.H @@ -187,6 +187,9 @@ public: //- Update the coefficients associated with the patch field virtual void updateCoeffs(); + + //- Write + virtual void write(Ostream&) const; }; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C index ea9ecdea573a08f3a6dbf7cbdca41c01c2814a07..81adcbf2b88edfe83684d564d8006986624af4a1 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C @@ -78,7 +78,7 @@ Foam::fanFvPatchField<Foam::scalar>::fanFvPatchField : uniformJumpFvPatchField<scalar>(p, iF), phiName_(dict.lookupOrDefault<word>("phi", "phi")), - rhoName_(dict.lookupOrDefault<word>("rho", "none")) + rhoName_(dict.lookupOrDefault<word>("rho", "rho")) { if (this->cyclicPatch().owner()) { diff --git a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C index b50eac91b8139c3afae9324419b56820467b0be0..a32d667709d2027a1b2b6765c55d717bbf3c5432 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.C @@ -42,7 +42,7 @@ freestreamPressureFvPatchScalarField zeroGradientFvPatchScalarField(p, iF), UName_("U"), phiName_("phi"), - rhoName_("none") + rhoName_("rho") {} @@ -57,7 +57,7 @@ freestreamPressureFvPatchScalarField zeroGradientFvPatchScalarField(p, iF, dict), UName_(dict.lookupOrDefault<word>("U", "U")), phiName_(dict.lookupOrDefault<word>("phi", "phi")), - rhoName_(dict.lookupOrDefault<word>("rho", "none")) + rhoName_(dict.lookupOrDefault<word>("rho", "rho")) {} @@ -153,6 +153,16 @@ void Foam::freestreamPressureFvPatchScalarField::updateCoeffs() } +void Foam::freestreamPressureFvPatchScalarField::write(Ostream& os) const +{ + fvPatchScalarField::write(os); + writeEntryIfDifferent<word>(os, "U", "U", UName_); + writeEntryIfDifferent<word>(os, "phi", "phi", phiName_); + writeEntryIfDifferent<word>(os, "rho", "rho", rhoName_); + writeEntry("value", os); +} + + // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam diff --git a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H index 4d8c5d1807873f3d7448b8aa00b6ddc8142e4690..49687b0ec9198f9f2f2b84b5a9b21ce7ec917ae8 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H +++ b/src/finiteVolume/fields/fvPatchFields/derived/freestreamPressure/freestreamPressureFvPatchScalarField.H @@ -167,6 +167,10 @@ public: //- Update the coefficients associated with the patch field virtual void updateCoeffs(); + + + //- Write + virtual void write(Ostream&) const; }; diff --git a/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C b/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C index 20690258a3dc82ade9746f9cf537bbe2e4d695dc..3407e259aba1c84bfee3ffe34d0372c14f2c466c 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/syringePressure/syringePressureFvPatchScalarField.C @@ -243,6 +243,7 @@ void Foam::syringePressureFvPatchScalarField::write(Ostream& os) const os.writeKeyword("psI") << psI_ << token::END_STATEMENT << nl; os.writeKeyword("psi") << psi_ << token::END_STATEMENT << nl; os.writeKeyword("ams") << ams_ << token::END_STATEMENT << nl; + writeEntryIfDifferent<word>(os, "phi", "phi", phiName_); writeEntry("value", os); }