diff --git a/examples/test_impestpfa_ad.cpp b/examples/test_impestpfa_ad.cpp index 1b15a0e1a..08343d99b 100644 --- a/examples/test_impestpfa_ad.cpp +++ b/examples/test_impestpfa_ad.cpp @@ -20,6 +20,8 @@ #include +#define HACK_INCOMPRESSIBLE_GRAVITY 1 + #include #include @@ -140,8 +142,13 @@ main(int argc, char* argv[]) ps.solve(1.0, state, well_state); + std::cout << "Cell pressure:" << std::endl; std::copy(state.pressure().begin(), state.pressure().end(), std::ostream_iterator(std::cout, " ")); std::cout << std::endl; + std::cout << "Face flux:" << std::endl; + std::copy(state.faceflux().begin(), state.faceflux().end(), std::ostream_iterator(std::cout, " ")); + std::cout << std::endl; + std::cout << "Well bhp pressure:" << std::endl; std::copy(well_state.bhp().begin(), well_state.bhp().end(), std::ostream_iterator(std::cout, " ")); std::cout << std::endl;