Skip to content
Snippets Groups Projects
Commit 6c4a870c authored by jstark's avatar jstark
Browse files

Fixed missing vd.map() after adding particles to narrow band vd.

parent 68b4dbfb
No related branches found
No related tags found
No related merge requests found
......@@ -276,6 +276,7 @@ private:
}
++dom;
}
vd.map();
}
/** @brief Fills the empty vector passed as argument with particles by placing these within a narrow band around the
* interface. SDF and Phi_grad_temp are copied from the temp. grid to the respective particle.
......@@ -314,6 +315,7 @@ private:
}
++dom;
}
vd.map();
}
/** @brief Fills the empty vector passed as argument with particles by placing these within a narrow band around the
* interface. SDF, Phi_grad_temp and Phi_magnOfGrad_temp are copied from the temp. grid to the respective particle.
......@@ -354,6 +356,7 @@ private:
}
++dom;
}
vd.map();
}
/** @brief Fills the empty vector passed as argument with particles by placing these within a narrow band around the
* interface. An arbitrary property is copied from the grid to the respective particle.
......@@ -392,6 +395,7 @@ private:
}
++dom;
}
vd.map();
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment