BUG: Removed call to topoChanging(false) in interDyMFoam and compressibleInterDyMFoam - see #363 and 03db8627

This commit is contained in:
Andrew Heather
2016-12-23 09:09:30 +00:00
parent 81d958c5df
commit 8701c57ecb
2 changed files with 1 additions and 5 deletions

View File

@ -123,8 +123,6 @@ int main(int argc, char *argv[])
// Make the fluxes relative to the mesh motion
fvc::makeRelative(phi, U);
mesh.topoChanging(false);
}
}

View File

@ -135,7 +135,7 @@ int main(int argc, char *argv[])
if ((mesh.changing() && correctPhi) || mesh.topoChanging())
{
// Calculate absolute flux from the mapped surface velocity
// SAF: temporary fix until mapped Uf is assessed
// Note: temporary fix until mapped Uf is assessed
Uf = fvc::interpolate(U);
phi = mesh.Sf() & Uf;
@ -146,8 +146,6 @@ int main(int argc, char *argv[])
fvc::makeRelative(phi, U);
mixture.correct();
mesh.topoChanging(false);
}
if (mesh.changing() && checkMeshCourantNo)