Update Meeting notes authored by Maric, Tomislav's avatar Maric, Tomislav
...@@ -11,22 +11,18 @@ ...@@ -11,22 +11,18 @@
- [ ] interIsoFoam is currently using the *sharp* $`\alpha`$ field - can we simply use Ubbink's laplace smoothing for the $`p-\mathbf{v}`$ coupling? - [ ] interIsoFoam is currently using the *sharp* $`\alpha`$ field - can we simply use Ubbink's laplace smoothing for the $`p-\mathbf{v}`$ coupling?
``` ```
alphaOld == alpha
solve for alpha solve for alpha
smoothAlpha = alpha
// smoothN is an option read from the fvSolution / alpha // smoothN is an option read from the fvSolution / alpha
for (int nSmooth = 0; nSmooth < smoothN ; ++nSmooth); for (int nSmooth = 0; nSmooth < smoothN ; ++nSmooth);
{ {
alpha == fvc::average(alpha); // check fvc::average and compare to what Ubbink did smoothAlpha == fvc::average(smoothAlpha); // check fvc::average and compare to what Ubbink did
} }
// smoothed alpha goes into p-v coupling, giving a smooth curvature field kappa = +/- fvc::div(fvc::grad(smoothAlpha) / mag(fvc::grad(smoothAlpha))
pEqn: alpha // Figure out how to use our kappa and not one from immiscibleIncompressibleTwoPhaseMixture in pEqn and UEqn
UEqn: alpha
alpha == alphaOld
``` ```
- [ ] Add literature survey, curvature calculation descripton, and our current cases to Overleaf, together with [_highlights_](https://www.elsevier.com/authors/tools-and-resources/highlights) - [ ] Add literature survey, curvature calculation descripton, and our current cases to Overleaf, together with [_highlights_](https://www.elsevier.com/authors/tools-and-resources/highlights)
... ...
......