-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bugfix] Re-Include math functions in abaqus and odbAccess (backport #…
…4980) (#4987) [bugfix] Re-Include math functions in abaqus and odbAccess (#4980) [bugfix] Include math functions in abaqus and odbAccess Introduced in #4895 (cherry picked from commit 00bf687) Co-authored-by: Hailin Wang <[email protected]>
- Loading branch information
1 parent
0e62aff
commit 68a2d91
Showing
2 changed files
with
30 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,26 @@ | ||
from __future__ import annotations | ||
|
||
from math import * | ||
import auto_all | ||
|
||
from abqpy import run | ||
|
||
run(cae=False) | ||
auto_all.start_all() | ||
|
||
from abaqus.Odb.Odb import Odb | ||
from abaqus.Odb.OdbCommands import ( | ||
from math import * # noqa | ||
|
||
from abaqus.Odb.Odb import Odb # noqa | ||
from abaqus.Odb.OdbCommands import ( # noqa | ||
AnalyticSurfaceProfile, | ||
isUpgradeRequiredForOdb, | ||
maxEnvelope, | ||
minEnvelope, | ||
openOdb, | ||
upgradeOdb, | ||
) | ||
from abaqus.UtilityAndView.BackwardCompatibility import BackwardCompatibility | ||
from abaqusConstants import * | ||
from abaqus.UtilityAndView.BackwardCompatibility import BackwardCompatibility # noqa | ||
from abaqusConstants import * # noqa | ||
|
||
backwardCompatibility = BackwardCompatibility() | ||
|
||
__all__ = [ | ||
"backwardCompatibility", | ||
"BackwardCompatibility", | ||
"isUpgradeRequiredForOdb", | ||
"maxEnvelope", | ||
"minEnvelope", | ||
"Odb", | ||
"openOdb", | ||
"upgradeOdb", | ||
"AnalyticSurfaceProfile", | ||
] | ||
auto_all.end_all() |