Skip to content
Snippets Groups Projects
Commit efe99989 authored by wenqing's avatar wenqing
Browse files

[Unsat] Corrected some comments

parent c863a77f
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ public:
/// Get capillary pressure.
double getCapillaryPressure(const double saturation) const override;
/// Get capillary pressure.
/// Get saturation.
double getSaturation(const double capillary_pressure) const override;
/// Get the derivative of the capillary pressure with respect to saturation
......@@ -73,7 +73,7 @@ public:
private:
const double _pb; ///< Entry pressure.
const double _m; ///< Exponent (<=1.0), n=1/(1-mm).
const double _m; ///< Exponent m, m>1.
};
} // end namespace
......
......@@ -40,7 +40,7 @@ public:
/// Get capillary pressure.
virtual double getCapillaryPressure(const double saturation) const = 0;
/// Get capillary pressure.
/// Get saturation.
virtual double getSaturation(const double capillary_ressure) const = 0;
/// Get the derivative of the capillary pressure with respect to saturation
......
......@@ -70,7 +70,7 @@ public:
/// Get capillary pressure.
double getCapillaryPressure(const double saturation) const override;
/// Get capillary pressure.
/// Get saturation.
double getSaturation(const double capillary_pressure) const override;
/// Get the derivative of the capillary pressure with respect to saturation
......@@ -78,7 +78,7 @@ public:
private:
const double _pb; ///< Entry pressure.
const double _m; ///< Exponent (<=1.0), n=1/(1-mm).
const double _m; ///< Exponent m, m in [0,1]. n=1/(1-m).
};
} // end namespace
......
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