From 3012b4c453061b2112c3db34a4c441bacad45588 Mon Sep 17 00:00:00 2001 From: Tobias Meisel <tobias.meisel@ufz.de> Date: Tue, 19 Mar 2024 13:45:52 +0100 Subject: [PATCH] [logparser] Init for efficiency study --- ogstools/studies/efficiency/__init__.py | 26 +++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 ogstools/studies/efficiency/__init__.py diff --git a/ogstools/studies/efficiency/__init__.py b/ogstools/studies/efficiency/__init__.py new file mode 100644 index 000000000..03fd83ec0 --- /dev/null +++ b/ogstools/studies/efficiency/__init__.py @@ -0,0 +1,26 @@ +# Author: Tobias Meisel (Helmholtz Centre for Environmental Research GmbH - UFZ) +"""functions to generate a convergence study.""" + +from .common_ogs_analyses import ( + analysis_convergence_coupling_iteration, + analysis_convergence_newton_iteration, + analysis_simulation, + analysis_simulation_termination, + analysis_time_step, + fill_ogs_context, + time_step_vs_iterations, +) +from .log_parser import parse_file +from .ogs_regexes import ogs_regexes + +__all__ = [ + "parse_file", + "analysis_convergence_coupling_iteration", + "analysis_simulation", + "analysis_convergence_newton_iteration", + "analysis_simulation_termination", + "analysis_time_step", + "fill_ogs_context", + "time_step_vs_iterations", + "ogs_regexes", +] -- GitLab