lightweaver 0.14.1__cp311-cp311-macosx_10_9_x86_64.whl → 0.14.2rc1__cp311-cp311-macosx_10_9_x86_64.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.

Potentially problematic release.


This version of lightweaver might be problematic. Click here for more details.

lightweaver/atmosphere.py CHANGED
@@ -130,8 +130,8 @@ def get_top_pressure(eos: Wittmann, temp, ne=None, rho=None):
130
130
  For internal use.
131
131
 
132
132
  In order this is deduced from:
133
- - the electron density `ne`, if provided
134
- - the mass density `rho`, if provided
133
+ - the electron density `ne` [m-3], if provided
134
+ - the mass density `rho` [kg m-3], if provided
135
135
  - the electron pressure present in FALC
136
136
 
137
137
  Returns
@@ -141,10 +141,10 @@ def get_top_pressure(eos: Wittmann, temp, ne=None, rho=None):
141
141
 
142
142
  '''
143
143
  if ne is not None:
144
- pe = ne * Const.CM_TO_M**3 * cgs.BK * temp
144
+ pe = (ne << u.Unit('m-3')).to('cm-3').value * cgs.BK * temp
145
145
  return eos.pg_from_pe(temp, pe)
146
146
  elif rho is not None:
147
- return eos.pg_from_rho(temp, rho)
147
+ return eos.pg_from_rho(temp, (rho << u.Unit('kg m-3')).to('g cm-3').value)
148
148
 
149
149
  pgasCgs = np.array([0.70575286, 0.59018545, 0.51286639, 0.43719268, 0.37731009,
150
150
  0.33516886, 0.31342915, 0.30604891, 0.30059491, 0.29207645,
@@ -949,20 +949,20 @@ class Atmosphere:
949
949
  if nHTot is None and ne is not None:
950
950
  if verbose:
951
951
  print('Setting nHTot from electron pressure.')
952
- pe = ne * Const.CM_TO_M**3 * cgs.BK * temperature
952
+ pe = (ne << u.Unit('m-3')).to('cm-3').value * cgs.BK * temperature
953
953
  rho = np.zeros(Nspace)
954
954
  for k in range(Nspace):
955
955
  rho[k] = eos.rho_from_pe(temperature[k], pe[k])
956
- nHTot = np.copy(rho / (Const.CM_TO_M**3 / Const.G_TO_KG)
956
+ nHTot = np.copy((rho << u.Unit('g cm-3')).to('kg m-3').value
957
957
  / (Const.Amu * abundance.massPerH))
958
958
  elif ne is None and nHTot is not None:
959
959
  if verbose:
960
960
  print('Setting ne from mass density.')
961
- rho = Const.Amu * abundance.massPerH * nHTot * Const.CM_TO_M**3 / Const.G_TO_KG
961
+ rho = ((Const.Amu * abundance.massPerH * nHTot) << u.Unit('kg m-3')).to('g cm-3').value
962
962
  pe = np.zeros(Nspace)
963
963
  for k in range(Nspace):
964
964
  pe[k] = eos.pe_from_rho(temperature[k], rho[k])
965
- ne = np.copy(pe / (cgs.BK * temperature) / Const.CM_TO_M**3)
965
+ ne = np.copy(((pe / (cgs.BK * temperature)) << u.Unit('cm-3')).to('m-3').value)
966
966
  elif ne is None and nHTot is None:
967
967
  if Pgas is not None and Pgas.shape[0] != Nspace:
968
968
  raise ValueError('Dimensions of Pgas do not match atmospheric depth')
@@ -973,7 +973,7 @@ class Atmosphere:
973
973
  if verbose:
974
974
  print('Setting ne, nHTot from provided gas pressure.')
975
975
  # Convert to cgs for eos
976
- pgas = Pgas * (Const.CM_TO_M**2 / Const.G_TO_KG)
976
+ pgas = (Pgas << u.Unit('Pa')).to('dyn cm-2').value
977
977
  pe = np.zeros(Nspace)
978
978
  rho = np.zeros(Nspace)
979
979
  for k in range(Nspace):
@@ -983,7 +983,7 @@ class Atmosphere:
983
983
  if verbose:
984
984
  print('Setting ne, nHTot from provided electron pressure.')
985
985
  # Convert to cgs for eos
986
- pe = Pe * (Const.CM_TO_M**2 / Const.G_TO_KG)
986
+ pe = (Pe << u.Unit('Pa')).to('dyn cm-2').value
987
987
  pgas = np.zeros(Nspace)
988
988
  rho = np.zeros(Nspace)
989
989
  for k in range(Nspace):
@@ -991,19 +991,19 @@ class Atmosphere:
991
991
  rho[k] = eos.rho_from_pe(temperature[k], pe[k])
992
992
  elif Pgas is None and Pe is None:
993
993
  # Doing Hydrostatic Eq. based here on NICOLE implementation
994
- gravAcc = 10**logG / Const.CM_TO_M
994
+ gravAcc = ((10**logG) << u.Unit('m s-2')).to('cm s-2').value
995
995
  Avog = 6.022045e23 # Avogadro's Number
996
996
  if Ptop is None and PeTop is not None:
997
997
  if verbose:
998
998
  print(('Setting ne, nHTot to hydrostatic equilibrium (logG=%f)'
999
999
  ' from provided top electron pressure.') % logG)
1000
- PeTop *= (Const.CM_TO_M**2 / Const.G_TO_KG)
1000
+ PeTop = (PeTop << u.Unit("Pa")).to('dyn cm-2').value
1001
1001
  Ptop = eos.pg_from_pe(temperature[0], PeTop)
1002
1002
  elif Ptop is not None and PeTop is None:
1003
1003
  if verbose:
1004
1004
  print(('Setting ne, nHTot to hydrostatic equilibrium (logG=%f)'
1005
1005
  ' from provided top gas pressure.') % logG)
1006
- Ptop *= (Const.CM_TO_M**2 / Const.G_TO_KG)
1006
+ Ptop = (Ptop << u.Unit("Pa")).to('dyn cm-2').value
1007
1007
  PeTop = eos.pe_from_pg(temperature[0], Ptop)
1008
1008
  elif Ptop is None and PeTop is None:
1009
1009
  if verbose:
@@ -1017,9 +1017,9 @@ class Atmosphere:
1017
1017
  if scale == ScaleType.Tau500:
1018
1018
  tau = depthScale
1019
1019
  elif scale == ScaleType.Geometric:
1020
- height = depthScale / Const.CM_TO_M
1020
+ height = (depthScale << u.Unit('m')).to('cm').value
1021
1021
  else:
1022
- cmass = depthScale / Const.G_TO_KG * Const.CM_TO_M**2
1022
+ cmass = (depthScale << u.Unit('kg m-2')).to('g cm-2').value
1023
1023
 
1024
1024
  # NOTE(cmo): Compute HSE following the NICOLE method.
1025
1025
  rho = np.zeros(Nspace)
@@ -1066,14 +1066,14 @@ class Atmosphere:
1066
1066
  else:
1067
1067
  raise ConvergenceError(('No convergence in HSE at depth point %d, '
1068
1068
  'last change %2.4e') % (k, change))
1069
- nHTot = np.copy(rho / (Const.CM_TO_M**3 / Const.G_TO_KG)
1069
+ nHTot = np.copy((rho << u.Unit('g cm-3')).to('kg m-3').value
1070
1070
  / (Const.Amu * abundance.massPerH))
1071
- ne = np.copy(pe / (cgs.BK * temperature) / Const.CM_TO_M**3)
1071
+ ne = np.copy(((pe / (cgs.BK * temperature)) << u.Unit('cm-3')).to('m-3').value)
1072
1072
 
1073
1073
  # NOTE(cmo): Compute final pgas, pe from EOS that will be used for
1074
1074
  # background opacity.
1075
1075
  rhoSI = Const.Amu * abundance.massPerH * nHTot
1076
- rho = Const.Amu * abundance.massPerH * nHTot * Const.CM_TO_M**3 / Const.G_TO_KG
1076
+ rho = (rhoSI << u.Unit('kg m-3')).to('g cm-3').value
1077
1077
  pgas = np.zeros_like(depthScale)
1078
1078
  pe = np.zeros_like(depthScale)
1079
1079
  for k in range(Nspace):
@@ -1083,7 +1083,8 @@ class Atmosphere:
1083
1083
  chi_c = np.zeros_like(depthScale)
1084
1084
  for k in range(depthScale.shape[0]):
1085
1085
  chi_c[k] = eos.cont_opacity(temperature[k], pgas[k], pe[k],
1086
- np.array([5000.0])).item() / Const.CM_TO_M
1086
+ np.array([5000.0])).item()
1087
+ chi_c = (chi_c << u.Unit('cm')).to('m').value
1087
1088
 
1088
1089
  # NOTE(cmo): We should now have a uniform minimum set of data (other
1089
1090
  # than the scale type), allowing us to simply convert between the
@@ -1299,22 +1300,23 @@ class Atmosphere:
1299
1300
  if verbose:
1300
1301
  print('Setting nHTot from electron pressure.')
1301
1302
  flatNe = view_flatten(ne)
1302
- pe = flatNe * Const.CM_TO_M**3 * cgs.BK * flatTemperature
1303
+ pe = (flatNe << u.Unit('m-3')).to('cm-3').value * cgs.BK * flatTemperature
1303
1304
  rho = np.zeros(Nspace)
1304
1305
  for k in range(Nspace):
1305
1306
  rho[k] = eos.rho_from_pe(flatTemperature[k], pe[k])
1306
- nHTot = np.copy(rho / (Const.CM_TO_M**3 / Const.G_TO_KG)
1307
- / (Const.Amu * abundance.massPerH))
1307
+ nHTot = np.ascontiguousarray(
1308
+ (rho << u.Unit('g cm-3')).to('kg m-3').value
1309
+ / (Const.Amu * abundance.massPerH)
1310
+ )
1308
1311
  elif ne is None and nHTot is not None:
1309
1312
  if verbose:
1310
1313
  print('Setting ne from mass density.')
1311
1314
  flatNHTot = view_flatten(nHTot)
1312
- rho = (Const.Amu * abundance.massPerH * flatNHTot
1313
- * Const.CM_TO_M**3 / Const.G_TO_KG)
1315
+ rho = ((Const.Amu * abundance.massPerH * flatNHTot) << u.Unit('kg m-3')).to('g cm-3').value
1314
1316
  pe = np.zeros(Nspace)
1315
1317
  for k in range(Nspace):
1316
1318
  pe[k] = eos.pe_from_rho(flatTemperature[k], rho[k])
1317
- ne = np.copy(pe / (cgs.BK * flatTemperature) / Const.CM_TO_M**3)
1319
+ ne = np.ascontiguousarray(((pe / (cgs.BK * flatTemperature)) << u.Unit('cm-3')).to('m-3').value)
1318
1320
  elif ne is None and nHTot is None:
1319
1321
  raise ValueError('Cannot omit both ne and nHTot (currently).')
1320
1322
  flatX = view_flatten(x)
@@ -164,7 +164,7 @@ class AtomicLevel:
164
164
  '''
165
165
  Returns E in Joule.
166
166
  '''
167
- return self.E * Const.HC / Const.CM_TO_M
167
+ return self.E * Const.HC_CM
168
168
 
169
169
  @property
170
170
  def E_eV(self):
@@ -635,7 +635,7 @@ class KuruczPfTable:
635
635
  self.Tpf.shape[0]))
636
636
  ionpot.append(np.array(u.unpack_farray(stages[-1], u.unpack_double)))
637
637
 
638
- ionpot = [i * Const.HC / Const.CM_TO_M for i in ionpot]
638
+ ionpot = [i * Const.HC_CM for i in ionpot]
639
639
  pf = [np.log(p) for p in pf]
640
640
  self.pf = pf
641
641
  self.ionpot = ionpot
lightweaver/barklem.py CHANGED
@@ -113,8 +113,8 @@ class Barklem:
113
113
  while atom.levels[ic].stage < atom.levels[j].stage + 1:
114
114
  ic += 1
115
115
 
116
- deltaEi = (atom.levels[ic].E - atom.levels[i].E) * Const.HC / Const.CM_TO_M
117
- deltaEj = (atom.levels[ic].E - atom.levels[j].E) * Const.HC / Const.CM_TO_M
116
+ deltaEi = (atom.levels[ic].E - atom.levels[i].E) * Const.HC_CM
117
+ deltaEj = (atom.levels[ic].E - atom.levels[j].E) * Const.HC_CM
118
118
  E_Rydberg = Const.ERydberg / (1.0 + Const.MElectron
119
119
  / (atom.element.mass * Const.Amu))
120
120
 
lightweaver/broadening.py CHANGED
@@ -1,6 +1,7 @@
1
1
  from dataclasses import dataclass, field
2
2
  from typing import TYPE_CHECKING, Any, List, Optional, Sequence
3
3
 
4
+ import astropy.units as u
4
5
  import numpy as np
5
6
 
6
7
  import lightweaver.constants as Const
@@ -507,10 +508,10 @@ class HydrogenLinearStarkBroadening(StandardLineBroadener):
507
508
  nLower = int(np.round(np.sqrt(0.5*self.line.iLevel.g)))
508
509
 
509
510
  a1 = 0.642 if nUpper - nLower == 1 else 1.0
510
- C = a1 * 0.6 * (nUpper**2 - nLower**2) * Const.CM_TO_M**2
511
+ C = a1 * 0.6 * (nUpper**2 - nLower**2)
511
512
  if not self.reproduceOldRHBug:
512
513
  C *= 4.0 * np.pi * 0.425
513
- GStark = C * atmos.ne**(2.0/3.0)
514
+ GStark = C * u.Unit('m-2').to('cm-2') * atmos.ne**(2.0/3.0)
514
515
  return GStark
515
516
 
516
517
  @dataclass(eq=False)
@@ -1,6 +1,7 @@
1
1
  from dataclasses import dataclass, field
2
2
  from typing import TYPE_CHECKING, Sequence, cast
3
3
 
4
+ import astropy.units as u
4
5
  import numpy as np
5
6
  from numba import njit
6
7
  from scipy.special import exp1
@@ -283,7 +284,7 @@ class Ar85Cdi(CollisionalRates):
283
284
 
284
285
  fxj *= fac
285
286
  fac = 6.69e-7 / cdi[m, 0]**1.5
286
- Cup += fac * fxj * Const.CM_TO_M**3
287
+ Cup += fac * (fxj << u.Unit('cm3')).to('m3').value
287
288
  Cup[Cup < 0] = 0.0
288
289
 
289
290
  Cup *= atmos.ne
@@ -327,7 +328,7 @@ class Burgess(CollisionalRates):
327
328
  wlog = np.log(1.0 + invdEkT)
328
329
  wb = wlog**(betaB / (1.0 + invdEkT))
329
330
  Cup = (2.1715e-8 * cbar * (13.6/dE)**1.5 * np.sqrt(dEkT)
330
- * exp1(dEkT) * wb * atmos.ne * Const.CM_TO_M**3)
331
+ * exp1(dEkT) * wb * (atmos.ne << u.Unit('m-3')).to('cm-3').value)
331
332
 
332
333
  Cup *= self.fudge
333
334
  Cdown = Cup * nstar[self.i, :] / nstar[self.j, :]
lightweaver/constants.py CHANGED
@@ -2,6 +2,7 @@
2
2
  CLight = 2.99792458E+08 # Speed of light [m/s] */
3
3
  HPlanck = 6.6260755E-34 # Planck's constant [Js] */
4
4
  HC = HPlanck * CLight
5
+ HC_CM = HC * 1e2 # HC with c in cm/s, for wavenumbers as cm-1
5
6
  KBoltzmann = 1.380658E-23 # Boltzman's constant [J/K] */
6
7
  Amu = 1.6605402E-27 # Atomic mass unit [kg] */
7
8
  MElectron = 9.1093897E-31 # Electron mass [kg] */
@@ -16,12 +17,6 @@ ABarH = 7.42E-41 # polarizability of Hydrogen [Fm^2]
16
17
  E_ION_HMIN = 0.754*EV
17
18
 
18
19
  NM_TO_M = 1.0E-09
19
- CM_TO_M = 1.0E-02
20
- KM_TO_M = 1.0E+03
21
- ERG_TO_JOULE = 1.0E-07
22
- G_TO_KG = 1.0E-03
23
- MICRON_TO_NM = 1.0E+03
24
- MEGABARN_TO_M2 = 1.0E-22
25
20
 
26
21
  VMICRO_CHAR=3.0e3
27
22
  B_CHAR=0.0 #TESLA
lightweaver/fal.py CHANGED
@@ -1,5 +1,6 @@
1
1
  from typing import Callable
2
2
 
3
+ import astropy.units as u
3
4
  import numpy as np
4
5
 
5
6
  import lightweaver.constants as Const
@@ -428,4 +429,12 @@ nh = np.array([
428
429
  [1.2887E+17, 1.7545E+12, 3.8349E+11, 3.0146E+11, 3.2285E+11, 3.7897E+15],
429
430
  ]).T
430
431
 
431
- Falc82: Callable[[], Atmosphere] = lambda: Atmosphere.make_1d(ScaleType.ColumnMass, depthScale=cmass*Const.G_TO_KG / Const.CM_TO_M**2, temperature=np.copy(temp), ne=ne / Const.CM_TO_M**3, vlos=vel * Const.KM_TO_M, vturb=vturb * Const.KM_TO_M, hydrogenPops=nh / Const.CM_TO_M**3)
432
+ Falc82: Callable[[], Atmosphere] = lambda: Atmosphere.make_1d(
433
+ ScaleType.ColumnMass,
434
+ depthScale=(cmass << u.Unit('g cm-2')).to('kg m-2').value,
435
+ temperature=np.copy(temp),
436
+ ne=(ne << u.Unit('cm-3')).to('m-3').value,
437
+ vlos=(vel << u.Unit('km/s')).to('m/s').value,
438
+ vturb=(vturb << u.Unit('km/s')).to('m/s').value,
439
+ hydrogenPops=(nh << u.Unit('cm-3')).to('m-3').value,
440
+ )
lightweaver/libenkiTS.so CHANGED
Binary file
lightweaver/molecule.py CHANGED
@@ -1,6 +1,7 @@
1
1
  from collections import OrderedDict
2
2
  from typing import List, Optional, Tuple, Union
3
3
 
4
+ import astropy.units as u
4
5
  import numpy as np
5
6
  from numba import njit
6
7
  from parse import parse
@@ -36,7 +37,7 @@ def equilibrium_constant_kurucz_70(tempRange, mk, Ediss, eqc):
36
37
  minTemp = tempRange[0]
37
38
  maxTemp = tempRange[1]
38
39
  kB = Const.KBoltzmann
39
- CM_TO_M = Const.CM_TO_M
40
+ CM_TO_M = u.Unit('cm').to('m')
40
41
 
41
42
  @njit('float64(float64)')
42
43
  def kurucz_70(T):
@@ -56,7 +57,7 @@ def equilibrium_constant_kurucz_85(tempRange, mk, Ediss, eqc):
56
57
  minTemp = tempRange[0]
57
58
  maxTemp = tempRange[1]
58
59
  kB = Const.KBoltzmann
59
- CM_TO_M = Const.CM_TO_M
60
+ CM_TO_M = u.Unit('cm').to('m')
60
61
 
61
62
  @njit('float64(float64)')
62
63
  def kurucz_85(T):
@@ -76,7 +77,6 @@ def equilibrium_constant_sauval_tatum(tempRange, Ediss, eqc):
76
77
  minTemp = tempRange[0]
77
78
  maxTemp = tempRange[1]
78
79
  kB = Const.KBoltzmann
79
- CM_TO_M = Const.CM_TO_M
80
80
  THETA0 = Const.Theta0
81
81
  Ediss = Ediss / Const.EV
82
82
 
lightweaver/multi.py CHANGED
@@ -2,6 +2,7 @@ import re
2
2
  from dataclasses import dataclass
3
3
  from typing import Tuple
4
4
 
5
+ import astropy.units as u
5
6
  import numpy as np
6
7
 
7
8
  import lightweaver.constants as C
@@ -75,19 +76,19 @@ def read_multi_atmos(filename: str) -> Tuple[MultiMetadata, Atmosphere]:
75
76
  scaleMode = scaleStr[0].upper()
76
77
  if scaleMode == 'M':
77
78
  scaleType = ScaleType.ColumnMass
78
- dscale = 10**dscale * (C.G_TO_KG / C.CM_TO_M**2)
79
+ dscale = ((10**dscale) << u.Unit('g cm-2')).to('kg m-2').value
79
80
  elif scaleMode == 'T':
80
81
  scaleType = ScaleType.Tau500
81
82
  dscale = 10**dscale
82
83
  elif scaleMode == 'H':
83
84
  scaleType = ScaleType.Geometric
84
- dscale *= C.KM_TO_M
85
+ dscale = (dscale << u.Unit('km')).to('m').value
85
86
  else:
86
87
  raise ValueError('Unknown scale type: %s (expected M, T, or H)' % scaleStr)
87
88
 
88
- vlos *= C.KM_TO_M
89
- vturb *= C.KM_TO_M
90
- ne /= C.CM_TO_M**3
89
+ vlos = (vlos << u.Unit('km s-1')).to('m s-1').value
90
+ vturb = (vturb << u.Unit('km s-1')).to('m s-1').value
91
+ ne = (ne << u.Unit('cm-3')).to('m-3').value
91
92
 
92
93
  if len(lines) <= Nspace:
93
94
  raise ValueError('Hydrogen populations not supplied!')
@@ -98,7 +99,7 @@ def read_multi_atmos(filename: str) -> Tuple[MultiMetadata, Atmosphere]:
98
99
  vals = [float(v) for v in vals]
99
100
  hPops[:, k] = vals
100
101
 
101
- hPops /= C.CM_TO_M**3
102
+ hPops = (hPops << u.Unit('cm-3')).to('m-3').value
102
103
 
103
104
  meta = MultiMetadata(atmosName, logG)
104
105
  atmos = Atmosphere.make_1d(scale=scaleType,
lightweaver/version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.14.1'
21
- __version_tuple__ = version_tuple = (0, 14, 1)
20
+ __version__ = version = '0.14.2rc1'
21
+ __version_tuple__ = version_tuple = (0, 14, 2, 'rc1')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lightweaver
3
- Version: 0.14.1
3
+ Version: 0.14.2rc1
4
4
  Summary: Non-LTE Radiative Transfer Framework in Python
5
5
  Author-email: Chris Osborne <lw@contextuallight.com>
6
6
  Maintainer-email: Chris Osborne <lw@contextuallight.com>
@@ -1,32 +1,32 @@
1
1
  lightweaver/zeeman.py,sha256=xZJB5m4942bntpD35ZFhjeCB25t5LXmkiR3R9msXjZk,5751
2
2
  lightweaver/nr_update.py,sha256=tjQ19wLlzQghCKWvqgkqbJZh3upPS64TK6Yi3qiKHoA,4439
3
- lightweaver/libenkiTS.so,sha256=DSv7j-NBat1CpVr26o-_HQyDr_C6vkkI6oIBFghMIBQ,38896
4
- lightweaver/barklem.py,sha256=C1K7NEignKU7lsdOPS_t-cb5L0GV4tBqH6oCjzy5c_U,5561
5
- lightweaver/atomic_table.py,sha256=J0dWz31WMsBLopjEwJ0Z9pSf3uf-iHi7e8SvzvEjB0g,21037
3
+ lightweaver/libenkiTS.so,sha256=GefVphCpDrsAtzf5JnmLJPoxA_xzWtHT2v_sNJgeg8M,38896
4
+ lightweaver/barklem.py,sha256=L5at5pKgv3u6fQW2_4NedghSFshNPqi5430Owhxldz8,5535
5
+ lightweaver/atomic_table.py,sha256=eWjjbjfzapz2I875kf1O3C-1zod0Cq51rul_C5l_Vlw,21024
6
6
  lightweaver/atomic_set.py,sha256=_8y_xhQT6hE0f6MOaPaJPywhTKbXqXc8UgWcyAjUtfc,48032
7
7
  lightweaver/config.py,sha256=_GzSvhhK5B-wqZXYNopPqdp4muCX3b8a2AbyVWU2Rdo,3295
8
- lightweaver/version.py,sha256=9-B5HerO_wiKUcm3zqJZazE8kjqwU6_WcIM1m-vWIoQ,513
8
+ lightweaver/version.py,sha256=FQqBPGEy5PI3DPVf1uXyUvPhL0vrfwr9aTcs0WhDmAA,523
9
9
  lightweaver/benchmark.py,sha256=Ii4sjaP7BSNacpxQo8Fm22X-wOn6PJxqrs6G_Z2ZjK8,4001
10
- lightweaver/molecule.py,sha256=slk881UortO-oGpKq7UtDS3YLw5S8ZLMiEToq1uUe2A,7488
10
+ lightweaver/molecule.py,sha256=fToQAn-dyD0XOjNsxvbfJrVpnDrkLjt5nqqI88oL_BA,7500
11
11
  lightweaver/crtaf.py,sha256=OVuSlWI6XeWVHDJ6HBrl9XcgvhnlX3klMkKtHCJd6go,8322
12
12
  lightweaver/simd_management.py,sha256=bz_5_6T_Tj69y7udYflMMHVI-EUX8lmeBS4JMiqwUP8,1433
13
- lightweaver/atomic_model.py,sha256=yaxcC8TzJqpzYa9X3SnOFfG4ek8zltGwfVjW1qwG8Ao,26876
13
+ lightweaver/atomic_model.py,sha256=c9CfrWeFnBH1X4-umM5bALUUO6Z2T4TL7vjkfKVeFJc,26863
14
14
  lightweaver/rh_atoms.py,sha256=mZgqkHRqyvKTvNtI3atuRsX-MEB-F3c1wPJVgpN5cx8,4432071
15
15
  lightweaver/wittmann.py,sha256=NxxVheNjYkS9UbDAbz1vXx_Y5_y-Awxplt6J_sVQYxo,45413
16
- lightweaver/constants.py,sha256=QZygh8hwKAx6F7FvFoARf-2sP7yRgarv2Zw_1-FmVk4,993
17
- lightweaver/multi.py,sha256=vP26QpO5b_9VIWDEjOFeEdK8FiIvi856ayccB7Mn9kY,3108
16
+ lightweaver/constants.py,sha256=wk5GanELqBGaGuIYL0Fw8-_lc2m0AhTFpZO_vLlb6Ls,941
17
+ lightweaver/multi.py,sha256=5KTNLgDQnceLzu6TxLe42Go4fHkSLDymtskZRrzbInE,3298
18
18
  lightweaver/__init__.py,sha256=-0rZwR6uj0GhVvLuHvMLY0zSktyWq7Pj-DbMtBPgUKk,1597
19
- lightweaver/LwCompiled.cpython-311-darwin.so,sha256=fXTvOFl0YrZg77NcLp_hKlKCbOjxaY1qktCsURt31vE,2231504
20
- lightweaver/collisional_rates.py,sha256=G11AUybvc1rx9lMoJMalFwy78zfiGmrgB2HSst5Mp_M,11377
19
+ lightweaver/LwCompiled.cpython-311-darwin.so,sha256=io66KtC8IY9N19tZkeRJ4dNK6xpCZTZftadzE9fU3eI,2132592
20
+ lightweaver/collisional_rates.py,sha256=orlzfAtdfmxltptn-3phOmvADXILxcYaI0c_y9m5Ysg,11435
21
21
  lightweaver/utils.py,sha256=L_-i6sYyuLEAFpxaCrhjVlRwDGOGSNqKRHhUj_aQv_Y,16527
22
22
  lightweaver/iterate_ctx.py,sha256=y07gYwqW3TTPbrrTM8bwBRtb675_nW5ufU4fDPq7ECc,9353
23
- lightweaver/broadening.py,sha256=NbQsRKJlgvQAd8Plw0UvsaMBEZ3ps_0HDcGpq92uGKU,19150
23
+ lightweaver/broadening.py,sha256=OEymNWV6AA968_KlqbMfooT8v3kR64YR-_n8Bkfy0XE,19184
24
24
  lightweaver/iteration_update.py,sha256=UI11afqPCRDUU01viZAtb1R-xjpnbdmp4rZZpF-c-rA,4762
25
- lightweaver/atmosphere.py,sha256=lb8Zj_5Eq4CFnmOaYW4Yrsfk2vSuIHX0cL0WAv0iLhg,63976
26
- lightweaver/fal.py,sha256=MKRclqAdshbferWC9NVU6S_qnyYHsBoDmvsc3b4sTEQ,11698
27
- lightweaver/DefaultIterSchemes/SimdImpl_SSE2.cpython-311-darwin.so,sha256=Qgyg7cUJeU6G_4WeKn-gTaOI6l6Ig-UGLOQBAa3bKv8,1314800
28
- lightweaver/DefaultIterSchemes/SimdImpl_AVX512.cpython-311-darwin.so,sha256=o9Ut0dfd_Nl-WYEfvJ-CWmmXMLIarFAfCifP33Zo5SA,1343664
29
- lightweaver/DefaultIterSchemes/SimdImpl_AVX2FMA.cpython-311-darwin.so,sha256=2XuNRolrygsKSRKV-fHrOwEM3th5fOObmXNYSScnWCg,1298096
25
+ lightweaver/atmosphere.py,sha256=YlKl2NEe08HbtqICfQVvh95z4ZnHiWLpmk2gdbAY-5Q,64272
26
+ lightweaver/fal.py,sha256=ONFDYaNTE3uEN7NXhgkxg-nixVkVP7z3m5zSZk0FFfY,11837
27
+ lightweaver/DefaultIterSchemes/SimdImpl_SSE2.cpython-311-darwin.so,sha256=G7OP61itrBoVpuy2R9GGIzIyQwJWZbd9taipGkjAbfI,1314800
28
+ lightweaver/DefaultIterSchemes/SimdImpl_AVX512.cpython-311-darwin.so,sha256=5SivxpC53w6-CeAyNm7R8hNUvlZrjBNW2Gs-A_sRBqU,1343664
29
+ lightweaver/DefaultIterSchemes/SimdImpl_AVX2FMA.cpython-311-darwin.so,sha256=0rekDA4Kb2-yEXgrnQ4c4YWVvvhekYns6uYzQtwFfvE,1298096
30
30
  lightweaver/DefaultIterSchemes/.placeholder,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
31
  lightweaver/Data/Quadratures.pickle,sha256=iHhL_eZsppT445YMc_gQqG2CAFSJAOmsfbSj9XuaCcE,1281
32
32
  lightweaver/Data/Barklem_spdata.dat,sha256=DWQcznCQxeFyi0QyRtKbY-E3oK1nlsVag1plP_y-E2U,4600
@@ -62,8 +62,8 @@ lightweaver/Data/DefaultMolecules/CH/CH_X-A_12.asc,sha256=Rqz8fz0diUug0dBHe44Ocd
62
62
  lightweaver/Data/DefaultMolecules/CH/CH_X-B_12.asc,sha256=gAScIebIY7OeXqBHu7S0RrB2mS6tW8AS6p4ZGJLRlgs,183306
63
63
  lightweaver/Data/DefaultMolecules/CO/vmax=3_Jmax=49_dv=1_26,sha256=ROW6cpVEu2yeHAqAaIOVQ9iDN9tERN5BXG0OvIpzRfw,22398
64
64
  lightweaver/Data/DefaultMolecules/CO/vmax=9_Jmax=120_dv=1_26,sha256=6x6Sja6a2KBEAnWfXEntpKgtJK97hN_Vj29ZM5fmKko,164217
65
- lightweaver-0.14.1.dist-info/RECORD,,
66
- lightweaver-0.14.1.dist-info/WHEEL,sha256=RgjxKJn3L36bk2qeLcHjA354N7c6TovM04pRbYHBbcg,137
67
- lightweaver-0.14.1.dist-info/top_level.txt,sha256=TqtjW3ntlT7MIESoNNYcnSCgDEaBQzYOpiz1UfqalfU,12
68
- lightweaver-0.14.1.dist-info/METADATA,sha256=3mxBBoaCvqK_hpFVQPkBetu6Da7CkAAfxBbo2YDpAWo,4218
69
- lightweaver-0.14.1.dist-info/licenses/LICENSE,sha256=wVMbqLUgFqYma4RAdIHtNAm0ml2RXvgMxXZH6wbqfiw,1080
65
+ lightweaver-0.14.2rc1.dist-info/RECORD,,
66
+ lightweaver-0.14.2rc1.dist-info/WHEEL,sha256=TY6wS7uh4kKn2hb4-XnLjkub5JFV8id422w1jhyVjcQ,137
67
+ lightweaver-0.14.2rc1.dist-info/top_level.txt,sha256=TqtjW3ntlT7MIESoNNYcnSCgDEaBQzYOpiz1UfqalfU,12
68
+ lightweaver-0.14.2rc1.dist-info/METADATA,sha256=ODIqV3lWs1JypwfYQMt-JPOtZr-9rhl1NRzdS8gEsRY,4221
69
+ lightweaver-0.14.2rc1.dist-info/licenses/LICENSE,sha256=wVMbqLUgFqYma4RAdIHtNAm0ml2RXvgMxXZH6wbqfiw,1080
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-macosx_10_9_x86_64
5
5
  Generator: delocate 0.13.0