diff --git a/src/OpenFOAM/fields/pointPatchFields/derived/timeVaryingUniformFixedValue/timeVaryingUniformFixedValuePointPatchField.C b/src/OpenFOAM/fields/pointPatchFields/derived/timeVaryingUniformFixedValue/timeVaryingUniformFixedValuePointPatchField.C index 2590a08dcd..1f434f4f2a 100644 --- a/src/OpenFOAM/fields/pointPatchFields/derived/timeVaryingUniformFixedValue/timeVaryingUniformFixedValuePointPatchField.C +++ b/src/OpenFOAM/fields/pointPatchFields/derived/timeVaryingUniformFixedValue/timeVaryingUniformFixedValuePointPatchField.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -56,7 +56,7 @@ timeVaryingUniformFixedValuePointPatchField fixedValuePointPatchField(ptf, p, iF, mapper), timeSeries_(ptf.timeSeries_) { - updateCoeffs(); + this->operator==(timeSeries_(this->db().time().timeOutputValue())); } @@ -73,7 +73,7 @@ timeVaryingUniformFixedValuePointPatchField fixedValuePointPatchField(p, iF), timeSeries_(dict) { - updateCoeffs(); + this->operator==(timeSeries_(this->db().time().timeOutputValue())); }