Skip to content
Snippets Groups Projects
Commit 733a05bd authored by AMATERASU\geier's avatar AMATERASU\geier
Browse files

Now MultiphasePressureFilterLBMKernel pressure update is also corrected (wrong...

Now MultiphasePressureFilterLBMKernel pressure update is also corrected (wrong fiel in previous commit).
parent 8ab58fb6
No related branches found
No related tags found
2 merge requests!171Newest Update,!83Fix MPICommunicator
......@@ -251,7 +251,7 @@ void MultiphasePressureFilterLBMKernel::calculate(int step)
+ (mfaab + mfacb + mfcab + mfccb) + (mfaba + mfabc + mfcba + mfcbc) + (mfbaa + mfbac + mfbca + mfbcc)
+ (mfabb + mfcbb) + (mfbab + mfbcb) + (mfbba + mfbbc) + mfbbb;
LBMReal rho = rhoH + rhoToPhi * ((*pressure)(x1, x2, x3) - phiH);
LBMReal rho = rhoH + rhoToPhi * ((*phaseField)(x1, x2, x3) - phiH);
//! variable density -> TRANSFER!
//LBMReal rho = rhoH * ((*phaseField)(x1, x2, x3)) + rhoL * ((*phaseField2)(x1, x2, x3));
......
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