Skip to content
Snippets Groups Projects
Commit 064da149 authored by mattijs's avatar mattijs Committed by Andrew Heather
Browse files

BUG: timeVaryingUniformFixedValuePointPatchField: calling updateCoeffs with null internal field

parent 1b89c7e3
Branches
Tags
No related merge requests found
......@@ -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<Type>(ptf, p, iF, mapper),
timeSeries_(ptf.timeSeries_)
{
updateCoeffs();
this->operator==(timeSeries_(this->db().time().timeOutputValue()));
}
......@@ -73,7 +73,7 @@ timeVaryingUniformFixedValuePointPatchField
fixedValuePointPatchField<Type>(p, iF),
timeSeries_(dict)
{
updateCoeffs();
this->operator==(timeSeries_(this->db().time().timeOutputValue()));
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment