ENH: proper restart for maxWellU bc

This commit is contained in:
mattijs
2010-08-03 14:07:16 +01:00
parent 37a06ac9a7
commit 9e7cb86097
2 changed files with 6 additions and 6 deletions

View File

@ -105,6 +105,8 @@ maxwellSlipUFvPatchVectorField::maxwellSlipUFvPatchVectorField
(
vectorField("value", dict, p.size())
);
refValue() = vectorField("refValue", dict, p.size());
valueFraction() = scalarField("valueFraction", dict, p.size());
}
else
{
@ -188,10 +190,8 @@ void maxwellSlipUFvPatchVectorField::write(Ostream& os) const
<< thermalCreep_ << token::END_STATEMENT << nl;
os.writeKeyword("curvature") << curvature_ << token::END_STATEMENT << nl;
os.writeKeyword("refValue")
<< refValue() << token::END_STATEMENT << nl;
os.writeKeyword("valueFraction")
<< valueFraction() << token::END_STATEMENT << nl;
refValue().writeEntry("refValue", os);
valueFraction().writeEntry("valueFraction", os);
writeEntry("value", os);
}