Skip to content
Snippets Groups Projects
Commit eb0d91bc authored by william's avatar william Committed by Andrew Heather
Browse files

BUG: Mantis 1325: Johnson Jackson BCs evaluating before dependent sub model data is created

parent 8ac2a1c7
Branches
Tags
No related merge requests found
......@@ -102,17 +102,10 @@ JohnsonJacksonParticleSlipFvPatchVectorField
<< abort(FatalError);
}
if (dict.found("value"))
{
fvPatchVectorField::operator=
(
vectorField("value", dict, p.size())
);
}
else
{
partialSlipFvPatchVectorField::evaluate();
}
fvPatchVectorField::operator=
(
vectorField("value", dict, p.size())
);
}
......
......@@ -129,17 +129,10 @@ JohnsonJacksonParticleThetaFvPatchScalarField
<< abort(FatalError);
}
if (dict.found("value"))
{
fvPatchScalarField::operator=
(
scalarField("value", dict, p.size())
);
}
else
{
evaluate();
}
fvPatchScalarField::operator=
(
scalarField("value", dict, p.size())
);
}
......
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