Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Abaqus interface #11

Merged
merged 14 commits into from
Feb 21, 2024
Prev Previous commit
Next Next commit
Merge branch 'main' into abaqus_merge
  • Loading branch information
tmnp19 committed Feb 19, 2024
commit 7190da460f2a8cd20ac62acb2aa4b39908daf2a7
2 changes: 2 additions & 0 deletions piglot/solver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
from piglot.solver.solver import Solver
from piglot.solver.links.solver import LinksSolver
from piglot.solver.abaqus.solver import AbaqusSolver
from piglot.solver.curve.solver import CurveSolver


AVAILABLE_SOLVERS: Dict[str, Type[Solver]] = {
'links': LinksSolver,
'abaqus': AbaqusSolver,
'curve': CurveSolver,
}


Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.