Removed experimental multi-cell solver code.

Since the Gauss-Seidel approach seems to be both simplest and
fastest, all parts dealing with assembling multicell systems
have been removed.
This commit is contained in:
Atgeirr Flø Rasmussen
2013-04-22 11:22:23 +02:00
parent 489c41d60d
commit cf38c91f74
4 changed files with 18 additions and 141 deletions

View File

@@ -237,7 +237,7 @@ main(int argc, char** argv)
if (use_dg) {
dg_solver->solveTof(&state.faceflux()[0], &porevol[0], &transport_src[0], tof);
} else {
Opm::TofReorder tofsolver(*grid->c_grid(), linsolver, use_multidim_upwind);
Opm::TofReorder tofsolver(*grid->c_grid(), use_multidim_upwind);
if (compute_tracer) {
tofsolver.solveTofTracer(&state.faceflux()[0], &porevol[0], &transport_src[0], tof, tracer);
} else {