ACID-code-v2 0.1.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.
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ACID_code_v2
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Returns line profiles from input spectra by fitting the stellar continuum and performing LSD
|
|
5
|
+
Author: Lucy Dolan
|
|
6
|
+
Author-email: Benjamin Cadell <bcadell01@qub.ac.uk>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/Benjamin-Cadell/ACID
|
|
9
|
+
Keywords: lsd,least squares deconvolution,fitting,ACID
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: POSIX
|
|
12
|
+
Requires-Python: >=3.13
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: emcee
|
|
17
|
+
Requires-Dist: matplotlib
|
|
18
|
+
Requires-Dist: scipy
|
|
19
|
+
Requires-Dist: astropy
|
|
20
|
+
Requires-Dist: tqdm
|
|
21
|
+
Provides-Extra: docs
|
|
22
|
+
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
A.C.I.D (Accurate Continuum fItting and Deconvolution)
|
|
26
|
+
==============================================================
|
|
27
|
+
|
|
28
|
+
ACID is a technique that builds on traditional Least-Squares Deconvolution (LSD) by simultaneously fitting the stellar continuum and stellar line profile and performing LSD in effective optical depth.
|
|
29
|
+
|
|
30
|
+
In a basic sense, ACID simulatenously fits the stellar continuum and profile using a combination of LSD and MCMC techniques. The spectra are then continuum corrected using this continuum fit. LSD is then run on the continuum corrected spectra to return high-resolution line profiles for each spectrum.
|
|
31
|
+
|
|
32
|
+
For a full outline of ACID's algorithm and implementation, see our paper: (link to paper will be added)
|
|
33
|
+
|
|
34
|
+
Documentation: https://acid-code.readthedocs.io/en/latest/index.html
|
|
35
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
acid_code_v2-0.1.0.dist-info/licenses/LICENSE,sha256=L6dUgqjvHmRoobrBCPSHKC4UtRM5Ldp1DJBC4bnLk3w,1070
|
|
2
|
+
acid_code_v2-0.1.0.dist-info/METADATA,sha256=vfc3OrtdAYfBoLskclSJE8pEomVitftxnORjFbWyQ4M,1568
|
|
3
|
+
acid_code_v2-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
acid_code_v2-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
acid_code_v2-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) [2023] [Lucy Dolan]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|