ENH: Moved temperatureJump boundary condition from finiteVolume library to thermo library

This commit is contained in:
andy
2012-10-24 15:15:51 +01:00
parent eed797ce9e
commit 9c039e438a
3 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ derivedFvPatchFields/fixedEnergy/fixedEnergyFvPatchScalarField.C
derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.C derivedFvPatchFields/gradientEnergy/gradientEnergyFvPatchScalarField.C
derivedFvPatchFields/mixedEnergy/mixedEnergyFvPatchScalarField.C derivedFvPatchFields/mixedEnergy/mixedEnergyFvPatchScalarField.C
derivedFvPatchFields/energyJump/energyJumpFvPatchScalarField.C derivedFvPatchFields/energyJump/energyJumpFvPatchScalarField.C
derivedFvPatchFields/temperatureJump/temperatureJumpFvPatchScalarField.C
derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.C derivedFvPatchFields/wallHeatTransfer/wallHeatTransferFvPatchScalarField.C

View File

@ -103,7 +103,6 @@ Foam::temperatureJumpFvPatchScalarField::temperatureJumpFvPatchScalarField
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::temperatureJumpFvPatchScalarField::write(Ostream& os) const void Foam::temperatureJumpFvPatchScalarField::write(Ostream& os) const
{ {
fixedJumpFvPatchField<scalar>::write(os); fixedJumpFvPatchField<scalar>::write(os);

View File

@ -29,7 +29,7 @@ Group
Description Description
This boundary condition provides a temperature jump condition across a This boundary condition provides a temperature jump condition across a
coupled pair of cyclic patches. coupled pair of cyclic patches when solving for energy.
The jump is specified as a \c DataEntry type, to enable the use of, e.g. The jump is specified as a \c DataEntry type, to enable the use of, e.g.
contant, polynomial, table values. contant, polynomial, table values.
@ -61,6 +61,7 @@ Note
SeeAlso SeeAlso
Foam::fixedJumpFvPatchField Foam::fixedJumpFvPatchField
Foam::energyJumpFvPatchScalarField
SourceFiles SourceFiles
temperatureJumpFvPatchScalarField.C temperatureJumpFvPatchScalarField.C