mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-22 09:16:27 -06:00
fix another bunch of tests
This commit is contained in:
parent
a9a67ecef9
commit
0d5099da19
@ -50,8 +50,8 @@ parser.add_argument('vtu_file_2', type=open,
|
||||
help='second file to compare')
|
||||
parser.add_argument('-r', '--relTol', type=float, default=1e-2,
|
||||
help='maximum tolerated absolute error (default=1e-2)')
|
||||
parser.add_argument('-a', '--absTol', type=float, default=1e-9,
|
||||
help='maximum tolerated relative error (default=1e-9)')
|
||||
parser.add_argument('-a', '--absTol', type=float, default=1e-6,
|
||||
help='maximum tolerated relative error (default=1e-6)')
|
||||
args = parser.parse_args()
|
||||
|
||||
# fuzzy compare
|
||||
|
@ -65,7 +65,7 @@ SET_TYPE_PROP(TutorialProblemCoupled, GridCreator, Dumux::CubeGridCreator<TypeTa
|
||||
// Set the wetting phase /*@\label{tutorial-coupled:2p-system-start}@*/
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, WettingPhase, /*@\label{tutorial-coupled:wettingPhase}@*/
|
||||
Dumux::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Dumux::H2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
Dumux::H2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
|
||||
// Set the non-wetting phase
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, NonwettingPhase, /*@\label{tutorial-coupled:nonwettingPhase}@*/
|
||||
@ -100,7 +100,7 @@ SET_BOOL_PROP(TutorialProblemCoupled, EnableGravity, false); /*@\label{tutorial-
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, EndTime, 100e3);
|
||||
|
||||
// define the size of the initial time step [s]
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, InitialTimeStepSize, 500.0);
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, InitialTimeStepSize, 125.0);
|
||||
|
||||
// define the physical size of the problem's domain [m]
|
||||
SET_SCALAR_PROP(TutorialProblemCoupled, DomainSizeX, 300.0);
|
||||
|
Loading…
Reference in New Issue
Block a user