diff --git a/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.C b/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.C index 7795aef8796df730a38abf2b1a61468c8a853220..09a92bb1933cd3b7dc866cef70471a89603bf478 100644 --- a/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.C +++ b/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.C @@ -57,25 +57,33 @@ Foam::fixedTemperatureSource::fixedTemperatureSource ExplicitSetValue<scalar>(name, modelType, dict, mesh), T_(readScalar(coeffs_.lookup("temperature"))) { - coeffs_.lookup("fieldNames") >> fieldNames_; - applied_.setSize(fieldNames_.size(), false); + fieldNames_.setSize(1, "energy"); + applied_.setSize(1, false); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // +bool Foam::fixedTemperatureSource::alwaysApply() const +{ + return true; +} + + void Foam::fixedTemperatureSource::setValue ( fvMatrix<scalar>& eqn, - const label fieldI + const label ) { const basicThermo& thermo = mesh_.lookupObject<basicThermo>("thermophsicalProperties"); - const scalarField Tfield(cells_.size(), T_); - - eqn.setValues(cells_, thermo.he(thermo.p(), Tfield, cells_)); + if (eqn.psi().name() == thermo.he().name()) + { + const scalarField Tfield(cells_.size(), T_); + eqn.setValues(cells_, thermo.he(thermo.p(), Tfield, cells_)); + } } diff --git a/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.H b/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.H index 3e5f77d3d570e7729ba6740142510f71372953d4..6c56d6c76287b4e34fa145b0beccc41c3605dee8 100644 --- a/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.H +++ b/src/fieldSources/derived/fixedTemperatureSource/fixedTemperatureSource.H @@ -105,6 +105,9 @@ public: // Member Functions + virtual bool alwaysApply() const; + + // Set values directly //- Scalar