Skip to content
Snippets Groups Projects
Commit f271592a authored by kutscher's avatar kutscher
Browse files

fix gravity for Rising Bubble 2D

parent eb21658b
No related branches found
No related tags found
2 merge requests!171Newest Update,!83Fix MPICommunicator
......@@ -109,11 +109,11 @@ void run(string configname)
LBMReal mu_h = rho_h * nu_h;
//gravity
LBMReal g_y = Re* Re* nu_h* nu_h / D;
LBMReal g_y = Re * Re * nu_h * nu_h / (D*D*D);
//Eotvos number
//LBMReal Eo = 100;
//surface tension
sigma = rho_h* g_y* D* D / Eo;
sigma = rho_h * 1000.0 * g_y * D * D / Eo;
//g_y = 0;
......
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