Removed default null argument for wells in IncompTpfa constructor.

This commit is contained in:
Atgeirr Flø Rasmussen
2012-06-07 13:34:05 +02:00
parent e798cc179e
commit 0551401bc6
3 changed files with 11 additions and 7 deletions

View File

@@ -164,10 +164,11 @@ int main ()
/// \page tutorial3
/// \details We may now set up the pressure solver. At this point,
/// unchanging parameters such as transmissibility are computed
/// and stored internally by the IncompTpfa class.
/// and stored internally by the IncompTpfa class. The final (null pointer)
/// constructor argument is for wells, which are now used in this tutorial.
/// \code
LinearSolverUmfpack linsolver;
IncompTpfa psolver(grid, props.permeability(), grav, linsolver);
IncompTpfa psolver(grid, props.permeability(), grav, linsolver, 0);
/// \endcode
/// \page tutorial3