Skip to content
Snippets Groups Projects
Commit 7c003e74 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[test][timeloop] test different time scales

parent 410dda4b
No related branches found
No related tags found
1 merge request!3618[TimeLoop] define base tolerance
......@@ -220,7 +220,17 @@ int main(int argc, char* argv[])
Dumux::initialize(argc, argv);
const auto& mpiHelper = Dune::MPIHelper::instance();
// unit time
testTimeLoops(mpiHelper, 0.0, 1.0, 0.1);
// microseconds
testTimeLoops(mpiHelper, 0.0, 1.0e-6, 1e-7);
// large time scales
testTimeLoops(mpiHelper, 0.0, 1.0e12, 1e9, {1e11});
// large time scales but small initial time step
testTimeLoops(mpiHelper, 0.0, 1.0e12, 0.1, {1e11});
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment