delta-theory 6.10.3__tar.gz → 6.10.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {delta_theory-6.10.3 → delta_theory-6.10.5}/PKG-INFO +2 -2
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/unified_yield_fatigue_v6_9.py +2 -2
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/PKG-INFO +2 -2
- {delta_theory-6.10.3 → delta_theory-6.10.5}/pyproject.toml +2 -2
- {delta_theory-6.10.3 → delta_theory-6.10.5}/LICENSE +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/README.md +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/apps/__init__.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/apps/delta_fatigue_app.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/Universal_Lindemann.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/__init__.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/dbt_unified.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/fatigue_redis_api.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/core/materials.py +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/SOURCES.txt +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/dependency_links.txt +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/entry_points.txt +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/requires.txt +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/delta_theory.egg-info/top_level.txt +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/setup.cfg +0 -0
- {delta_theory-6.10.3 → delta_theory-6.10.5}/tests/test_core.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: delta-theory
|
|
3
|
-
Version: 6.10.
|
|
3
|
+
Version: 6.10.5
|
|
4
4
|
Summary: Unified materials strength and fatigue prediction based on geometric first principles
|
|
5
5
|
Author: Tamaki
|
|
6
6
|
Author-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
7
|
-
Maintainer-email: Masamichi Iizumi <
|
|
7
|
+
Maintainer-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/miosync/delta-theory
|
|
10
10
|
Project-URL: Documentation, https://github.com/miosync/delta-theory#readme
|
|
@@ -679,8 +679,8 @@ def cmd_calibrate(args: argparse.Namespace) -> None:
|
|
|
679
679
|
sigma_y = y['sigma_y']
|
|
680
680
|
|
|
681
681
|
preset = FATIGUE_CLASS_PRESET[mat.structure]
|
|
682
|
-
r_th =
|
|
683
|
-
n =
|
|
682
|
+
r_th = args.r_th if args.r_th is not None else preset['r_th']
|
|
683
|
+
n = args.n_exp if args.n_exp is not None else preset['n']
|
|
684
684
|
|
|
685
685
|
y_mode, _ = yield_by_mode(
|
|
686
686
|
mat,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: delta-theory
|
|
3
|
-
Version: 6.10.
|
|
3
|
+
Version: 6.10.5
|
|
4
4
|
Summary: Unified materials strength and fatigue prediction based on geometric first principles
|
|
5
5
|
Author: Tamaki
|
|
6
6
|
Author-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
7
|
-
Maintainer-email: Masamichi Iizumi <
|
|
7
|
+
Maintainer-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/miosync/delta-theory
|
|
10
10
|
Project-URL: Documentation, https://github.com/miosync/delta-theory#readme
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "delta-theory"
|
|
7
|
-
version = "6.10.
|
|
7
|
+
version = "6.10.5"
|
|
8
8
|
description = "Unified materials strength and fatigue prediction based on geometric first principles"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
@@ -13,7 +13,7 @@ authors = [
|
|
|
13
13
|
{name = "Tamaki"},
|
|
14
14
|
]
|
|
15
15
|
maintainers = [
|
|
16
|
-
{name = "Masamichi Iizumi", email = "
|
|
16
|
+
{name = "Masamichi Iizumi", email = "m.iizumi@miosync.email"},
|
|
17
17
|
]
|
|
18
18
|
keywords = [
|
|
19
19
|
"materials-science",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|