Skip to content
Snippets Groups Projects
Commit 1dc1ed72 authored by Andrew Heather's avatar Andrew Heather
Browse files

ENH: Calling cloud local funcs

parent bbd4e103
Branches
Tags
No related merge requests found
......@@ -160,7 +160,7 @@ void Foam::KinematicCloud<ParcelType>::solve
{
if (solution_.transient())
{
preEvolve();
td.cloud().preEvolve();
evolveCloud(td);
}
......@@ -168,7 +168,7 @@ void Foam::KinematicCloud<ParcelType>::solve
{
td.cloud().storeState();
preEvolve();
td.cloud().preEvolve();
evolveCloud(td);
......@@ -177,7 +177,7 @@ void Foam::KinematicCloud<ParcelType>::solve
td.cloud().info();
postEvolve();
td.cloud().postEvolve();
if (solution_.steadyState())
{
......@@ -250,7 +250,7 @@ void Foam::KinematicCloud<ParcelType>::evolveCloud
{
if (solution_.coupled())
{
resetSourceTerms();
td.cloud().resetSourceTerms();
}
if (solution_.transient())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment