coordinate-system 6.0.3__cp313-cp313-win_amd64.whl → 6.0.5__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 +21 -19
- coordinate_system/spectral_geometry.py +1602 -0
- coordinate_system-6.0.5.dist-info/METADATA +244 -0
- {coordinate_system-6.0.3.dist-info → coordinate_system-6.0.5.dist-info}/RECORD +7 -6
- coordinate_system-6.0.3.dist-info/METADATA +0 -1001
- {coordinate_system-6.0.3.dist-info → coordinate_system-6.0.5.dist-info}/LICENSE +0 -0
- {coordinate_system-6.0.3.dist-info → coordinate_system-6.0.5.dist-info}/WHEEL +0 -0
- {coordinate_system-6.0.3.dist-info → coordinate_system-6.0.5.dist-info}/top_level.txt +0 -0
coordinate_system/__init__.py
CHANGED
|
@@ -1,25 +1,31 @@
|
|
|
1
1
|
# coordinate_system/__init__.py
|
|
2
2
|
"""
|
|
3
|
-
Coordinate System
|
|
3
|
+
Coordinate System Library
|
|
4
4
|
=========================
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
High-performance 3D coordinate system and differential geometry library.
|
|
7
7
|
|
|
8
|
-
Core Components:
|
|
8
|
+
Core Components (C++ Layer):
|
|
9
9
|
- vec3, vec2: Vector types
|
|
10
|
-
- quat: Quaternion for rotations
|
|
11
|
-
- coord3: 3D coordinate frame
|
|
10
|
+
- quat: Quaternion for rotations (SU(2))
|
|
11
|
+
- coord3: 3D coordinate frame (Sim(3) group)
|
|
12
12
|
|
|
13
|
-
Modules:
|
|
14
|
-
- differential_geometry: Surface curvature
|
|
15
|
-
-
|
|
13
|
+
Python Modules:
|
|
14
|
+
- differential_geometry: Surface curvature via intrinsic gradient / Lie bracket
|
|
15
|
+
- spectral_geometry: FourierFrame (GL(1,C)), spectral analysis, heat kernel
|
|
16
|
+
- u3_frame: U3Frame (U(3)), gauge field theory, symmetry breaking
|
|
16
17
|
- visualization: Coordinate system visualization
|
|
17
|
-
- curve_interpolation:
|
|
18
|
+
- curve_interpolation: C2-continuous curve and frame interpolation
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
Group Correspondence:
|
|
21
|
+
- coord3 ∈ Sim(3) = R³ ⋊ (SO(3) × R⁺)
|
|
22
|
+
- FourierFrame ∈ GL(1,C) = U(1) × R⁺
|
|
23
|
+
- U3Frame ∈ U(3) = SU(3) × U(1)
|
|
24
|
+
|
|
25
|
+
Version: 6.0.4
|
|
20
26
|
"""
|
|
21
27
|
|
|
22
|
-
__version__ = '6.0.
|
|
28
|
+
__version__ = '6.0.4'
|
|
23
29
|
|
|
24
30
|
from .coordinate_system import vec3, vec2
|
|
25
31
|
from .coordinate_system import quat
|
|
@@ -67,8 +73,8 @@ from .differential_geometry import (
|
|
|
67
73
|
richardson_extrapolation,
|
|
68
74
|
)
|
|
69
75
|
|
|
70
|
-
#
|
|
71
|
-
from .
|
|
76
|
+
# Spectral geometry module (FourierFrame, GL(1,C) group)
|
|
77
|
+
from .spectral_geometry import (
|
|
72
78
|
# Core classes
|
|
73
79
|
FourierFrame,
|
|
74
80
|
FourierFrameSpectrum,
|
|
@@ -92,7 +98,7 @@ from .frames import (
|
|
|
92
98
|
GPU_AVAILABLE,
|
|
93
99
|
)
|
|
94
100
|
|
|
95
|
-
# U(3) Frame module (
|
|
101
|
+
# U(3) Frame module (U(3) group, gauge field theory)
|
|
96
102
|
from .u3_frame import (
|
|
97
103
|
# Core U(3) classes
|
|
98
104
|
U3Frame,
|
|
@@ -104,9 +110,6 @@ from .u3_frame import (
|
|
|
104
110
|
|
|
105
111
|
# Symmetry breaking
|
|
106
112
|
SymmetryBreakingPotential,
|
|
107
|
-
|
|
108
|
-
# Constants
|
|
109
|
-
C_SPEED,
|
|
110
113
|
)
|
|
111
114
|
|
|
112
115
|
# Visualization module
|
|
@@ -162,7 +165,7 @@ __all__ = [
|
|
|
162
165
|
'compare_methods',
|
|
163
166
|
'derivative_5pt', 'derivative_2nd_5pt', 'richardson_extrapolation',
|
|
164
167
|
|
|
165
|
-
#
|
|
168
|
+
# Spectral geometry module (FourierFrame, GL(1,C))
|
|
166
169
|
'FourierFrame', 'FourierFrameSpectrum',
|
|
167
170
|
'IntrinsicGradient', 'CurvatureFromFrame', 'BerryPhase', 'ChernNumber',
|
|
168
171
|
'SpectralDecomposition', 'HeatKernel', 'FrequencyProjection', 'FrequencyBandState',
|
|
@@ -173,7 +176,6 @@ __all__ = [
|
|
|
173
176
|
'U3Frame', 'SU3Component',
|
|
174
177
|
'GaugeConnection', 'FieldStrength',
|
|
175
178
|
'SymmetryBreakingPotential',
|
|
176
|
-
'C_SPEED',
|
|
177
179
|
|
|
178
180
|
# Visualization
|
|
179
181
|
'CoordinateSystemVisualizer', 'CurveVisualizer', 'ParametricCurve',
|