wind_ae 0.2.0__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.
- wind_ae-0.2.0/LICENSE +29 -0
- wind_ae-0.2.0/MANIFEST.in +6 -0
- wind_ae-0.2.0/PKG-INFO +19 -0
- wind_ae-0.2.0/README.md +115 -0
- wind_ae-0.2.0/docs/conf.py +35 -0
- wind_ae-0.2.0/pyproject.toml +34 -0
- wind_ae-0.2.0/saves/setup.py +30 -0
- wind_ae-0.2.0/setup.cfg +4 -0
- wind_ae-0.2.0/wind_ae/McAstro/__init__.py +44 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/Lodders.dat +85 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/Verner.csv +191 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/atomic_masses.csv +292 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/atomic_species.py +288 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/atomic_table.txt +186 -0
- wind_ae-0.2.0/wind_ae/McAstro/atoms/solarZ_mass_fracs.csv +83 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/Ballistic.py +69 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/atmosphere.py +85 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/insolation/euv.py +110 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/insolation/glq_rates.py +619 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/insolation/glq_spectrum.py +1027 -0
- wind_ae-0.2.0/wind_ae/McAstro/planets/insolation/stellar_euv.py +243 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/image_plane.py +307 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/imaging.py +256 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/lines/CII_1.py +72 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/lines/chiantiline.py +105 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/lines/lyman_alpha.py +73 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/radiative_transfer.py +187 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/ray_generators/relax_ray.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/ray_generators/yt_ray.py +74 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/ray_trace.py +54 -0
- wind_ae-0.2.0/wind_ae/McAstro/radiation/rtw.py +252 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/classification/mass_classification.py +54 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/colour_relation.py +13 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/colour_relation_models/Mamajek2008.py +70 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/mass_relation.py +26 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/mass_relation_models/Eker2018.py +178 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/temperature_relation.py +14 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/temperature_relation_models/Ballesteros2012.py +27 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/relations/temperature_relation_models/Sung2013.py +319 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/black_body.py +121 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy.py +91 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/Chadney2015.py +29 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/Jackson2012.py +75 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/Linsky2014.py +78 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/SanzForcada2011.py +55 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/Tu2015.py +37 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/high_energy_models/Wright2018.py +48 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/lisird.py +137 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/spectrum/phoenix.py +276 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/winds/isentropic.py +38 -0
- wind_ae-0.2.0/wind_ae/McAstro/stars/winds/polytropic.py +44 -0
- wind_ae-0.2.0/wind_ae/McAstro/utils/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/McAstro/utils/constants.py +46 -0
- wind_ae-0.2.0/wind_ae/McAstro/utils/data_download.py +34 -0
- wind_ae-0.2.0/wind_ae/McAstro/utils/fetch_core_data.py +36 -0
- wind_ae-0.2.0/wind_ae/McAstro/utils/timedate.py +68 -0
- wind_ae-0.2.0/wind_ae/__init__.py +8 -0
- wind_ae-0.2.0/wind_ae/inputs/add_params.inp +2 -0
- wind_ae-0.2.0/wind_ae/inputs/bcs.inp +8 -0
- wind_ae-0.2.0/wind_ae/inputs/goal_spectrum.inp +340 -0
- wind_ae-0.2.0/wind_ae/inputs/guess.inp +1571 -0
- wind_ae-0.2.0/wind_ae/inputs/phys_params.inp +7 -0
- wind_ae-0.2.0/wind_ae/inputs/planet_params.inp +7 -0
- wind_ae-0.2.0/wind_ae/inputs/spectrum.inp +69 -0
- wind_ae-0.2.0/wind_ae/inputs/tech_params.inp +5 -0
- wind_ae-0.2.0/wind_ae/inputs/term_ind.inp +5 -0
- wind_ae-0.2.0/wind_ae/saves/temp.csv +2571 -0
- wind_ae-0.2.0/wind_ae/saves/windsoln.csv +1571 -0
- wind_ae-0.2.0/wind_ae/wrapper/__init__.py +44 -0
- wind_ae-0.2.0/wind_ae/wrapper/relax_wrapper.py +3497 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/__init__.py +0 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/atmosphere.py +171 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/constants.py +46 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/dere_table29.dat +465 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/inputs.py +291 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/line_cooling_coeffs.dat +16 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/metals.py +579 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/observations.py +163 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/physics.py +98 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/plots.py +889 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/recombo_vars.dat +485 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/spectrum.py +378 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/system.py +126 -0
- wind_ae-0.2.0/wind_ae/wrapper/wrapper_utils/windsoln.py +1524 -0
- wind_ae-0.2.0/wind_ae.egg-info/PKG-INFO +19 -0
- wind_ae-0.2.0/wind_ae.egg-info/SOURCES.txt +91 -0
- wind_ae-0.2.0/wind_ae.egg-info/dependency_links.txt +1 -0
- wind_ae-0.2.0/wind_ae.egg-info/requires.txt +11 -0
- wind_ae-0.2.0/wind_ae.egg-info/top_level.txt +5 -0
wind_ae-0.2.0/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025, Madelyn Broome
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
wind_ae-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wind_ae
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: 1D relaxation Parker wind model based on Murray-Clay et al. (2009)
|
|
5
|
+
Author: Madelyn Broome, John McCann, Ruth Murray-Clay
|
|
6
|
+
Requires-Python: >=3.13
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: scipy>1.6
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: astropy
|
|
11
|
+
Requires-Dist: IPython
|
|
12
|
+
Requires-Dist: pandas>=2.2.3
|
|
13
|
+
Requires-Dist: matplotlib
|
|
14
|
+
Requires-Dist: datetime
|
|
15
|
+
Requires-Dist: pyarrow
|
|
16
|
+
Requires-Dist: fastparquet
|
|
17
|
+
Requires-Dist: requests
|
|
18
|
+
Requires-Dist: ChiantiPy
|
|
19
|
+
Dynamic: license-file
|
wind_ae-0.2.0/README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# Wind-AE (BETA)
|
|
2
|
+
|
|
3
|
+
`Wind-AE` (/windy/) stands for "wind atmospheric escape" and is a relatively fast 1D, steady-state, hydrodynamic, non-isothermal, Parker wind relaxation code for modeling atmospheric escape based on [Murray-Clay et al. (2009)](https://ui.adsabs.harvard.edu/abs/2009ApJ...693...23M/abstract). `Wind-AE` is a forward model that solves the energy conservation, momentum conservation, and ionization equilibrium equations at the substellar point using the ["Numerical Recipes in C"](https://ui.adsabs.harvard.edu/abs/1992nrca.book.....P/abstract) relaxation method. This allows `Wind-AE` to quickly compute the atmosphere mass loss rate as well as upper atmosphere (<~100 microbar) velocity, temperature, density, and ionization structure as a function of altitude.
|
|
4
|
+
|
|
5
|
+
`Wind-AE` updates [Murray-Clay et al. (2009)](https://ui.adsabs.harvard.edu/abs/2009ApJ...693...23M/abstract) to allow for the modeling of atomic metals and multifrequency XUV stellar spectra (Broome et al. submitted). If you use `Wind-AE`, please consider citing Broome et al. (in prep).
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
We appreciate your patience while the docs are developed. In the meantime, take advantage of `Notebooks/Quickstart.ipynb` to get a quick orientation to `Wind-AE` and please report any bugs via [Github](https://github.com/mabroome/wind-ae/issues) or via email to mabroome@ucsc.edu.
|
|
9
|
+
|
|
10
|
+
[](https://semaphorep.github.io/codeastro/)
|
|
11
|
+
|
|
12
|
+
Is Wind-AE the right tool for me?
|
|
13
|
+
----------------------
|
|
14
|
+
`Wind-AE` is well-suited for users interested in **quickly estimating mass loss rates** or outflow structure. Outflow structure includes bulk temperature and per-species ionization fractions as a function of radius, so can be easily translated into approximating and **predicting observables and transits**, including metastable helium (He 10830$\AA$) transits, though a He transit module is not yet included. Precise modeling of lower atmosphere ($\lssim 100 \mu$bar) is considered necessary for highly accurate transit models, but Wind-AE can be easily coupled to lower atmosphere photochemistry models whose outputs can (e.g., radius, temperature, abundances, ionization fractions, etc. at 1 $\mu$bar) can be fed into Wind-AE as inputs.
|
|
15
|
+
|
|
16
|
+
>*If you are interested in outflow structure:* Past the Coriolis turning radius (a few planetary radii) 3D physics dominates, so `Wind-AE` does not integrate past that point. `Wind-AE` also makes simplifying assumptions about the region below the region below the wind-launch radius (~10 nanobars).
|
|
17
|
+
|
|
18
|
+
Because `Wind-AE` runs on the order of seconds to minutes, it can be (and has been) used to **model planet evolution**.
|
|
19
|
+
|
|
20
|
+
#### `Wind-AE` can model:
|
|
21
|
+
- Multiple atomic species
|
|
22
|
+
- X-ray physics (secondary ionizations and K-shell ionization cross-sections for relevant metals)
|
|
23
|
+
- Both low and high stellar XUV flux
|
|
24
|
+
- **Heating & Cooling**: Ionization heating, bolometric heating & cooling (negligible in wind), PdV cooling (work done due to expansion of gas), radiative / atomic line cooling (Lyman-$\alpha$, OI, OII, OIII, CI, CII), recombination cooling
|
|
25
|
+
#### `Wind-AE` does not (currently) include:
|
|
26
|
+
- **Magnetic fields**
|
|
27
|
+
- **Time dependence**
|
|
28
|
+
- **Diffusion/drag** - the atomic species set by the user are assumed to be entrained in the outflow and in thermal equilibrium. This is an appropriate assumption for species below the [crossover mass](https://ui.adsabs.harvard.edu/abs/1987Icar...69..532H) and a warning will be raised.
|
|
29
|
+
- **Heating & Cooling**: Conduction (warning raised if relevant, **planned**), H3+ line cooling (not planned), Fe & Ca line cooling (relevant at high Z only, **planned**), free-free cooling (warning raised if relevant, not planned)
|
|
30
|
+
- Multiple ionization states of the same species (**planned**)
|
|
31
|
+
See Broome et al. (submitted) for more details.
|
|
32
|
+
|
|
33
|
+
- Want a rapid H/He model with power-law approximated XUV spectra? Check out [ATES](https://github.com/AndreaCaldiroli/ATES-Code) ([Caldiroli et al. 2021](https://ui.adsabs.harvard.edu/abs/2021A%26A...655A..30C/abstract))
|
|
34
|
+
- Do you want to set the mass loss rate ($\dot{M}$) yourself or want an EUV isothermal Parker wind outflow model that runs in nanoseconds? Check out [p-winds](https://github.com/ladsantos/p-winds) ([Dos Santos et al. 2022](https://ui.adsabs.harvard.edu/abs/2022A%26A...659A..62D/abstract)).
|
|
35
|
+
- Do you want to use p-winds and get transit models for metals via Cloudy? Check out [Sunbather](https://github.com/antonpannekoek/sunbather) ([Linssen et al. 2024](https://ui.adsabs.harvard.edu/abs/2024A%26A...688A..43L/abstract))
|
|
36
|
+
- Want to leverage Cloudy and the hydrodynamic code PLUTO for more thorough XUV-irradiated, but slightly more expensive calculations? Check out TPCI ([Salz et al. 2015](https://ui.adsabs.harvard.edu/abs/2015A%26A...576A..21S/abstract))
|
|
37
|
+
- That sound great, but you prefer to code in Python over C/C++? Check out pyTPCI [Riley, Zhang, & Bean 2025](https://ui.adsabs.harvard.edu/abs/2025ApJ...980...34R/abstract)
|
|
38
|
+
- Do you care about diffusion throughout the wind? Check out [AIOLIS](https://github.com/Schulik/aiolos) ([Schulik & Booth, 2022](https://ui.adsabs.harvard.edu/abs/2023MNRAS.523..286S/abstract)).
|
|
39
|
+
- Want to model the lower atmosphere in more detail? Check out CETIMB (Koskinen et al. 2022)
|
|
40
|
+
- Just want a grid of mass loss rates for pure-Hydrogen, low-flux-EUV-irradiated planets? See [Kubyshkina & Fossati](https://ui.adsabs.harvard.edu/abs/2021RNAAS...5...74K/abstract)
|
|
41
|
+
- Want a grid of mass loss rates for pure-Hydrogen, high-flux-XUV-irradiated planets? See [Owen & Jackson (2012)](https://ui.adsabs.harvard.edu/abs/2012MNRAS.425.2931O/abstract)
|
|
42
|
+
|
|
43
|
+
>Want your model added to this list or to update the short bio? Email mabroome@ucsc.edu
|
|
44
|
+
|
|
45
|
+
Requirements
|
|
46
|
+
------------
|
|
47
|
+
|
|
48
|
+
`Wind-AE` requires the following packages and will pip install them automatically by following the Installation guide below.
|
|
49
|
+
|
|
50
|
+
* `python`
|
|
51
|
+
* `numpy`
|
|
52
|
+
* `scipy`
|
|
53
|
+
* `astropy`
|
|
54
|
+
* `pandas`>=2.2.3
|
|
55
|
+
* `matplotlib`
|
|
56
|
+
* `datetime`
|
|
57
|
+
* `pyarrow`
|
|
58
|
+
* `fastparquet`
|
|
59
|
+
* `requests`
|
|
60
|
+
* `ChiantiPy`
|
|
61
|
+
|
|
62
|
+
Installation
|
|
63
|
+
------------
|
|
64
|
+
### Compile from source (only available in beta)
|
|
65
|
+
|
|
66
|
+
Clone the repository using
|
|
67
|
+
```angular2html
|
|
68
|
+
git clone https://github.com/mibroome/wind-ae/
|
|
69
|
+
```
|
|
70
|
+
or navigate to [github.com/mibroome/wind-ae/](https://github.com/mibroome/wind-ae/) and download and unzip the zip file.
|
|
71
|
+
|
|
72
|
+
Until `Wind-AE` is dockerized, it is recommended to use a Python environment to avoid dependency issues. However, if your system meets the above requirements, there is no need to create an environment and you can skip to the compilation step.
|
|
73
|
+
To create an environment use either
|
|
74
|
+
```angular2html
|
|
75
|
+
python3 -m venv venv_name.venv
|
|
76
|
+
source venv_name.venv/bin/activate
|
|
77
|
+
```
|
|
78
|
+
or using `conda`
|
|
79
|
+
```angular2html
|
|
80
|
+
conda create -n venv_name
|
|
81
|
+
conda activate venv_name
|
|
82
|
+
conda install pip
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
To compile from the source,
|
|
86
|
+
```angular2html
|
|
87
|
+
python3 -m pip install -e .
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
REMEMBER to `make` the C code before running `Wind-AE` for the first time.
|
|
91
|
+
```angular2html
|
|
92
|
+
cd wind_ae/wind_ae/
|
|
93
|
+
make
|
|
94
|
+
```
|
|
95
|
+
You can ignore any warnings that pop up.
|
|
96
|
+
|
|
97
|
+
You can test the install by running
|
|
98
|
+
```angular2html
|
|
99
|
+
python -c "import wind_ae"
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Now you can run `Wind-AE` from anywhere! As seen in the tutorial (`Notebooks/Quickstart.ipynb`), the following imports are helpful for most purposes.
|
|
103
|
+
```angular2html
|
|
104
|
+
from wind_ae.wrapper.relax_wrapper import wind_simulation as wind_sim
|
|
105
|
+
from wind_ae.wrapper.wrapper_utils.plots import energy_plot six_panel_plot quick_plot
|
|
106
|
+
from wind_ae.wrapper.wrapper_utils import constants as const
|
|
107
|
+
from wind_ae.wrapper.wrapper_utils.system import system
|
|
108
|
+
from wind_ae.wrapper.wrapper_utils.spectrum import spectrum
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
> **Note**: If you ever need to interface directly with the `C` code, it lives in `wind_ae/src/` and can be excecuted from within the `wind_ae/` folder via `./bin/relaxed_ae`. The solution generated will be for a planet with the parameters detailed in the input files in the `Inputs/` folder. There is generally no need to interface with the `C` code and most standard tasks can be accomplished by using the Python wrapper.
|
|
112
|
+
|
|
113
|
+
Future features and known problems
|
|
114
|
+
--------
|
|
115
|
+
Check out the [open issues](https://github.com/mabroome/wind-ae/issues).
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Configuration file for the Sphinx documentation builder.
|
|
2
|
+
import os
|
|
3
|
+
import sys
|
|
4
|
+
sys.path.insert(0, os.path.abspath('../wind_ae/'))
|
|
5
|
+
sys.path.insert(0, os.path.abspath('../wind_ae/wrapper/'))
|
|
6
|
+
sys.path.insert(0, os.path.abspath('../wind_ae/wrapper/wrapper_utils/'))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# For the full list of built-in configuration values, see the documentation:
|
|
10
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
11
|
+
|
|
12
|
+
# -- Project information -----------------------------------------------------
|
|
13
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
14
|
+
|
|
15
|
+
project = 'Wind-AE'
|
|
16
|
+
copyright = '2025, Madelyn Broome, John McCann, Ruth Murray-Clay'
|
|
17
|
+
author = 'Madelyn Broome, John McCann, Ruth Murray-Clay'
|
|
18
|
+
release = '0.2.0'
|
|
19
|
+
root_doc = 'index'
|
|
20
|
+
autodoc_member_order = 'bysource'
|
|
21
|
+
|
|
22
|
+
# -- General configuration ---------------------------------------------------
|
|
23
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
24
|
+
|
|
25
|
+
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "nbsphinx"]
|
|
26
|
+
|
|
27
|
+
templates_path = ['_templates']
|
|
28
|
+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# -- Options for HTML output -------------------------------------------------
|
|
32
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
33
|
+
|
|
34
|
+
html_theme = 'sphinx_rtd_theme'
|
|
35
|
+
html_static_path = ['_static']
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools >= 61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wind_ae"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "1D relaxation Parker wind model based on Murray-Clay et al. (2009)"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "Madelyn Broome" },
|
|
11
|
+
{ name = "John McCann" },
|
|
12
|
+
{ name = "Ruth Murray-Clay" }
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.13"
|
|
15
|
+
|
|
16
|
+
dependencies = [
|
|
17
|
+
"scipy>1.6",
|
|
18
|
+
"numpy",
|
|
19
|
+
"astropy",
|
|
20
|
+
"IPython",
|
|
21
|
+
"pandas>=2.2.3",
|
|
22
|
+
"matplotlib",
|
|
23
|
+
"datetime",
|
|
24
|
+
"pyarrow",
|
|
25
|
+
"fastparquet",
|
|
26
|
+
"requests",
|
|
27
|
+
"ChiantiPy",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[tool.setuptools]
|
|
31
|
+
include-package-data = true
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.packages]
|
|
34
|
+
find = {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#! /usr/bin/env python
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
|
|
4
|
+
import os
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
try:
|
|
8
|
+
from setuptools import setup, find_packages
|
|
9
|
+
except ImportError:
|
|
10
|
+
from distutils.core import setup
|
|
11
|
+
|
|
12
|
+
setup(
|
|
13
|
+
name="wind_ae",
|
|
14
|
+
version="1.0",
|
|
15
|
+
author='Madelyn Broome, John McCann, Ruth Murray-Clay',
|
|
16
|
+
author_email='mabroome@ucsc.edu',
|
|
17
|
+
description="1D relaxation Parker wind model based on Murray-Clay et al. (2009)",
|
|
18
|
+
install_requires=[line.strip() for line in
|
|
19
|
+
open('requirements.txt', 'r').readlines()],
|
|
20
|
+
packages=find_packages(),
|
|
21
|
+
package_data={
|
|
22
|
+
'wind_ae': ['wind_ae/wrapper/wrapper_utils/*.dat',
|
|
23
|
+
'wind_ae/saves/*.csv',
|
|
24
|
+
'wind_ae/inputs/*',
|
|
25
|
+
'wind_ae/McAstro/atoms/*.csv',
|
|
26
|
+
'wind_ae/McAstro/atoms/*.txt',
|
|
27
|
+
'wind_ae/McAstro/atoms/Lodders.dat'], # include all .txt files in the data folder
|
|
28
|
+
},
|
|
29
|
+
include_package_data=True,
|
|
30
|
+
)
|
wind_ae-0.2.0/setup.cfg
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import importlib
|
|
3
|
+
|
|
4
|
+
__version__ = "0.1"
|
|
5
|
+
|
|
6
|
+
class McAstroIS:
|
|
7
|
+
"""
|
|
8
|
+
McAstro import status
|
|
9
|
+
"""
|
|
10
|
+
def __init__(self):
|
|
11
|
+
"""
|
|
12
|
+
Try to import all packages contained in self.packages and save status.
|
|
13
|
+
"""
|
|
14
|
+
self.packages = []
|
|
15
|
+
self.findpackages()
|
|
16
|
+
self.importStatus = {}
|
|
17
|
+
for m in self.packages:
|
|
18
|
+
try:
|
|
19
|
+
importlib.import_module("." + m, "McAstro")
|
|
20
|
+
self.importStatus[m] = True
|
|
21
|
+
except Exception:
|
|
22
|
+
self.importStatus[m] = False
|
|
23
|
+
|
|
24
|
+
def findpackages(self):
|
|
25
|
+
for root, dirs, fns in os.walk(__path__[0]):
|
|
26
|
+
for dir_ in dirs:
|
|
27
|
+
if os.path.isfile(os.path.join(__path__[0], dir_,
|
|
28
|
+
"__init__.py")):
|
|
29
|
+
self.packages.append(dir_)
|
|
30
|
+
break;
|
|
31
|
+
|
|
32
|
+
def showStatus(self):
|
|
33
|
+
print()
|
|
34
|
+
print(" McAstro import status")
|
|
35
|
+
print("--------------------------------------------------")
|
|
36
|
+
print("{:41s} | {:6s}".format("Package", "Loaded"))
|
|
37
|
+
print("--------------------------------------------------")
|
|
38
|
+
for m, v in sorted(self.importStatus.items()):
|
|
39
|
+
print("{:41s} | {}".format(m, v))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def importCheck():
|
|
43
|
+
m = McAstroIS()
|
|
44
|
+
m.showStatus()
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
#Lodders 2009
|
|
2
|
+
Z name source N_per_Si err A err2
|
|
3
|
+
1 H s 2.93E+10 0 12.00 0
|
|
4
|
+
2 He s 2.47E+09 0.12E+09 10.93 0.02
|
|
5
|
+
3 Li m 55.6 7.2 3.28 0.05
|
|
6
|
+
4 Be m 0.612 0.043 1.32 0.03
|
|
7
|
+
5 B m 18.8 1.9 2.81 0.04
|
|
8
|
+
6 C s 7.19E+06 0.69E+06 8.39 0.04
|
|
9
|
+
7 N s 2.12E+06 0.68E+06 7.86 0.12
|
|
10
|
+
8 O s 1.57E+07 0.28E+07 8.73 0.07
|
|
11
|
+
9 F m 804 121 4.44 0.06
|
|
12
|
+
10 Ne s 3.29E+06 0.85E+06 8.05 0.10
|
|
13
|
+
11 Na a 57700 5100 6.29 0.04
|
|
14
|
+
12 Mg a 1.03E+06 0.15E+06 7.54 0.06
|
|
15
|
+
13 Al a 84600 15300 6.46 0.07
|
|
16
|
+
14 Si m 1.00E+06 0.03E+06 7.53 0.01
|
|
17
|
+
15 P a 8300 1100 5.45 0.05
|
|
18
|
+
16 S a 4.21E+05 0.24E+05 7.16 0.02
|
|
19
|
+
17 Cl m 5170 780 5.25 0.06
|
|
20
|
+
18 Ar s 92700 24000 6.50 0.10
|
|
21
|
+
19 K a 3760 330 5.11 0.04
|
|
22
|
+
20 Ca m 60400 3000 6.31 0.02
|
|
23
|
+
21 Sc m 34.4 1.7 3.07 0.02
|
|
24
|
+
22 Ti m 2470 200 4.93 0.03
|
|
25
|
+
23 V a 286 20 3.99 0.03
|
|
26
|
+
24 Cr a 13100 500 5.65 0.02
|
|
27
|
+
25 Mn m 9220 280 5.50 0.01
|
|
28
|
+
26 Fe a 8.48E+05 1.69E+05 7.46 0.08
|
|
29
|
+
27 Co a 2350 500 4.90 0.08
|
|
30
|
+
28 Ni a 49000 5000 6.22 0.04
|
|
31
|
+
29 Cu m 541 54 4.27 0.04
|
|
32
|
+
30 Zn m 1300 130 4.65 0.04
|
|
33
|
+
31 Ga m 36.6 1.8 3.10 0.02
|
|
34
|
+
32 Ge a 115 18 3.59 0.06
|
|
35
|
+
33 As m 6.10 0.55 2.32 0.04
|
|
36
|
+
34 Se m 67.5 4.7 3.36 0.03
|
|
37
|
+
35 Br m 10.7 1.6 2.56 0.06
|
|
38
|
+
36 Kr t 55.8 11.3 3.28 0.08
|
|
39
|
+
37 Rb m 7.10 0.50 2.38 0.03
|
|
40
|
+
38 Sr m 23.4 1.6 2.90 0.03
|
|
41
|
+
39 Y a 4.63 0.50 2.20 0.04
|
|
42
|
+
40 Zr a 10.8 1.2 2.57 0.04
|
|
43
|
+
41 Nb a 0.780 0.139 1.42 0.07
|
|
44
|
+
42 Mo a 2.55 0.40 1.94 0.06
|
|
45
|
+
44 Ru m 1.78 0.11 1.78 0.03
|
|
46
|
+
45 Rh a 0.370 0.128 1.10 0.13
|
|
47
|
+
46 Pd a 1.36 0.15 1.67 0.04
|
|
48
|
+
47 Ag m 0.489 0.024 1.22 0.02
|
|
49
|
+
48 Cd m 1.57 0.11 1.73 0.03
|
|
50
|
+
49 In m 0.178 0.012 0.78 0.03
|
|
51
|
+
50 Sn m 3.60 0.54 2.09 0.06
|
|
52
|
+
51 Sb m 0.313 0.047 1.03 0.06
|
|
53
|
+
52 Te m 4.69 0.33 2.20 0.03
|
|
54
|
+
53 I m 1.10 0.22 1.57 0.08
|
|
55
|
+
54 Xe t 5.46 1.10 2.27 0.08
|
|
56
|
+
55 Cs m 0.371 0.019 1.10 0.02
|
|
57
|
+
56 Ba a 4.47 0.81 2.18 0.07
|
|
58
|
+
57 La m 0.457 0.023 1.19 0.02
|
|
59
|
+
58 Ce a 1.18 0.19 1.60 0.06
|
|
60
|
+
59 Pr a 0.172 0.020 0.77 0.05
|
|
61
|
+
60 Nd m 0.857 0.043 1.47 0.02
|
|
62
|
+
62 Sm m 0.265 0.013 0.96 0.02
|
|
63
|
+
63 Eu a 0.0984 0.0106 0.53 0.04
|
|
64
|
+
64 Gd a 0.360 0.049 1.09 0.06
|
|
65
|
+
65 Tb m 0.0634 0.0044 0.34 0.03
|
|
66
|
+
66 Dy a 0.404 0.062 1.14 0.06
|
|
67
|
+
67 Ho m 0.0910 0.0064 0.49 0.03
|
|
68
|
+
68 Er a 0.262 0.042 0.95 0.06
|
|
69
|
+
69 Tm m 0.0406 0.0028 0.14 0.03
|
|
70
|
+
70 Yb m 0.256 0.013 0.94 0.02
|
|
71
|
+
71 Lu m 0.0380 0.0019 0.11 0.02
|
|
72
|
+
72 Hf m 0.156 0.008 0.73 0.02
|
|
73
|
+
73 Ta m 0.0210 0.0021 -0.14 0.04
|
|
74
|
+
74 W m 0.137 0.014 0.67 0.04
|
|
75
|
+
75 Re m 0.0554 0.0055 0.28 0.04
|
|
76
|
+
76 Os m 0.680 0.054 1.37 0.03
|
|
77
|
+
77 Ir a 0.672 0.092 1.36 0.06
|
|
78
|
+
78 Pt m 1.27 0.10 1.64 0.03
|
|
79
|
+
79 Au m 0.195 0.019 0.82 0.04
|
|
80
|
+
80 Hg m 0.458 0.092 1.19 0.08
|
|
81
|
+
81 Tl m 0.182 0.015 0.79 0.03
|
|
82
|
+
82 Pb m 3.33 0.23 2.06 0.03
|
|
83
|
+
83 Bi m 0.138 0.012 0.67 0.04
|
|
84
|
+
90 Th m 0.0351 0.0028 0.08 0.03
|
|
85
|
+
92 U m 0.00893 0.00071 -0.52 0.03
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# Z: number of protons
|
|
2
|
+
# Ne: number of electrons
|
|
3
|
+
# E_th: Ionization potential (in eV)
|
|
4
|
+
# E_max: Value which cross-section should not be extrapolated past
|
|
5
|
+
# sigma_0 (in MB), E_0 (in eV), y_a, P, y_w, y_0, y_1: fitted parameters
|
|
6
|
+
Z,Ne,E_th,E_max,E_0,sigma_0,y_a,P,y_w,y_0,y_1
|
|
7
|
+
1,1,1.360E+01,5.000E+04,4.298E-01,5.475E+04,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
8
|
+
2,2,2.459E+01,5.000E+04,1.361E+01,9.492E+02,1.469E+00,3.188E+00,2.039E+00,4.434E-01,2.136E+00
|
|
9
|
+
2,1,5.442E+01,5.000E+04,1.720E+00,1.369E+04,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
10
|
+
3,3,5.392E+00,6.439E+01,3.107E+00,6.245E+01,1.501E+01,4.895E+00,0.000E+00,0.000E+00,0.000E+00
|
|
11
|
+
3,2,7.564E+01,5.000E+04,2.006E+01,3.201E+02,7.391E+00,2.916E+00,0.000E+00,0.000E+00,0.000E+00
|
|
12
|
+
3,1,1.225E+02,5.000E+04,3.871E+00,6.083E+03,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
13
|
+
4,4,9.323E+00,1.193E+02,9.539E+00,2.932E+05,4.301E-01,1.052E+01,3.655E-01,8.278E-04,1.269E-02
|
|
14
|
+
4,3,1.821E+01,1.299E+02,1.181E+00,2.678E+02,5.645E+00,1.170E+01,0.000E+00,0.000E+00,0.000E+00
|
|
15
|
+
4,2,1.539E+02,5.000E+04,1.760E+01,5.458E+02,1.719E+01,3.157E+00,0.000E+00,0.000E+00,0.000E+00
|
|
16
|
+
4,1,2.177E+02,5.000E+04,6.879E+00,3.422E+03,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
17
|
+
5,5,8.298E+00,1.940E+02,5.213E-01,5.466E+00,8.618E+00,1.728E+01,1.887E+01,1.319E+01,4.556E+00
|
|
18
|
+
5,4,2.516E+01,2.098E+02,2.869E+00,1.859E+04,1.783E+00,1.618E+01,3.503E+00,4.960E-03,3.400E-02
|
|
19
|
+
5,3,3.793E+01,2.274E+02,1.041E+00,5.393E+01,1.767E+01,9.540E+00,0.000E+00,0.000E+00,0.000E+00
|
|
20
|
+
5,2,2.594E+02,5.000E+04,3.336E+01,2.846E+02,2.163E+01,2.624E+00,0.000E+00,0.000E+00,0.000E+00
|
|
21
|
+
5,1,3.402E+02,5.000E+04,1.075E+01,2.190E+03,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
22
|
+
6,6,1.126E+01,2.910E+02,2.144E+00,5.027E+02,6.216E+01,5.101E+00,9.157E-02,1.133E+00,1.607E+00
|
|
23
|
+
6,5,2.438E+01,3.076E+02,4.058E-01,8.709E+00,1.261E+02,8.578E+00,2.093E+00,4.929E+01,3.234E+00
|
|
24
|
+
6,4,4.789E+01,3.289E+02,4.614E+00,1.539E+04,1.737E+00,1.593E+01,5.922E+00,4.378E-03,2.528E-02
|
|
25
|
+
6,3,6.449E+01,3.522E+02,3.506E+00,1.068E+02,1.436E+01,7.457E+00,0.000E+00,0.000E+00,0.000E+00
|
|
26
|
+
6,2,3.921E+02,5.000E+04,4.624E+01,2.344E+02,2.183E+01,2.581E+00,0.000E+00,0.000E+00,0.000E+00
|
|
27
|
+
6,1,4.900E+02,5.000E+04,1.548E+01,1.521E+03,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
28
|
+
7,7,1.453E+01,4.048E+02,4.034E+00,8.235E+02,8.033E+01,3.928E+00,9.097E-02,8.598E-01,2.325E+00
|
|
29
|
+
7,6,2.960E+01,4.236E+02,6.128E-02,1.944E+00,8.163E+02,8.773E+00,1.043E+01,4.280E+02,2.030E+01
|
|
30
|
+
7,5,4.745E+01,4.473E+02,2.420E-01,9.375E-01,2.788E+02,9.156E+00,1.850E+00,1.877E+02,3.999E+00
|
|
31
|
+
7,4,7.747E+01,4.753E+02,5.494E+00,1.690E+04,1.714E+00,1.706E+01,7.904E+00,6.415E-03,1.937E-02
|
|
32
|
+
7,3,9.789E+01,5.043E+02,4.471E+00,8.376E+01,3.297E+01,6.003E+00,0.000E+00,0.000E+00,0.000E+00
|
|
33
|
+
7,2,5.521E+02,5.000E+04,6.943E+01,1.519E+02,2.627E+01,2.315E+00,0.000E+00,0.000E+00,0.000E+00
|
|
34
|
+
7,1,6.671E+02,5.000E+04,2.108E+01,1.117E+03,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
35
|
+
8,8,1.362E+01,5.380E+02,1.240E+00,1.745E+03,3.784E+00,1.764E+01,7.589E-02,8.698E+00,1.271E-01
|
|
36
|
+
8,7,3.512E+01,5.581E+02,1.386E+00,5.967E+01,3.175E+01,8.943E+00,1.934E-02,2.131E+01,1.503E-02
|
|
37
|
+
8,6,5.494E+01,5.840E+02,1.723E-01,6.753E+02,3.852E+02,6.822E+00,1.191E-01,3.839E-03,4.569E-01
|
|
38
|
+
8,5,7.741E+01,6.144E+02,2.044E-01,8.659E-01,4.931E+02,8.785E+00,3.143E+00,3.328E+02,4.285E+01
|
|
39
|
+
8,4,1.139E+02,6.491E+02,2.854E+00,1.642E+04,1.792E+00,2.647E+01,2.836E+01,3.036E-02,5.554E-02
|
|
40
|
+
8,3,1.381E+02,6.837E+02,7.824E+00,6.864E+01,3.210E+01,5.495E+00,0.000E+00,0.000E+00,0.000E+00
|
|
41
|
+
8,2,7.393E+02,5.000E+04,8.709E+01,1.329E+02,2.535E+01,2.336E+00,0.000E+00,0.000E+00,0.000E+00
|
|
42
|
+
8,1,8.714E+02,5.000E+04,2.754E+01,8.554E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
43
|
+
9,9,1.742E+01,6.940E+02,1.297E+01,3.803E+03,2.587E+00,7.275E+00,2.170E-03,1.701E-04,1.345E-02
|
|
44
|
+
9,8,3.497E+01,7.122E+02,1.763E+00,8.013E+01,1.667E+01,1.050E+01,5.103E-01,1.715E+01,7.724E-01
|
|
45
|
+
9,7,6.271E+01,7.392E+02,2.542E+00,1.541E+02,5.742E+01,6.614E+00,1.115E+00,1.641E+01,5.124E+00
|
|
46
|
+
9,6,8.714E+01,7.709E+02,7.744E-01,3.165E+00,1.099E+02,9.203E+00,6.812E+00,9.531E+01,9.781E+00
|
|
47
|
+
9,5,1.142E+02,8.091E+02,7.286E-01,4.690E-01,1.400E+02,9.718E+00,2.570E-01,1.506E+02,2.574E-01
|
|
48
|
+
9,4,1.572E+02,8.502E+02,4.008E+00,1.157E+04,1.848E+00,2.446E+01,2.411E+01,2.071E-02,3.998E-02
|
|
49
|
+
9,3,1.852E+02,8.905E+02,2.563E+00,6.930E+01,7.547E+01,6.448E+00,0.000E+00,0.000E+00,0.000E+00
|
|
50
|
+
9,2,9.539E+02,5.000E+04,1.131E+02,1.039E+02,2.657E+01,2.255E+00,0.000E+00,0.000E+00,0.000E+00
|
|
51
|
+
9,1,1.103E+03,5.000E+04,3.485E+01,6.759E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
52
|
+
10,10,2.156E+01,8.701E+02,4.870E+00,4.287E+03,5.798E+00,8.355E+00,2.434E-01,4.236E-02,5.873E+00
|
|
53
|
+
10,9,4.096E+01,8.831E+02,1.247E+01,1.583E+03,3.935E+00,7.810E+00,6.558E-02,1.520E+00,1.084E-01
|
|
54
|
+
10,8,6.346E+01,9.131E+02,7.753E-01,5.708E+00,6.725E+01,1.005E+01,4.633E-01,7.654E+01,2.023E+00
|
|
55
|
+
10,7,9.712E+01,9.480E+02,5.566E+00,1.685E+03,6.409E+02,3.056E+00,8.290E-03,5.149E+00,6.687E+00
|
|
56
|
+
10,6,1.262E+02,9.873E+02,1.248E+00,2.430E+00,1.066E+02,8.999E+00,6.855E-01,9.169E+01,3.702E-01
|
|
57
|
+
10,5,1.579E+02,1.031E+03,1.499E+00,9.854E-01,1.350E+02,8.836E+00,1.656E+00,1.042E+02,1.435E+00
|
|
58
|
+
10,4,2.073E+02,1.078E+03,4.888E+00,1.198E+04,1.788E+00,2.550E+01,2.811E+01,2.536E-02,4.417E-02
|
|
59
|
+
10,3,2.391E+02,1.125E+03,1.003E+01,5.631E+01,3.628E+01,5.585E+00,0.000E+00,0.000E+00,0.000E+00
|
|
60
|
+
10,2,1.196E+03,5.000E+04,1.586E+02,6.695E+01,3.352E+01,2.002E+00,0.000E+00,0.000E+00,0.000E+00
|
|
61
|
+
10,1,1.362E+03,5.000E+04,4.304E+01,5.475E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
62
|
+
11,11,5.139E+00,3.814E+01,6.139E+00,1.601E+00,6.148E+03,3.839E+00,0.000E+00,0.000E+00,0.000E+00
|
|
63
|
+
11,10,4.729E+01,1.074E+03,8.203E+00,1.040E+03,8.259E+00,7.362E+00,2.328E+00,3.375E+00,4.010E+00
|
|
64
|
+
11,9,7.162E+01,1.110E+03,1.069E+01,1.885E+03,3.613E+00,9.803E+00,8.579E-02,3.725E+00,2.279E-01
|
|
65
|
+
11,8,9.892E+01,1.143E+03,6.690E-01,2.330E+00,1.205E+02,9.714E+00,7.365E-01,1.383E+02,4.260E+00
|
|
66
|
+
11,7,1.384E+02,1.185E+03,5.408E+00,2.346E+01,2.913E+01,8.260E+00,9.275E-01,2.204E+01,7.577E-01
|
|
67
|
+
11,6,1.722E+02,1.230E+03,4.846E+01,7.101E+01,3.945E+01,2.832E+00,1.285E-02,9.603E-04,6.378E-03
|
|
68
|
+
11,5,2.085E+02,1.281E+03,2.096E+00,1.609E+00,2.473E+02,7.681E+00,1.895E+00,9.940E+01,3.278E+00
|
|
69
|
+
11,4,2.642E+02,1.335E+03,1.535E+02,7.215E+03,3.886E-01,8.476E+00,9.121E-01,1.667E-01,1.766E-02
|
|
70
|
+
11,3,2.999E+02,1.386E+03,1.391E+01,4.729E+01,3.889E+01,5.265E+00,0.000E+00,0.000E+00,0.000E+00
|
|
71
|
+
11,2,1.465E+03,5.000E+04,2.268E+02,3.995E+01,5.315E+01,1.678E+00,0.000E+00,0.000E+00,0.000E+00
|
|
72
|
+
11,1,1.649E+03,5.000E+04,5.211E+01,4.525E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
73
|
+
12,12,7.646E+00,5.490E+01,1.197E+01,1.372E+08,2.228E-01,1.574E+01,2.805E-01,0.000E+00,0.000E+00
|
|
74
|
+
12,11,1.504E+01,6.569E+01,8.139E+00,3.278E+00,4.341E+07,3.610E+00,0.000E+00,0.000E+00,0.000E+00
|
|
75
|
+
12,10,8.014E+01,1.317E+03,1.086E+01,5.377E+02,9.779E+00,7.117E+00,2.604E+00,4.860E+00,3.722E+00
|
|
76
|
+
12,9,1.093E+02,1.356E+03,2.912E+01,1.394E+03,2.895E+00,6.487E+00,4.326E-02,9.402E-01,1.135E-01
|
|
77
|
+
12,8,1.413E+02,1.400E+03,9.762E-01,1.728E+00,9.184E+01,1.006E+01,8.090E-01,1.276E+02,3.979E+00
|
|
78
|
+
12,7,1.865E+02,1.449E+03,1.711E+00,2.185E+00,9.350E+01,9.202E+00,6.325E-01,1.007E+02,1.729E+00
|
|
79
|
+
12,6,2.249E+02,1.501E+03,3.570E+00,3.104E+00,6.060E+01,8.857E+00,1.422E+00,5.452E+01,2.078E+00
|
|
80
|
+
12,5,2.660E+02,1.558E+03,4.884E-01,6.344E-02,5.085E+02,9.385E+00,6.666E-01,5.348E+02,3.997E-03
|
|
81
|
+
12,4,3.282E+02,1.618E+03,3.482E+01,9.008E+02,1.823E+00,1.444E+01,2.751E+00,5.444E+00,7.918E-02
|
|
82
|
+
12,3,3.675E+02,1.675E+03,1.452E+01,4.427E+01,3.826E+01,5.460E+00,0.000E+00,0.000E+00,0.000E+00
|
|
83
|
+
12,2,1.762E+03,5.000E+04,2.042E+02,6.140E+01,2.778E+01,2.161E+00,0.000E+00,0.000E+00,0.000E+00
|
|
84
|
+
12,1,1.963E+03,5.000E+04,6.203E+01,3.802E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
85
|
+
13,13,5.986E+00,8.040E+01,1.381E+01,7.195E+00,1.621E+03,3.642E+00,3.166E-01,2.041E-01,4.753E-01
|
|
86
|
+
13,12,1.883E+01,8.997E+01,2.048E-01,6.948E-02,5.675E+02,9.049E+00,4.615E-01,9.149E+01,6.565E-01
|
|
87
|
+
13,11,2.845E+01,1.026E+02,1.027E+01,4.915E+00,1.990E+06,3.477E+00,0.000E+00,0.000E+00,0.000E+00
|
|
88
|
+
13,10,1.200E+02,1.588E+03,3.130E+00,1.513E+01,1.674E+01,1.180E+01,5.342E+00,3.994E+01,4.803E+00
|
|
89
|
+
13,9,1.538E+02,1.634E+03,2.414E+01,2.925E+02,6.973E+00,6.724E+00,1.000E-01,3.495E+00,2.701E-01
|
|
90
|
+
13,8,1.905E+02,1.688E+03,3.483E-01,1.962E-02,1.856E+01,2.084E+01,8.839E+00,5.675E-02,2.768E-01
|
|
91
|
+
13,7,2.414E+02,1.739E+03,2.636E+00,1.889E+02,1.338E+02,6.204E+00,1.836E+00,3.552E+01,8.223E-03
|
|
92
|
+
13,6,2.846E+02,1.799E+03,4.866E-01,2.350E-01,7.216E+02,8.659E+00,2.773E-01,5.704E+02,1.580E-01
|
|
93
|
+
13,5,3.301E+02,1.862E+03,1.842E+00,4.982E-01,2.568E+02,8.406E+00,6.945E-01,1.719E+02,6.595E+00
|
|
94
|
+
13,4,3.994E+02,1.929E+03,8.044E+00,1.774E+04,1.653E+00,2.655E+01,2.953E+01,2.538E-02,1.203E-02
|
|
95
|
+
13,3,4.421E+02,1.992E+03,2.355E+01,3.388E+01,3.432E+01,5.085E+00,0.000E+00,0.000E+00,0.000E+00
|
|
96
|
+
13,2,2.086E+03,5.000E+04,2.738E+02,4.036E+01,3.567E+01,1.915E+00,0.000E+00,0.000E+00,0.000E+00
|
|
97
|
+
13,1,2.304E+03,5.000E+04,7.281E+01,3.239E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
98
|
+
14,14,8.152E+00,1.060E+02,2.317E+01,2.506E+01,2.057E+01,3.546E+00,2.837E-01,1.672E-05,4.207E-01
|
|
99
|
+
14,13,1.635E+01,1.186E+02,2.556E+00,4.140E+00,1.337E+01,1.191E+01,1.570E+00,6.634E+00,1.272E-01
|
|
100
|
+
14,12,3.349E+01,1.311E+02,1.659E-01,5.790E-04,1.474E+02,1.336E+01,8.626E-01,9.613E+01,6.442E-01
|
|
101
|
+
14,11,4.514E+01,1.466E+02,1.288E+01,6.083E+00,1.356E+06,3.353E+00,0.000E+00,0.000E+00,0.000E+00
|
|
102
|
+
14,10,1.668E+02,1.887E+03,7.761E-01,8.863E-01,1.541E+02,9.980E+00,1.303E+00,2.009E+02,4.537E+00
|
|
103
|
+
14,9,2.051E+02,1.946E+03,6.305E+01,7.293E+01,1.558E+02,2.400E+00,2.989E-03,1.115E+00,8.051E-02
|
|
104
|
+
14,8,2.465E+02,2.001E+03,3.277E-01,6.680E-02,4.132E+01,1.606E+01,3.280E+00,1.149E-02,6.396E-01
|
|
105
|
+
14,7,3.032E+02,2.058E+03,7.655E-01,3.477E-01,3.733E+02,8.986E+00,1.476E-03,3.850E+02,8.999E-02
|
|
106
|
+
14,6,3.511E+02,2.125E+03,3.343E-01,1.465E-01,1.404E+03,8.503E+00,1.646E+00,1.036E+03,2.936E-01
|
|
107
|
+
14,5,4.014E+02,2.194E+03,8.787E-01,1.950E-01,7.461E+02,8.302E+00,4.489E-01,4.528E+02,1.015E+00
|
|
108
|
+
14,4,4.761E+02,2.268E+03,1.205E+01,1.992E+04,1.582E+00,2.425E+01,2.392E+01,1.990E-02,1.007E-02
|
|
109
|
+
14,3,5.235E+02,2.336E+03,3.560E+01,2.539E+01,3.307E+01,4.728E+00,0.000E+00,0.000E+00,0.000E+00
|
|
110
|
+
14,2,2.438E+03,5.000E+04,2.752E+02,4.754E+01,2.848E+01,2.135E+00,0.000E+00,0.000E+00,0.000E+00
|
|
111
|
+
14,1,2.673E+03,5.000E+04,8.447E+01,2.793E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
112
|
+
16,16,1.036E+01,1.700E+02,1.808E+01,4.564E+04,1.000E+00,1.361E+01,6.385E-01,9.935E-01,2.486E-01
|
|
113
|
+
16,15,2.333E+01,1.846E+02,8.787E+00,3.136E+02,3.442E+00,1.281E+01,7.354E-01,2.782E+00,1.788E-01
|
|
114
|
+
16,14,3.483E+01,1.995E+02,2.027E+00,6.666E+00,5.454E+01,8.611E+00,4.109E+00,1.568E+01,9.421E+00
|
|
115
|
+
16,13,4.731E+01,2.164E+02,2.173E+00,2.606E+00,6.641E+01,8.655E+00,1.863E+00,1.975E+01,3.361E+00
|
|
116
|
+
16,12,7.268E+01,2.350E+02,1.713E-01,5.072E-04,1.986E+02,1.307E+01,7.880E-01,9.424E+01,6.265E-01
|
|
117
|
+
16,11,8.805E+01,2.557E+02,1.413E+01,9.139E+00,1.656E+03,3.626E+00,0.000E+00,0.000E+00,0.000E+00
|
|
118
|
+
16,10,2.809E+02,2.569E+03,3.757E-01,5.703E-01,1.460E+02,1.135E+01,1.503E+00,2.222E+02,4.606E+00
|
|
119
|
+
16,9,3.282E+02,2.641E+03,1.462E+01,3.161E+01,1.611E+01,8.642E+00,1.153E-03,1.869E+01,3.037E-01
|
|
120
|
+
16,8,3.791E+02,2.705E+03,1.526E-01,9.646E+03,1.438E+03,5.977E+00,1.492E+00,1.615E-03,4.049E-01
|
|
121
|
+
16,7,4.471E+02,2.782E+03,1.040E+01,5.364E+01,3.641E+01,7.090E+00,2.310E+00,1.775E+01,1.663E+00
|
|
122
|
+
16,6,5.048E+02,2.859E+03,6.485E+00,1.275E+01,6.583E+01,7.692E+00,1.678E+00,3.426E+01,1.370E-01
|
|
123
|
+
16,5,5.647E+02,2.941E+03,2.443E+00,3.490E-01,5.411E+02,7.769E+00,7.033E-01,2.279E+02,1.172E+00
|
|
124
|
+
16,4,6.517E+02,3.029E+03,1.474E+01,2.294E+04,1.529E+00,2.568E+01,2.738E+01,2.203E-02,1.073E-02
|
|
125
|
+
16,3,7.072E+02,3.107E+03,3.310E+01,2.555E+01,3.821E+01,5.037E+00,0.000E+00,0.000E+00,0.000E+00
|
|
126
|
+
16,2,3.224E+03,5.000E+04,4.390E+02,2.453E+01,4.405E+01,1.765E+00,0.000E+00,0.000E+00,0.000E+00
|
|
127
|
+
16,1,3.494E+03,5.000E+04,1.104E+02,2.139E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
128
|
+
18,18,1.576E+01,2.492E+02,1.709E+01,2.106E+01,2.645E+02,4.796E+00,4.185E-01,1.688E+00,8.943E-01
|
|
129
|
+
18,17,2.763E+01,2.662E+02,2.494E+01,2.503E+01,1.272E+02,4.288E+00,5.108E-01,9.299E-01,7.195E-01
|
|
130
|
+
18,16,4.074E+01,2.801E+02,1.417E+01,3.580E+01,3.776E+01,5.742E+00,6.316E-01,2.384E+00,1.794E+00
|
|
131
|
+
18,15,5.981E+01,2.987E+02,6.953E+00,2.035E+01,1.400E+01,9.595E+00,8.842E-01,7.501E+00,1.806E-01
|
|
132
|
+
18,14,7.502E+01,3.200E+02,1.031E+01,9.946E+00,7.444E+01,6.261E+00,4.885E-01,6.406E+00,3.659E-03
|
|
133
|
+
18,13,9.101E+01,3.426E+02,5.440E-01,1.080E+00,9.419E+02,7.582E+00,1.107E+01,1.700E+02,1.587E+01
|
|
134
|
+
18,12,1.243E+02,3.667E+02,2.966E-02,3.693E+00,9.951E+03,7.313E+00,1.363E-02,4.383E-04,2.513E+00
|
|
135
|
+
18,11,1.435E+02,3.925E+02,3.884E+00,3.295E+01,7.082E+02,4.645E+00,0.000E+00,0.000E+00,0.000E+00
|
|
136
|
+
18,10,4.225E+02,3.361E+03,1.926E-01,8.279E-01,2.392E+02,1.121E+01,1.434E+00,3.814E+01,4.649E+00
|
|
137
|
+
18,9,4.787E+02,3.446E+03,1.040E+01,8.204E+00,1.495E+01,1.115E+01,9.203E-04,3.804E+01,6.390E-01
|
|
138
|
+
18,8,5.390E+02,3.523E+03,1.257E-01,1.760E+03,1.579E+03,6.714E+00,1.975E+00,3.286E-03,3.226E-01
|
|
139
|
+
18,7,6.183E+02,3.613E+03,5.310E+00,7.018E-01,1.001E+02,8.939E+00,4.987E-01,1.099E+02,2.202E-01
|
|
140
|
+
18,6,6.861E+02,3.702E+03,3.209E-01,2.459E-02,2.285E+03,8.810E+00,6.692E-01,2.068E+03,2.113E+01
|
|
141
|
+
18,5,7.558E+02,3.798E+03,1.557E+00,4.997E-02,5.031E+02,8.966E+00,2.938E-01,4.552E+02,6.459E+00
|
|
142
|
+
18,4,8.548E+02,3.898E+03,1.888E+01,2.571E+04,1.475E+00,2.634E+01,2.909E+01,2.445E-02,1.054E-02
|
|
143
|
+
18,3,9.180E+02,3.988E+03,4.154E+01,2.135E+01,4.118E+01,4.945E+00,0.000E+00,0.000E+00,0.000E+00
|
|
144
|
+
18,2,4.121E+03,5.000E+04,4.468E+02,3.108E+01,3.039E+01,2.092E+00,0.000E+00,0.000E+00,0.000E+00
|
|
145
|
+
18,1,4.426E+03,5.000E+04,1.399E+02,1.690E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
146
|
+
20,20,6.113E+00,3.443E+01,1.278E+01,5.370E+05,3.162E-01,1.242E+01,4.477E-01,1.012E-03,1.851E-02
|
|
147
|
+
20,19,1.187E+01,4.090E+01,1.553E+01,1.064E+07,7.790E-01,2.130E+01,6.453E-01,2.161E-03,6.706E-02
|
|
148
|
+
20,18,5.091E+01,3.731E+02,2.436E+01,3.815E+01,2.931E+02,3.944E+00,3.126E-01,1.802E+00,1.233E+00
|
|
149
|
+
20,17,6.727E+01,3.944E+02,4.255E+00,7.736E+00,1.355E+01,1.236E+01,1.369E+00,1.467E+01,3.298E-02
|
|
150
|
+
20,16,8.451E+01,4.175E+02,6.882E-01,1.523E-01,1.502E+02,1.061E+01,8.227E+00,1.210E+02,3.876E+00
|
|
151
|
+
20,15,1.088E+02,4.423E+02,9.515E+00,7.642E+01,8.973E+01,5.141E+00,2.471E+00,4.829E+00,5.824E+00
|
|
152
|
+
20,14,1.272E+02,4.687E+02,8.080E-01,4.760E-01,3.682E+02,8.634E+00,5.720E-01,1.487E+02,1.283E+00
|
|
153
|
+
20,13,1.472E+02,4.967E+02,1.366E+00,6.641E-01,3.188E+02,8.138E+00,2.806E-01,1.039E+02,3.329E+00
|
|
154
|
+
20,12,1.883E+02,5.270E+02,5.520E-02,2.076E+02,1.790E+04,5.893E+00,1.843E-03,2.826E-04,1.657E+00
|
|
155
|
+
20,11,2.113E+02,5.569E+02,1.605E+01,1.437E+01,6.989E+02,3.857E+00,0.000E+00,0.000E+00,0.000E+00
|
|
156
|
+
20,10,5.919E+02,4.265E+03,2.288E-01,9.384E-01,2.549E+02,1.103E+01,1.390E+00,2.478E+01,3.100E+00
|
|
157
|
+
20,9,6.572E+02,4.362E+03,2.345E+01,1.227E+01,1.312E+01,9.771E+00,6.842E-04,2.417E+01,5.469E-01
|
|
158
|
+
20,8,7.267E+02,4.453E+03,1.008E+01,1.849E+03,1.792E+04,2.868E+00,2.410E+02,6.138E-03,6.931E+01
|
|
159
|
+
20,7,8.177E+02,4.555E+03,9.980E+00,1.116E+00,5.918E+01,9.005E+00,3.879E+00,7.104E+01,5.311E+00
|
|
160
|
+
20,6,8.946E+02,4.659E+03,1.309E+02,5.513E+01,3.828E+02,2.023E+00,9.084E-02,1.833E-02,9.359E-01
|
|
161
|
+
20,5,9.745E+02,4.767E+03,4.293E+00,1.293E+00,1.691E+01,1.438E+01,3.461E-05,9.363E-01,4.589E-02
|
|
162
|
+
20,4,1.087E+03,4.880E+03,2.618E+01,2.028E+04,1.456E+00,2.560E+01,2.803E+01,2.402E-02,9.323E-03
|
|
163
|
+
20,3,1.157E+03,4.982E+03,9.472E+01,1.105E+01,3.818E+01,4.192E+00,0.000E+00,0.000E+00,0.000E+00
|
|
164
|
+
20,2,5.129E+03,5.000E+04,6.297E+02,1.936E+01,3.921E+01,1.862E+00,0.000E+00,0.000E+00,0.000E+00
|
|
165
|
+
20,1,5.470E+03,5.000E+04,1.729E+02,1.369E+02,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
166
|
+
26,26,7.902E+00,6.600E+01,5.461E-02,3.062E-01,2.671E+07,7.923E+00,2.069E+01,1.382E+02,2.481E-01
|
|
167
|
+
26,25,1.619E+01,7.617E+01,1.761E-01,4.365E+03,6.298E+03,5.204E+00,1.141E+01,9.272E+01,1.075E+02
|
|
168
|
+
26,24,3.065E+01,8.705E+01,1.698E-01,6.107E+00,1.555E+03,8.055E+00,8.698E+00,1.760E+02,1.847E+01
|
|
169
|
+
26,23,5.480E+01,1.067E+02,2.544E+01,3.653E+02,8.913E+00,6.538E+00,5.602E-01,0.000E+00,0.000E+00
|
|
170
|
+
26,22,7.501E+01,1.288E+02,7.256E-01,1.523E-03,3.736E+01,1.767E+01,5.064E+01,8.871E+01,5.280E-02
|
|
171
|
+
26,21,9.906E+01,1.527E+02,2.656E+00,5.259E-01,1.450E+01,1.632E+01,1.558E+01,3.361E+01,3.743E-03
|
|
172
|
+
26,20,1.250E+02,1.783E+02,5.059E+00,2.420E+04,4.850E+04,2.374E+00,2.516E-03,4.546E-01,2.683E+01
|
|
173
|
+
26,19,1.511E+02,2.055E+02,7.098E-02,1.979E+01,1.745E+04,6.750E+00,2.158E+02,2.542E+03,4.672E+02
|
|
174
|
+
26,18,2.336E+02,9.211E+02,6.741E+00,2.687E+01,1.807E+02,6.290E+00,2.387E-04,2.494E+01,8.251E+00
|
|
175
|
+
26,17,2.621E+02,9.590E+02,6.886E+01,6.470E+01,2.062E+01,4.111E+00,2.778E-04,1.190E-05,6.570E-03
|
|
176
|
+
26,16,2.902E+02,9.983E+02,8.284E+00,3.281E+00,5.360E+01,8.571E+00,3.279E-01,2.971E+01,5.220E-01
|
|
177
|
+
26,15,3.308E+02,1.039E+03,6.295E+00,1.738E+00,1.130E+02,8.037E+00,3.096E-01,4.671E+01,1.425E-01
|
|
178
|
+
26,14,3.610E+02,1.081E+03,1.317E-01,2.791E-03,2.487E+03,9.791E+00,6.938E-01,2.170E+03,6.852E-03
|
|
179
|
+
26,13,3.922E+02,1.125E+03,8.509E-01,1.454E-01,1.239E+03,8.066E+00,4.937E-01,4.505E+02,2.504E+00
|
|
180
|
+
26,12,4.570E+02,1.181E+03,5.555E-02,2.108E+02,2.045E+04,6.033E+00,1.885E-03,2.706E-04,1.628E+00
|
|
181
|
+
26,11,4.893E+02,1.216E+03,2.873E+01,1.207E+01,5.150E+02,3.846E+00,0.000E+00,0.000E+00,0.000E+00
|
|
182
|
+
26,10,1.262E+03,7.651E+03,3.444E-01,1.452E+00,3.960E+02,1.013E+01,1.264E+00,2.891E+01,3.404E+00
|
|
183
|
+
26,9,1.358E+03,7.769E+03,3.190E+01,2.388E+00,2.186E+01,9.589E+00,2.902E-02,3.805E+01,4.805E-01
|
|
184
|
+
26,8,1.456E+03,7.918E+03,7.519E-04,6.066E-05,1.606E+06,8.813E+00,4.398E+00,1.915E+06,3.140E+01
|
|
185
|
+
26,7,1.582E+03,8.041E+03,2.011E+01,4.455E-01,4.236E+01,9.724E+00,2.757E+00,6.847E+01,3.989E+00
|
|
186
|
+
26,6,1.689E+03,8.184E+03,9.243E+00,1.098E+01,7.637E+01,7.962E+00,1.748E+00,4.446E+01,3.512E+00
|
|
187
|
+
26,5,1.799E+03,8.350E+03,9.713E+00,7.204E-02,1.853E+02,8.843E+00,9.551E-03,1.702E+02,4.263E+00
|
|
188
|
+
26,4,1.950E+03,8.484E+03,4.575E+01,2.580E+04,1.358E+00,2.604E+01,2.723E+01,3.582E-02,8.712E-03
|
|
189
|
+
26,3,2.046E+03,8.638E+03,7.326E+01,1.276E+01,4.914E+01,4.941E+00,0.000E+00,0.000E+00,0.000E+00
|
|
190
|
+
26,2,8.829E+03,5.000E+04,1.057E+03,1.195E+01,5.769E+01,1.718E+00,0.000E+00,0.000E+00,0.000E+00
|
|
191
|
+
26,1,9.278E+03,5.000E+04,2.932E+02,8.099E+01,3.288E+01,2.963E+00,0.000E+00,0.000E+00,0.000E+00
|
|
File without changes
|