Changed docs/comments after review suggestions.

Suggestions from B. Skaflestad and A. Lauser.
This commit is contained in:
Atgeirr Flø Rasmussen 2014-04-08 15:28:10 +02:00
parent f1956f05f9
commit a19344efa9
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ namespace Opm
/// meaning from cell to cell, corresponding to the state in
/// that cell (saturated, undersaturated oil or undersaturated
/// gas). In a two-phase simulation, either sw or xvar is not
/// used, depending on which face is missing.
/// used, depending on which phase is missing.
///
/// Note: this class is strongly coupled to the class
/// FullyImplicitBlackoilSolver, and is separated from that
@ -50,7 +50,7 @@ namespace Opm
/// The material_balance_eq vector has one element for each
/// active phase, each of which has size equal to the number
/// of cells. Each material balance equation is given in terms
/// of surface volumes.
/// of surface volumes (in SI units, that is standard m^3).
std::vector<ADB> material_balance_eq;
/// The well_flux_eq has size equal to the number of wells
/// times the number of phases. It contains the well flow

View File

@ -38,7 +38,7 @@ namespace Opm
/// \param[in] linsolver linear solver to use
FullyImplicitSystemSolverSimple(const LinearSolverInterface& linsolver);
/// Solve the linear system Ax = b, with A being the
/// Solve the system of linear equations Ax = b, with A being the
/// combined derivative matrix of the residual and b
/// being the residual itself.
/// \param[in] residual residual object containing A and b.