Bug fix: ticketsfoamextendrelease:#256
This commit is contained in:
parent
f1aa6ef184
commit
798239779a
1 changed files with 3 additions and 3 deletions
|
@ -84,14 +84,14 @@ void processorBlockGAMGInterfaceField<scalar>::updateInterfaceMatrix
|
|||
{
|
||||
forAll(faceCells, elemI)
|
||||
{
|
||||
result[faceCells[elemI]] += coeffs[elemI]*pnf[elemI];
|
||||
result[faceCells[elemI]] += pnf[elemI];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
forAll(faceCells, elemI)
|
||||
{
|
||||
result[faceCells[elemI]] -= coeffs[elemI]*pnf[elemI];
|
||||
result[faceCells[elemI]] -= pnf[elemI];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue