sxs 2023.3.2__py3-none-any.whl → 2024.0.0__py3-none-any.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.
- sxs/__init__.py +5 -5
- sxs/__version__.py +1 -1
- sxs/catalog/catalog.py +10 -1
- sxs/handlers.py +150 -48
- sxs/horizons/__init__.py +3 -3
- sxs/juliapkg.json +2 -2
- sxs/simulations/__init__.py +2 -0
- sxs/simulations/simulation.py +521 -0
- sxs/simulations/simulations.py +369 -0
- sxs/time_series.py +59 -0
- sxs/utilities/__init__.py +6 -2
- sxs/utilities/sxs_identifiers.py +19 -9
- sxs/utilities/url.py +4 -1
- sxs/waveforms/format_handlers/rotating_paired_diff_multishuffle_bzip2.py +9 -6
- sxs/waveforms/waveform_modes.py +7 -0
- sxs/zenodo/__init__.py +13 -0
- sxs/zenodo/api/deposit.py +2 -2
- {sxs-2023.3.2.dist-info → sxs-2024.0.0.dist-info}/METADATA +14 -15
- {sxs-2023.3.2.dist-info → sxs-2024.0.0.dist-info}/RECORD +21 -18
- {sxs-2023.3.2.dist-info → sxs-2024.0.0.dist-info}/WHEEL +0 -0
- {sxs-2023.3.2.dist-info → sxs-2024.0.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: sxs
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2024.0.0
|
|
4
4
|
Summary: Interface to data produced by the Simulating eXtreme Spacetimes collaboration
|
|
5
5
|
Project-URL: Homepage, https://github.com/sxs-collaboration/sxs
|
|
6
6
|
Project-URL: Documentation, https://sxs.readthedocs.io/
|
|
@@ -54,19 +54,18 @@ Requires-Dist: mkdocs-jupyter; extra == 'docs'
|
|
|
54
54
|
Requires-Dist: mkdocs-material; extra == 'docs'
|
|
55
55
|
Requires-Dist: mkdocstrings-python; extra == 'docs'
|
|
56
56
|
Provides-Extra: ecosystem
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist: jupyter-contrib-nbextensions>=0.5.1; extra == 'ecosystem'
|
|
61
|
-
Requires-Dist: jupyterlab>=2.2.8; extra == 'ecosystem'
|
|
57
|
+
Requires-Dist: ipykernel>=6.29; extra == 'ecosystem'
|
|
58
|
+
Requires-Dist: ipywidgets>=8.0; extra == 'ecosystem'
|
|
59
|
+
Requires-Dist: jupyterlab>=4.2; extra == 'ecosystem'
|
|
62
60
|
Requires-Dist: line-profiler>=3.0.2; extra == 'ecosystem'
|
|
63
61
|
Requires-Dist: matplotlib>=2.1.1; extra == 'ecosystem'
|
|
64
62
|
Requires-Dist: memory-profiler>=0.57.0; extra == 'ecosystem'
|
|
65
63
|
Requires-Dist: numpy-quaternion>=2023.0.4; extra == 'ecosystem'
|
|
66
64
|
Requires-Dist: numpy<2.0,>=1.20; extra == 'ecosystem'
|
|
67
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: qgridnext>=2.0; extra == 'ecosystem'
|
|
68
66
|
Requires-Dist: rise>=5.6.1; extra == 'ecosystem'
|
|
69
67
|
Requires-Dist: scri>=2020.8.18; (sys_platform != 'win32') and extra == 'ecosystem'
|
|
68
|
+
Requires-Dist: seaborn>=0.13; extra == 'ecosystem'
|
|
70
69
|
Requires-Dist: spinsfast>=2022; (sys_platform != 'win32') and extra == 'ecosystem'
|
|
71
70
|
Requires-Dist: sympy>=1.6.2; extra == 'ecosystem'
|
|
72
71
|
Description-Content-Type: text/markdown
|
|
@@ -90,14 +89,13 @@ automatically select the newest or highest-resolution dataset for a given
|
|
|
90
89
|
simulation, or return a range of versions or resolutions. Currently, the
|
|
91
90
|
high-level objects encapsulate
|
|
92
91
|
|
|
93
|
-
*
|
|
92
|
+
* Simulations — a catalog of all simulations produced by the SXS collaboration
|
|
93
|
+
* Simulation — an object encapsulating all data for a single simulation
|
|
94
94
|
* Metadata — data describing the simulation parameters
|
|
95
95
|
* Horizons — time-series data describing the apparent horizons
|
|
96
96
|
* Waveforms — time-series data describing the extrapolated gravitational-wave
|
|
97
97
|
modes
|
|
98
98
|
|
|
99
|
-
The complete documentation is [hosted here](https://sxs.readthedocs.io/en/stable/).
|
|
100
|
-
|
|
101
99
|
|
|
102
100
|
## Installation
|
|
103
101
|
|
|
@@ -156,15 +154,16 @@ interactive jupyter notebooks that are actually running this code and some
|
|
|
156
154
|
pre-downloaded data. The following is just a very brief overview of the `sxs`
|
|
157
155
|
package's main components.
|
|
158
156
|
|
|
159
|
-
There are
|
|
157
|
+
There are five important objects to understand in this package:
|
|
160
158
|
|
|
161
159
|
```python
|
|
162
160
|
import sxs
|
|
163
161
|
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
162
|
+
simulations = sxs.load("simulations")
|
|
163
|
+
sxs_bbh_1234 = sxs.load("SXS:BBH:1234")
|
|
164
|
+
metadata = sxs_bbh_1234.metadata
|
|
165
|
+
horizons = sxs_bbh_1234.horizons
|
|
166
|
+
h = sxs_bbh_1234.h
|
|
168
167
|
```
|
|
169
168
|
|
|
170
169
|
[The `catalog`
|
|
@@ -1,23 +1,26 @@
|
|
|
1
|
-
sxs/__init__.py,sha256=
|
|
2
|
-
sxs/__version__.py,sha256=
|
|
3
|
-
sxs/handlers.py,sha256=
|
|
4
|
-
sxs/juliapkg.json,sha256=
|
|
5
|
-
sxs/time_series.py,sha256=
|
|
1
|
+
sxs/__init__.py,sha256=51_F8xiD6cdE2kIq9dPyHxNQVsp4oCvtR1wQQQ0VS2A,2577
|
|
2
|
+
sxs/__version__.py,sha256=aFs9kYtajTQ9l26A0e89h1R5mpQ90uPu-3d2WXt4OrE,25
|
|
3
|
+
sxs/handlers.py,sha256=F9XmIhjZm8df1g49fUHemc-9wWstwFUZMacY2RXCWhE,24814
|
|
4
|
+
sxs/juliapkg.json,sha256=8gYxI-ADACltJuBdYHq3eHwAqjTfPlXpIwFRgkmy3gQ,178
|
|
5
|
+
sxs/time_series.py,sha256=OKaLg8tFyrtKcef7900ri-a0C6A8wKxA68KovZXvH6I,41081
|
|
6
6
|
sxs/caltechdata/__init__.py,sha256=s-RXyBiImKsQenqJIU6NAjlsjOX7f1MkIIW9rPtWYyg,14761
|
|
7
7
|
sxs/caltechdata/catalog.py,sha256=E2nystCaMZLKxTlLgfbfpGkckfkLyIzhn3YeEI3nQYc,4914
|
|
8
8
|
sxs/caltechdata/login.py,sha256=JaNyawXLSq37R1qbGM0fuTbfXmbHHnixEzU7nhwAGeE,21546
|
|
9
9
|
sxs/catalog/__init__.py,sha256=9-WTMTPDmqqkFyIHOtEbPA6etXm3_RSRrLWvHtLrjLg,205
|
|
10
|
-
sxs/catalog/catalog.py,sha256=
|
|
10
|
+
sxs/catalog/catalog.py,sha256=O7AC0s_HwkZE0mCRtdLNrxm1LgBv6Tf7aE3_3MzV6dc,26824
|
|
11
11
|
sxs/catalog/create.py,sha256=KL3zHljdLADeLfTDMTSkcVjIFim92Ylc-ziEvpiflEU,4734
|
|
12
12
|
sxs/catalog/description.py,sha256=4eHMde4oGNp69jRmXCsfrIYJ4WK5HYgYFgXyF5htLDM,10830
|
|
13
|
-
sxs/horizons/__init__.py,sha256=
|
|
13
|
+
sxs/horizons/__init__.py,sha256=CmBOz9wtb3AwRwsTVdjDj4QmnV3c9mKBw3-gif7FD54,16275
|
|
14
14
|
sxs/horizons/spec_horizons_h5.py,sha256=63cIGXuCEbJWrkRu3_mjL2gmssWtQ4axBTmg_wo_020,3642
|
|
15
15
|
sxs/horizons/xor_multishuffle_bzip2.py,sha256=y4AKuxmLuj8K1pkdhIoSzENGyMu4uhpiPrBh-XisvK4,6536
|
|
16
16
|
sxs/julia/GWFrames.py,sha256=47H9Ugff7ldGBujiUTcADT3b4MSxUtqmajvSApI91WA,2892
|
|
17
17
|
sxs/julia/__init__.py,sha256=uSLP_xfU-GZG7IO5vs0TEkCR4LH8aBYMF-852wDY3kI,3490
|
|
18
18
|
sxs/metadata/__init__.py,sha256=KCvJ9Cf1WhIZp-z28UzarKcmUAzV2BOv2gqKiorILjo,149
|
|
19
19
|
sxs/metadata/metadata.py,sha256=_vGqMUbeiN0fecJj9f9f9ex56WgSZuwwBXykUuj1_ZI,27679
|
|
20
|
-
sxs/
|
|
20
|
+
sxs/simulations/__init__.py,sha256=sl-sDI5N2A03lAfzMig8Jm_Beri_v65qjlIOeGGX9XM,72
|
|
21
|
+
sxs/simulations/simulation.py,sha256=m5O1BIxhes0Nifxm62Zv6u8ao0wkL8TP8s_4bWbkXt4,21448
|
|
22
|
+
sxs/simulations/simulations.py,sha256=V1cE966NLCJ2tyowh6S1LrVTGj5KzfLx7RVaUZ5zr_I,16905
|
|
23
|
+
sxs/utilities/__init__.py,sha256=NB8v7Hj-ZShSh3pVS_SdZpbPiBrk0nwXjNTHNX1PbFg,4727
|
|
21
24
|
sxs/utilities/bitwise.py,sha256=G9ZNYgwDQRhq5wbDf-p2HcUqkEP_IRDiQoXW4KyU17k,13205
|
|
22
25
|
sxs/utilities/dicts.py,sha256=CCpm3upG_9SRj9gjawukSUfaJ5asF-XRG2ausEXhYyg,695
|
|
23
26
|
sxs/utilities/downloads.py,sha256=iBceWfahHKxslUuI3p2-jRDoqGhP7q2A-La9g6XtMGg,4488
|
|
@@ -29,8 +32,8 @@ sxs/utilities/pretty_print.py,sha256=ZDHR3uvkzQ3Whk_eIp3BB7Abh796nqyrVsQRa68zgGc
|
|
|
29
32
|
sxs/utilities/select.py,sha256=UgoEQIvkm8NBe6sD5O2gK0g9Pep-xvWoYQ3b7RxI-Ww,6727
|
|
30
33
|
sxs/utilities/smooth_functions.py,sha256=apoz3cDay10ozYiBAkj0Z6Bmksz7htKI9cr_Wa1Idp0,9077
|
|
31
34
|
sxs/utilities/sxs_directories.py,sha256=DWHTa7GwLN7twoIa_xssXk0agtZUencbvA68AoaQRM8,9676
|
|
32
|
-
sxs/utilities/sxs_identifiers.py,sha256=
|
|
33
|
-
sxs/utilities/url.py,sha256=
|
|
35
|
+
sxs/utilities/sxs_identifiers.py,sha256=hssdPzivFWBNyqWhVaoaNQNzvO4TY-1EcWDpHiIR2ts,3795
|
|
36
|
+
sxs/utilities/url.py,sha256=dH73Vrtjy4AKqazoeP2EZNdknzhkXQLzMaFZCr9ocjY,1904
|
|
34
37
|
sxs/utilities/decimation/__init__.py,sha256=aE1p-NLwfd5nI4i6POT7Tttk0kZ2RUFuZf0Wjm-4W10,1336
|
|
35
38
|
sxs/utilities/decimation/greedy_spline.py,sha256=NVnwoEFIFkcqrNIoV3sssOyB-BrM8G7I4ldKhWqwQQw,4335
|
|
36
39
|
sxs/utilities/decimation/linear_bisection.py,sha256=zoyBRxvTkMJa7dFgpXrZQuxH6Tgh6dDtlO0Jpnyynj4,5357
|
|
@@ -58,24 +61,24 @@ sxs/waveforms/mode_utilities.py,sha256=gxsW-hunCoIReBVv9IrkGLdshr0rmztbH-JRgD6D9
|
|
|
58
61
|
sxs/waveforms/transformations.py,sha256=S5C-xnCk2umZlVsYgciyp7VMGZA8NI6md7OZp72upJU,9124
|
|
59
62
|
sxs/waveforms/waveform_grid.py,sha256=aBlcsudj1XozZD7n42sh6-nzysKNalAdHJkVQ7M6fE4,180
|
|
60
63
|
sxs/waveforms/waveform_mixin.py,sha256=S0RNe2HkwnqdCyGEarGYmoXD_DkTWGorsiGGIBWOam8,1179
|
|
61
|
-
sxs/waveforms/waveform_modes.py,sha256=
|
|
64
|
+
sxs/waveforms/waveform_modes.py,sha256=L6FSreVUSz60EN15A57c3qiwtML1QU-wdr9DYHaINk0,56919
|
|
62
65
|
sxs/waveforms/waveform_signal.py,sha256=Ojrt6DSDdleB0qmu6UwjjPnYdaWsrjnpBA_8dhnM_q4,182
|
|
63
66
|
sxs/waveforms/format_handlers/__init__.py,sha256=0wsnuBYCYsCkN19L2ipga7BtigvPyBcqiy_4qrzmLpE,50
|
|
64
67
|
sxs/waveforms/format_handlers/lvc.py,sha256=kUiLT-QbBTH5Di2touWwXqasQ8Q777mV9zhRIHEqjPk,7789
|
|
65
68
|
sxs/waveforms/format_handlers/nrar.py,sha256=2gQby7NwfagXCCllzVsxsc_cRbtdIWVvvwF4GOLvtLQ,20431
|
|
66
|
-
sxs/waveforms/format_handlers/rotating_paired_diff_multishuffle_bzip2.py,sha256=
|
|
69
|
+
sxs/waveforms/format_handlers/rotating_paired_diff_multishuffle_bzip2.py,sha256=HfWBOspSx9lECnEtvqesjX92UY4DDa3ViYY6_VD6GEY,27529
|
|
67
70
|
sxs/waveforms/format_handlers/rotating_paired_xor_multishuffle_bzip2.py,sha256=pFEJIlb6OQQNhv6r48ALFnZMKNZjuQY55ydWBADCDgU,2348
|
|
68
71
|
sxs/waveforms/format_handlers/spectre_cce_v1.py,sha256=VRfRKt15oV0y9yGq0r-rwUdlpjZbSGaHk66RsuOOHT0,3929
|
|
69
|
-
sxs/zenodo/__init__.py,sha256=
|
|
72
|
+
sxs/zenodo/__init__.py,sha256=KDcCWb7E3frZ0VylKFUkgeEMra6RG1q6FFy5Na8UuLY,26224
|
|
70
73
|
sxs/zenodo/catalog.py,sha256=3lbuV4M7XY1Z34jUTfVN_BHbm8blUVJPlSZQi2EXq9o,28737
|
|
71
74
|
sxs/zenodo/creators.py,sha256=z2KgTUK5daOez8Pe2JFFjsFNfvriQ8eJQ1PYic9rMEY,2573
|
|
72
75
|
sxs/zenodo/simannex.py,sha256=t-j_xChmND7vXnGu4rWyW6pa-5aZ31iokZOUaobzgak,4491
|
|
73
76
|
sxs/zenodo/surrogatemodeling.py,sha256=NTJXrnyXdrbX4KsoYP2obxVy-lakXtD7LqOEB4jQ_MI,8381
|
|
74
77
|
sxs/zenodo/api/__init__.py,sha256=EM_eh4Q8R5E0vIfMhyIR1IYFfOBu6vA0UTasgX9gHys,217
|
|
75
|
-
sxs/zenodo/api/deposit.py,sha256=
|
|
78
|
+
sxs/zenodo/api/deposit.py,sha256=J4RGvGjh0cEOrN4bBZWEDcPAhNscqB2fzLlvRZ5HTHM,36948
|
|
76
79
|
sxs/zenodo/api/login.py,sha256=Yz0ytgi81_5BpDzhrS0WPMXlvU2qUaCK8yn8zxfEbko,18007
|
|
77
80
|
sxs/zenodo/api/records.py,sha256=nKkhoHZ95CTztHF9Zzaug5p7IiUCJG4Em1i-l-WqH6U,3689
|
|
78
|
-
sxs-
|
|
79
|
-
sxs-
|
|
80
|
-
sxs-
|
|
81
|
-
sxs-
|
|
81
|
+
sxs-2024.0.0.dist-info/METADATA,sha256=Y1jDWhilTRWolH_-LDPC4lHmT8VBMcpN8_Cq0984Gyg,9301
|
|
82
|
+
sxs-2024.0.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
83
|
+
sxs-2024.0.0.dist-info/licenses/LICENSE,sha256=ptVOd5m7LDM5ZF0x32cxb8c2Nd5NDmAhy6DX7xt_7VA,1080
|
|
84
|
+
sxs-2024.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|