delta-theory 6.10.0__tar.gz → 6.10.1__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.0/delta_theory.egg-info → delta_theory-6.10.1}/PKG-INFO +2 -2
- {delta_theory-6.10.0 → delta_theory-6.10.1}/core/__init__.py +26 -2
- {delta_theory-6.10.0 → delta_theory-6.10.1/delta_theory.egg-info}/PKG-INFO +2 -2
- {delta_theory-6.10.0 → delta_theory-6.10.1}/delta_theory.egg-info/SOURCES.txt +2 -3
- delta_theory-6.10.1/delta_theory.egg-info/top_level.txt +2 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/pyproject.toml +2 -2
- delta_theory-6.10.0/delta_theory.egg-info/top_level.txt +0 -3
- delta_theory-6.10.0/validation/__init__.py +0 -10
- {delta_theory-6.10.0 → delta_theory-6.10.1}/LICENSE +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/README.md +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/apps/__init__.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/apps/delta_fatigue_app.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/core/Universal_Lindemann.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/core/dbt_unified.py +0 -0
- {delta_theory-6.10.0/validation → delta_theory-6.10.1/core}/fatigue_redis_api.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/core/materials.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/core/unified_yield_fatigue_v6_9.py +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/delta_theory.egg-info/dependency_links.txt +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/delta_theory.egg-info/entry_points.txt +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/delta_theory.egg-info/requires.txt +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/setup.cfg +0 -0
- {delta_theory-6.10.0 → delta_theory-6.10.1}/tests/test_core.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: delta-theory
|
|
3
|
-
Version: 6.10.
|
|
3
|
+
Version: 6.10.1
|
|
4
4
|
Summary: Unified materials strength and fatigue prediction based on geometric first principles
|
|
5
5
|
Author: Tamaki
|
|
6
|
-
Author-email: Masamichi Iizumi <
|
|
6
|
+
Author-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
7
7
|
Maintainer-email: Masamichi Iizumi <masamichi@miosync.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/miosync/delta-theory
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"""
|
|
2
2
|
δ-Theory Core Library
|
|
3
3
|
=====================
|
|
4
|
-
|
|
5
4
|
Unified yield stress and fatigue life prediction based on geometric first principles.
|
|
6
5
|
|
|
7
6
|
Modules:
|
|
8
7
|
- unified_yield_fatigue_v6_9: Main yield + fatigue model (v6.9b)
|
|
9
8
|
- dbt_unified: Ductile-Brittle Transition Temperature prediction
|
|
10
9
|
- materials: Material database
|
|
10
|
+
- fatigue_redis_api: FatigueData-AM2022 Redis API
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
13
|
from .unified_yield_fatigue_v6_9 import (
|
|
@@ -31,5 +31,29 @@ from .dbt_unified import (
|
|
|
31
31
|
|
|
32
32
|
from .materials import MaterialGPU
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
from .fatigue_redis_api import FatigueDB # ← 追加!
|
|
35
|
+
|
|
36
|
+
__version__ = "6.10.1" # ← バージョンも上げる!
|
|
35
37
|
__author__ = "Masamichi Iizumi & Tamaki"
|
|
38
|
+
|
|
39
|
+
__all__ = [
|
|
40
|
+
# v6.9
|
|
41
|
+
"Material",
|
|
42
|
+
"MATERIALS",
|
|
43
|
+
"calc_sigma_y",
|
|
44
|
+
"fatigue_life_const_amp",
|
|
45
|
+
"generate_sn_curve",
|
|
46
|
+
"yield_by_mode",
|
|
47
|
+
"FATIGUE_CLASS_PRESET",
|
|
48
|
+
# DBT
|
|
49
|
+
"DBTUnified",
|
|
50
|
+
"DBTCore",
|
|
51
|
+
"GrainSizeView",
|
|
52
|
+
"TemperatureView",
|
|
53
|
+
"SegregationView",
|
|
54
|
+
"MATERIAL_FE",
|
|
55
|
+
# Materials
|
|
56
|
+
"MaterialGPU",
|
|
57
|
+
# FatigueDB
|
|
58
|
+
"FatigueDB", # ← 追加!
|
|
59
|
+
]
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: delta-theory
|
|
3
|
-
Version: 6.10.
|
|
3
|
+
Version: 6.10.1
|
|
4
4
|
Summary: Unified materials strength and fatigue prediction based on geometric first principles
|
|
5
5
|
Author: Tamaki
|
|
6
|
-
Author-email: Masamichi Iizumi <
|
|
6
|
+
Author-email: Masamichi Iizumi <m.iizumi@miosync.email>
|
|
7
7
|
Maintainer-email: Masamichi Iizumi <masamichi@miosync.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/miosync/delta-theory
|
|
@@ -6,6 +6,7 @@ apps/delta_fatigue_app.py
|
|
|
6
6
|
core/Universal_Lindemann.py
|
|
7
7
|
core/__init__.py
|
|
8
8
|
core/dbt_unified.py
|
|
9
|
+
core/fatigue_redis_api.py
|
|
9
10
|
core/materials.py
|
|
10
11
|
core/unified_yield_fatigue_v6_9.py
|
|
11
12
|
delta_theory.egg-info/PKG-INFO
|
|
@@ -14,6 +15,4 @@ delta_theory.egg-info/dependency_links.txt
|
|
|
14
15
|
delta_theory.egg-info/entry_points.txt
|
|
15
16
|
delta_theory.egg-info/requires.txt
|
|
16
17
|
delta_theory.egg-info/top_level.txt
|
|
17
|
-
tests/test_core.py
|
|
18
|
-
validation/__init__.py
|
|
19
|
-
validation/fatigue_redis_api.py
|
|
18
|
+
tests/test_core.py
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "delta-theory"
|
|
7
|
-
version = "6.10.
|
|
7
|
+
version = "6.10.1"
|
|
8
8
|
description = "Unified materials strength and fatigue prediction based on geometric first principles"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
authors = [
|
|
12
|
-
{name = "Masamichi Iizumi", email = "
|
|
12
|
+
{name = "Masamichi Iizumi", email = "m.iizumi@miosync.email"},
|
|
13
13
|
{name = "Tamaki"},
|
|
14
14
|
]
|
|
15
15
|
maintainers = [
|
|
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
|