Reverted ProcessorPointPatchField.C, which broke parallel motion on some cases

This commit is contained in:
Dominik Christ 2014-10-29 13:54:51 +00:00
parent f1aa6ef184
commit b7a6e17dd0

View file

@ -511,18 +511,7 @@ evaluate
}
// Average over two sides
// ZT, 22-07-2014 - point ordering is not same
// at master and slave side after topology change
const labelList& neiPoints =
procPatch_.procPolyPatch().neighbPoints();
tpn =
0.5
*(
this->patchInternalField(this->internalField())
+ Field<Type>(tpn, neiPoints)
);
tpn = 0.5*(this->patchInternalField(this->internalField()) + tpn);
// Get internal field to insert values into
Field<Type>& iF = const_cast<Field<Type>&>(this->internalField());