Skip to content
Snippets Groups Projects
Commit 17137c22 authored by Johannes Hommel's avatar Johannes Hommel
Browse files

Cleanup h2on2o2 fluidsystem

added a missing std:: in line 359
parent 18d6d147
No related branches found
No related tags found
1 merge request!64Cleanup of h2on2o2 fluidsystem.
......@@ -356,7 +356,7 @@ public:
const Scalar mu = 1.256;
const Scalar b = -0.625;
//Equation to calculate surface Tension of Water According to IAPWS Release on Surface Tension from September 1994
const Scalar surfaceTension = B*pow((1.-(T/T_c)),mu)*(1.+b*(1.-(T/T_c)));
const Scalar surfaceTension = B*std::pow((1.-(T/T_c)),mu)*(1.+b*(1.-(T/T_c)));
return surfaceTension; //surface Tension [N/m]
}
/****************************************
......
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