coordinate-system 7.0.1__cp313-cp313-win_amd64.whl → 7.0.2__cp313-cp313-win_amd64.whl
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.
- coordinate_system/__init__.py +97 -54
- coordinate_system/complex_geometric_physics.py +128 -120
- coordinate_system/coordinate_system.cp313-win_amd64.pyd +0 -0
- coordinate_system/curve_interpolation.py +4 -3
- coordinate_system/differential_geometry.py +81 -1
- coordinate_system/spectral_geometry.py +1169 -1185
- coordinate_system/u3_frame.py +4 -4
- coordinate_system/visualization.py +4 -3
- {coordinate_system-7.0.1.dist-info → coordinate_system-7.0.2.dist-info}/METADATA +7 -7
- coordinate_system-7.0.2.dist-info/RECORD +13 -0
- coordinate_system-7.0.1.dist-info/RECORD +0 -13
- {coordinate_system-7.0.1.dist-info → coordinate_system-7.0.2.dist-info}/LICENSE +0 -0
- {coordinate_system-7.0.1.dist-info → coordinate_system-7.0.2.dist-info}/WHEEL +0 -0
- {coordinate_system-7.0.1.dist-info → coordinate_system-7.0.2.dist-info}/top_level.txt +0 -0
coordinate_system/u3_frame.py
CHANGED
|
@@ -11,10 +11,10 @@ Core Theory:
|
|
|
11
11
|
- Gauge field as complex frame connection: A_μ ∈ 𝔲(3)
|
|
12
12
|
- Three phase angles corresponding to color degrees of freedom (red, green, blue)
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
**Authors:** Pan Guojun
|
|
15
15
|
Date: 2025-12-04
|
|
16
16
|
Version: 7.0.0-alpha
|
|
17
|
-
DOI
|
|
17
|
+
**DOI:** https://doi.org/10.5281/zenodo.14435613
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
__version__ = '7.0.0-alpha'
|
|
@@ -394,7 +394,7 @@ class U3Frame:
|
|
|
394
394
|
|
|
395
395
|
@staticmethod
|
|
396
396
|
def _gell_mann_matrices() -> List[np.ndarray]:
|
|
397
|
-
"""Gell-Mann
|
|
397
|
+
"""Gell-Mann matrices (SU(3) generators)"""
|
|
398
398
|
λ = [
|
|
399
399
|
# λ₁
|
|
400
400
|
np.array([[0, 1, 0], [1, 0, 0], [0, 0, 0]], dtype=complex),
|
|
@@ -591,7 +591,7 @@ class GaugeConnection:
|
|
|
591
591
|
|
|
592
592
|
@staticmethod
|
|
593
593
|
def _pauli_matrices() -> List[np.ndarray]:
|
|
594
|
-
"""Pauli
|
|
594
|
+
"""Pauli matrices (SU(2) generators)"""
|
|
595
595
|
σ = [
|
|
596
596
|
np.array([[0, 1], [1, 0]], dtype=complex), # σ₁
|
|
597
597
|
np.array([[0, -1j], [1j, 0]], dtype=complex), # σ₂
|
|
@@ -11,9 +11,10 @@ Features:
|
|
|
11
11
|
- Frame field visualization on surfaces
|
|
12
12
|
- Multiple view angles and animation support
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
Date: 2025-12-03
|
|
16
|
-
|
|
14
|
+
**Authors:** Pan Guojun
|
|
15
|
+
Date: 2025-12-03
|
|
16
|
+
**DOI:** https://doi.org/10.5281/zenodo.14435613
|
|
17
|
+
"""
|
|
17
18
|
|
|
18
19
|
import numpy as np
|
|
19
20
|
import matplotlib.pyplot as plt
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: coordinate_system
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.2
|
|
4
4
|
Summary: High-performance 3D coordinate system library with unified differential geometry, quantum frame algebra, and Christmas Equation (CFUT)
|
|
5
5
|
Home-page: https://github.com/panguojun/Coordinate-System
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
6
|
+
Author: Pan Guojun
|
|
7
|
+
Author-email: Pan Guojun <18858146@qq.com>
|
|
8
8
|
License: MIT
|
|
9
9
|
Project-URL: Homepage, https://github.com/panguojun/Coordinate-System
|
|
10
10
|
Project-URL: Documentation, https://github.com/panguojun/Coordinate-System/blob/main/README.md
|
|
11
11
|
Project-URL: Repository, https://github.com/panguojun/Coordinate-System
|
|
12
12
|
Project-URL: Bug Reports, https://github.com/panguojun/Coordinate-System/issues
|
|
13
|
-
Project-URL: DOI, https://
|
|
13
|
+
Project-URL: DOI, https://doi.org/10.5281/zenodo.14435613
|
|
14
14
|
Keywords: 3d,math,vector,quaternion,coordinate-system,geometry,differential-geometry,curvature,spectral-analysis,christmas-equation,cfut,unified-field-theory,complex-frame
|
|
15
15
|
Platform: Windows
|
|
16
16
|
Platform: Linux
|
|
@@ -50,10 +50,10 @@ Requires-Dist: matplotlib>=3.3.0
|
|
|
50
50
|
[](https://pypi.org/project/coordinate-system/)
|
|
51
51
|
[](LICENSE)
|
|
52
52
|
|
|
53
|
-
**
|
|
53
|
+
**Authors:** Pan Guojun
|
|
54
54
|
**Version:** 7.0.1
|
|
55
55
|
**License:** MIT
|
|
56
|
-
**DOI:**
|
|
56
|
+
**DOI:** https://doi.org/10.5281/zenodo.14435613
|
|
57
57
|
|
|
58
58
|
---
|
|
59
59
|
|
|
@@ -253,7 +253,7 @@ S_YM = F_xy.yang_mills_action()
|
|
|
253
253
|
- **EnergyMomentumTensor**: Real-imaginary tensor decomposition
|
|
254
254
|
- **Unified Field Solver**: Einstein tensor, Chern-Simons current, topological energy-momentum
|
|
255
255
|
- **Complete English Translation**: All documentation and code comments in English
|
|
256
|
-
- **DOI
|
|
256
|
+
- **DOI:** https://doi.org/10.5281/zenodo.14435613
|
|
257
257
|
|
|
258
258
|
### v6.0.4 (2025-12-08)
|
|
259
259
|
- `frames.py` → `spectral_geometry.py`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
coordinate_system/__init__.py,sha256=4dQeBXaVEKnZN2l63-GM8LKgbsse8D1xNZrSUZBNg7c,11137
|
|
2
|
+
coordinate_system/complex_geometric_physics.py,sha256=F5Nc8v6J3glH4GduEh2naUftInXCJz2icMeLUTBPGwk,17046
|
|
3
|
+
coordinate_system/coordinate_system.cp313-win_amd64.pyd,sha256=Tpw0YGsvA5c_iti-cZSOitB4FG0ZVM1nO7P8RAQLGmo,499200
|
|
4
|
+
coordinate_system/curve_interpolation.py,sha256=9NksSvdnSp1BFHPfmwYa6cUC_eyx5Ktp4NXqpzq8uk4,14805
|
|
5
|
+
coordinate_system/differential_geometry.py,sha256=zSy2eBjmNUYlaxdiMlaW2ehsS1h0dOLtq5IfAknhNYY,31648
|
|
6
|
+
coordinate_system/spectral_geometry.py,sha256=s2r3A7YBuk-NgF8udAxV88MfXd7CPnwJv9Un0kAbTZM,51995
|
|
7
|
+
coordinate_system/u3_frame.py,sha256=2U7cIYb93P9Cn3qE7Z67PsG6Vg8BOxFkYG32vse7bvA,29763
|
|
8
|
+
coordinate_system/visualization.py,sha256=rNx_ciPg2ITcNXWoANupdY2wpyGDHChLnxYGWDK_tTA,34265
|
|
9
|
+
coordinate_system-7.0.2.dist-info/LICENSE,sha256=tDnRkJxBYPzWdfh2gArRqrUPJxQZRZHJVs68qqBHIq4,1083
|
|
10
|
+
coordinate_system-7.0.2.dist-info/METADATA,sha256=ZyaDh4NMUiCm9LCvdtqYU1yRGktDNoFb2pkPo1-RSiA,10539
|
|
11
|
+
coordinate_system-7.0.2.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
|
|
12
|
+
coordinate_system-7.0.2.dist-info/top_level.txt,sha256=R6LguuPPZ5esrIsDTqPGi9UxCvZPIXwn7KRKX87c79M,18
|
|
13
|
+
coordinate_system-7.0.2.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
coordinate_system/__init__.py,sha256=1-oJYgWHlzsU52XSrpkBaBRC3ELtJM7yCAgEwZ-IsRI,9615
|
|
2
|
-
coordinate_system/complex_geometric_physics.py,sha256=iElp1wYLR_oKlEfqoDJIKnZ5XVmwvvGzJU92OHJI1xs,16930
|
|
3
|
-
coordinate_system/coordinate_system.cp313-win_amd64.pyd,sha256=fbsmUByb2kDIZMY7ml_VX43a2Dc8UlKxxgRg5m9zG2E,499200
|
|
4
|
-
coordinate_system/curve_interpolation.py,sha256=_HKsWozBNlD8TaVX1K0dzWTNFa_96Bqu6F_K4xhceSg,14753
|
|
5
|
-
coordinate_system/differential_geometry.py,sha256=SYPVI6cYk-TharLOQCjMd-4kK0Em5ETTU6y6zvjCL3E,29388
|
|
6
|
-
coordinate_system/spectral_geometry.py,sha256=k2Rb-wJSB5vZsCz-rTkHbiNd4IBhOCvDdsIezLsHewQ,51996
|
|
7
|
-
coordinate_system/u3_frame.py,sha256=Jp5aBo7gp9r76ADjzW668Rpkgke2LnrDumukc3xy_jo,29794
|
|
8
|
-
coordinate_system/visualization.py,sha256=hnjQB66plimu24CimzW98ZBcFOBUCoJ9vhxjsQ417s0,34229
|
|
9
|
-
coordinate_system-7.0.1.dist-info/LICENSE,sha256=tDnRkJxBYPzWdfh2gArRqrUPJxQZRZHJVs68qqBHIq4,1083
|
|
10
|
-
coordinate_system-7.0.1.dist-info/METADATA,sha256=jIo0YhuLRqvChXMHWe9mR2dYlu50AI5td7qX_DEzxRM,10555
|
|
11
|
-
coordinate_system-7.0.1.dist-info/WHEEL,sha256=4-iQBlRoDdX1wfPofc7KLWa5Cys4eZSgXs6GVU8fKlQ,101
|
|
12
|
-
coordinate_system-7.0.1.dist-info/top_level.txt,sha256=R6LguuPPZ5esrIsDTqPGi9UxCvZPIXwn7KRKX87c79M,18
|
|
13
|
-
coordinate_system-7.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|