Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
375cbde
FEAT: Provide set of classes for organized time stepping
jwboth May 25, 2026
11d8cb2
MAINT: Simplify model runner and integrate external time stepping
jwboth May 25, 2026
955e606
MAINT: Remove flowchart character from TimeManager, now performed by …
jwboth May 25, 2026
8fc1e76
MAINT: Add utility method for updated progressbar handling
jwboth May 25, 2026
605c8c7
FEAT: Provide set of classes for organized time stepping
jwboth May 25, 2026
5cc1c6b
MAINT: Simplify model runner and integrate external time stepping
jwboth May 25, 2026
30f8772
MAINT: Remove flowchart character from TimeManager, now performed by …
jwboth May 25, 2026
f01086e
MAINT: Add utility method for updated progressbar handling
jwboth May 25, 2026
1d4c8ed
DOC: Clean up of comments
jwboth May 31, 2026
c1110e1
Merge branch 'trial-time' of https://github.com/pmgbergen/porepy into…
jwboth May 31, 2026
8bddaa7
Merge branch 'develop' into trial-time
Yuriyzabegaev Jun 12, 2026
94d3383
MAINT: Renamed convergence statuses
Yuriyzabegaev Jun 22, 2026
95b2908
MAINT: Splitted simulation status into time stepper status and model …
Yuriyzabegaev Jun 23, 2026
4ff90e9
WIP: Making some tests pass
Yuriyzabegaev Jun 23, 2026
4f32c65
TEST: Made some more tests work
Yuriyzabegaev Jun 23, 2026
a323124
TEST: Some more tests
Yuriyzabegaev Jun 23, 2026
5f157cd
MAINT: Removed commented out code
Yuriyzabegaev Jun 24, 2026
b028e39
MAINT: Added new methods to the protocol
Yuriyzabegaev Jun 24, 2026
2286b5f
TEST: Some more tests pass
Yuriyzabegaev Jun 24, 2026
009a7d9
TEST: Additional tests for time stepper
Yuriyzabegaev Jun 24, 2026
0ef5e50
TEST: Added test for TimeStepper
Yuriyzabegaev Jun 24, 2026
0f7ee3f
TEST: Moved test_model_time_step_control
Yuriyzabegaev Jun 24, 2026
00b07ae
DOC: Updated some docstrings
Yuriyzabegaev Jun 25, 2026
3359bf1
Maint: Nonlinear solver status
Yuriyzabegaev Jun 25, 2026
a82b71c
MAINT: Ruff, isort
Yuriyzabegaev Jun 25, 2026
7eb9a3d
Merge branch 'develop' into yz-time-trial-2 (tests fail)
Yuriyzabegaev Jun 25, 2026
a3052b2
MAINT: Failed simulation raises RuntimeError
Yuriyzabegaev Jun 25, 2026
7ee86ea
MAINT: Resolved circular import
Yuriyzabegaev Jun 25, 2026
afec095
TEST: Fixed a test
Yuriyzabegaev Jun 25, 2026
9dcfab0
TEST: Updated test_solver_statistics with new statuses
Yuriyzabegaev Jun 25, 2026
885c7be
MAINT: Removed old comment
Yuriyzabegaev Jun 25, 2026
6018364
TEST: Updated some tests
Yuriyzabegaev Jun 25, 2026
6195f83
TEST: Fixed some tests
Yuriyzabegaev Jun 25, 2026
251ee5f
TEST: Some more tests pass
Yuriyzabegaev Jun 25, 2026
cb0514c
TEST: Interplay between statistics and TimeStepper
Yuriyzabegaev Jun 26, 2026
95aa50a
MAINT: Small improvements
Yuriyzabegaev Jun 26, 2026
a9a02db
MAINT: Isort tests
Yuriyzabegaev Jun 26, 2026
ce38af6
TEST: Last moment test fix
Yuriyzabegaev Jun 26, 2026
ae3fd0f
Merge branch 'develop' into trial-time
Yuriyzabegaev Jun 26, 2026
b41832d
MAINT: python3.13 fix
Yuriyzabegaev Jun 26, 2026
cadc1dc
MAINT: Attempt to improve progressbar
Yuriyzabegaev Jun 26, 2026
d47116a
MAINT: Attempt to improve progressbar 2
Yuriyzabegaev Jun 26, 2026
bd1b96c
MAINT: Updated combined divergence criterion
Yuriyzabegaev Jun 29, 2026
7c86bad
MAINT: reverted old behavior that divergence criteria return either C…
Yuriyzabegaev Jun 29, 2026
124a411
DOC: Added clarification on how to subclass state enums
Yuriyzabegaev Jun 29, 2026
3018824
MAINT: replaced match with isinstance
Yuriyzabegaev Jun 29, 2026
0a38c74
MAINT: Moved common parts of NewtonSolver and LinearSolver into a sep…
Yuriyzabegaev Jun 29, 2026
8563978
MAINT: Moved TimeStepManager to time module
Yuriyzabegaev Jun 29, 2026
14b703c
DOC: time stepper docstring
Yuriyzabegaev Jun 29, 2026
0e2f3f4
MAINT: Renamed is_diverged to is_failed
Yuriyzabegaev Jun 29, 2026
0d154c8
MAINT: isort
Yuriyzabegaev Jun 29, 2026
4a90a37
MAINT: renamed time folder into time_stepper
Yuriyzabegaev Jun 30, 2026
ae40ba0
MAINT: ruff
Yuriyzabegaev Jun 30, 2026
a0b44a2
Merge branch 'develop' into trial-time
keileg Jul 2, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/porepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,20 @@

# Related to models and solvers
from porepy.models.model_runner import (
ModelRunnerStatus,
ModelRunnerStatusFailure,
ModelRunnerStatusSuccess,
ModelRunner,
run_time_dependent_model,
run_stationary_model,
)
from porepy.numerics.linear_solvers import LinearSolver
from porepy.numerics.nonlinear.nonlinear_solvers import NewtonSolver
from porepy.numerics.nonlinear.nonlinear_solver_status import (
NonlinearSolverStatus,
NonlinearSolverStatusConverged,
NonlinearSolverStatusFailed,
)


from porepy.numerics import ad
Expand All @@ -166,7 +174,15 @@
)

# Time stepping control
from porepy.numerics.time_step_control import TimeManager
from porepy import time_stepper
from porepy.time_stepper.time_step_status import (
TimeStepperStatus,
TimeStepperStatusContinueIterating,
TimeStepperStatusFailure,
TimeStepperStatusSuccess,
)
from porepy.time_stepper.time_stepper import TimeStepper
from porepy.time_stepper.time_step_control import TimeManager

from porepy import models
from porepy.models.abstract_equations import (
Expand Down
Loading
Loading