nucleardatapy 1.0.1__py3-none-any.whl → 1.0.2__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.
@@ -37,6 +37,7 @@ def hnuc_setupChart_fig( pname, tables1L, tables2L, tables1Xi ):
37
37
  axs.set_ylim([0.8, 90.0])
38
38
  #
39
39
  for table1L in tables1L:
40
+ print(f'Processing table: {table1L}')
40
41
  hnuc1L = nuda.hnuc.setupRE1LExp( table = table1L )
41
42
  axs.scatter( hnuc1L.N, hnuc1L.Z, marker='s', s=12, color=nuda.param.col[0], label=r'1$\Lambda$ from table '+table1L )
42
43
  for table2L in tables2L:
@@ -52,6 +53,6 @@ def hnuc_setupChart_fig( pname, tables1L, tables2L, tables1Xi ):
52
53
  axs.text(1.1,60,'Chart of hypernuclides in nuda toolkit',fontsize='14')
53
54
  #
54
55
  if pname is not None:
55
- plt.savefig(pname, dpi=200)
56
- plt.close()
56
+ plt.savefig(pname, dpi=200)
57
+ plt.close()
57
58
  #
@@ -34,26 +34,32 @@ def nuc_setupBEExp_chart_lt_fig( pname, table, version, theo_tables ):
34
34
  axs.set_title(r''+table+' mass table version '+version)
35
35
  axs.set_ylabel(r'Z',fontsize='14')
36
36
  axs.set_xlabel(r'N',fontsize='14')
37
- axs.set_xlim([0, 200])
37
+ axs.set_xlim([0, 220])
38
38
  axs.set_ylim([0, 132])
39
39
  axs.text(10,120,'Number of nuclei:')
40
40
  #
41
- # longlive nuclei
41
+ # longlived nuclei
42
42
  #
43
+ print(20*'-')
44
+ print('longlived nuclei:')
43
45
  mas = nuda.nuc.setupBEExp( table = table, version = version )
44
46
  ustbl = mas.select( state= 'gs', interp = 'n', nucleus = 'longlive' )
45
47
  axs.scatter( ustbl.sel_nucN, ustbl.sel_nucZ, marker='s', s = 3, linewidth=0, color = 'grey', label='long-lived ('+str(ustbl.sel_nbNucSel)+')' )
46
48
  #axs.text(10,96,'long live: '+str(ustbl.sel_nbNucSel))
47
49
  #
48
- # shortlive nuclei
50
+ # shortlived nuclei
49
51
  #
52
+ print(20*'-')
53
+ print('shortlived nuclei:')
50
54
  mas = nuda.nuc.setupBEExp( table = table, version = version )
51
55
  ustbl = mas.select( state= 'gs', interp = 'n', nucleus = 'shortlive' )
52
56
  axs.scatter( ustbl.sel_nucN, ustbl.sel_nucZ, marker='s', s = 3, linewidth=0, color = 'r', label='short-lived ('+str(ustbl.sel_nbNucSel)+')' )
53
57
  #axs.text(10,88,'short live: '+str(ustbl.sel_nbNucSel))
54
58
  #
55
- # veryshortlive nuclei
59
+ # veryshortlived nuclei
56
60
  #
61
+ print(20*'-')
62
+ print('veryshortlived nuclei:')
57
63
  mas = nuda.nuc.setupBEExp( table = table, version = version )
58
64
  ustbl = mas.select( state= 'gs', interp = 'n', nucleus = 'veryshortlive' )
59
65
  axs.scatter( ustbl.sel_nucN, ustbl.sel_nucZ, marker='s', s = 3, linewidth=0, color = 'b', label='very-short-lived ('+str(ustbl.sel_nbNucSel)+')' )
@@ -61,6 +67,8 @@ def nuc_setupBEExp_chart_lt_fig( pname, table, version, theo_tables ):
61
67
  #
62
68
  # hypershortlive nuclei
63
69
  #
70
+ print(20*'-')
71
+ print('hypershortlived nuclei:')
64
72
  mas = nuda.nuc.setupBEExp( table = table, version = version )
65
73
  ustbl = mas.select( state= 'gs', interp = 'n', nucleus = 'hypershortlive' )
66
74
  axs.scatter( ustbl.sel_nucN, ustbl.sel_nucZ, marker='s', s = 3, linewidth=0, color = 'g', label='hyper-short-lived ('+str(ustbl.sel_nbNucSel)+')' )
@@ -68,20 +76,31 @@ def nuc_setupBEExp_chart_lt_fig( pname, table, version, theo_tables ):
68
76
  #
69
77
  # unstable nuclei:
70
78
  #
79
+ print(20*'-')
80
+ print('unstable nuclei:')
71
81
  mas = nuda.nuc.setupBEExp( table = table, version = version )
72
82
  ustbl = mas.select( state= 'gs', interp = 'n', nucleus = 'unstable' )
73
83
  #axs.scatter( ustbl.sel_nucN, ustbl.sel_Z, marker='.', s = 1, linewidth=0, color = 'b' )
74
84
  axs.text(10,104,'unstable: '+str(ustbl.sel_nbNucSel))
75
85
  #
76
- # drip line nuclei
86
+ # dripline nuclei
77
87
  #
88
+ print(20*'-')
89
+ print('dripline nuclei:')
90
+ print('theo_tables:',theo_tables)
78
91
  legend = 0
79
92
  for i,theo_table in enumerate( theo_tables ):
93
+ print('theo_table:',theo_table)
80
94
  theo = nuda.nuc.setupBETheo( table = theo_table )
81
- for zref in range(1,96):
95
+ print(' Zmin, Zmax:',theo.Zmin,theo.Zmax)
96
+ for zref in range(theo.Zmin+4,theo.Zmax-4):
97
+ #print('zref:',zref)
98
+ #print('isotopes:')
82
99
  itp = theo.isotopes( Zref= zref)
83
- s2n = itp.S2n( Zref= zref )
84
- drip_S2n = itp.drip_S2n(Zref = zref)
100
+ #print('S2n:')
101
+ s2n = itp.S2n()
102
+ #print('drip_S2n:')
103
+ drip_S2n = itp.drip_S2n()
85
104
  if legend == 0:
86
105
  axs.scatter( drip_S2n.drip_S2n_N, drip_S2n.drip_S2n_Z, marker='o', s = 3, linewidth=0, color = 'purple', label='Drip Lines' )
87
106
  legend = 1
@@ -101,12 +120,14 @@ def nuc_setupBEExp_chart_lt_fig( pname, table, version, theo_tables ):
101
120
  #
102
121
  # stable nuclei:
103
122
  #
123
+ print(20*'-')
124
+ print('stable nuclei:')
104
125
  mas = nuda.nuc.setupBEExp( table = table, version = version )
105
126
  stbl = mas.select( state= 'gs', interp = 'n', nucleus = 'stable' )
106
127
  axs.scatter( stbl.sel_nucN, stbl.sel_nucZ, marker='s', s = 3, linewidth=0, color = 'k' )
107
128
  axs.text(10,112,'stable: '+str(stbl.sel_nbNucSel))
108
129
  #
109
- axs.text(49,120,str(ustbl.sel_nbNucSel+stbl.sel_nbNucSel))
130
+ axs.text(70,120,str(ustbl.sel_nbNucSel+stbl.sel_nbNucSel))
110
131
  #
111
132
  # plot N=Z dotted line
112
133
  #
@@ -215,7 +215,7 @@ class setupMicroBand():
215
215
  print(" den_max:",self.den_max)
216
216
  print(" den :",np.round(self.den,3))
217
217
  print(" kfn :",np.round(self.kfn,2))
218
- print(" e2a :",np.round(self.e2a,2))
218
+ print(" e2a :",np.round(self.e2a_int,2))
219
219
  print(" std :",np.round(self.e2a_std,3))
220
220
  #if self.sm_den is not None: print(f" sm_den: {np.round(self.sm_den,3)} in {self.den_unit}")
221
221
  #
@@ -103,6 +103,7 @@ class setupBETheo():
103
103
  #self.nucBE = self.nucBE2A * self.nucA
104
104
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
105
105
  self.nucBE2A = self.nucBE / self.nucA
106
+ self.Zmin = int( min( self.nucZ ) )
106
107
  self.Zmax = int( max( self.nucZ ) )
107
108
  #
108
109
  elif table.lower()=='1988-mj':
@@ -121,6 +122,7 @@ class setupBETheo():
121
122
  #self.nucBE = self.nucBE2A * self.nucA
122
123
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
123
124
  self.nucBE2A = self.nucBE / self.nucA
125
+ self.Zmin = int( min( self.nucZ ) )
124
126
  self.Zmax = int( max( self.nucZ ) )
125
127
  #
126
128
  elif table.lower()=='1995-dz':
@@ -139,6 +141,7 @@ class setupBETheo():
139
141
  #self.nucBE = self.nucBE2A * self.nucA
140
142
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
141
143
  self.nucBE2A = self.nucBE / self.nucA
144
+ self.Zmin = int( min( self.nucZ ) )
142
145
  self.Zmax = int( max( self.nucZ ) )
143
146
  #
144
147
  elif table.lower()=='1995-etfsi':
@@ -157,6 +160,7 @@ class setupBETheo():
157
160
  #self.nucBE = self.nucBE2A * self.nucA
158
161
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
159
162
  self.nucBE2A = self.nucBE / self.nucA
163
+ self.Zmin = int( min( self.nucZ ) )
160
164
  self.Zmax = int( max( self.nucZ ) )
161
165
  #
162
166
  elif table.lower()=='1995-frdm':
@@ -220,6 +224,7 @@ class setupBETheo():
220
224
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
221
225
  self.nucBE2A = self.nucBE / self.nucA
222
226
  #print('nucZ:',self.nucZ)
227
+ self.Zmin = min( self.nucZ )
223
228
  self.Zmax = max( self.nucZ )
224
229
  #
225
230
  elif table.lower()=='2005-ktuy':
@@ -238,6 +243,7 @@ class setupBETheo():
238
243
  #self.nucBE = self.nucBE2A * self.nucA
239
244
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
240
245
  self.nucBE2A = self.nucBE / self.nucA
246
+ self.Zmin = int( min( self.nucZ ) )
241
247
  self.Zmax = int( max( self.nucZ ) )
242
248
  #
243
249
  elif table.lower()=='2007-hfb14':
@@ -256,6 +262,7 @@ class setupBETheo():
256
262
  #self.nucBE = self.nucBE2A * self.nucA
257
263
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
258
264
  self.nucBE2A = self.nucBE / self.nucA
265
+ self.Zmin = int( min( self.nucZ ) )
259
266
  self.Zmax = int( max( self.nucZ ) )
260
267
  #
261
268
  elif table.lower()=='2010-hfb21':
@@ -277,6 +284,7 @@ class setupBETheo():
277
284
  #self.nucBE = self.Mcal * self.nucA
278
285
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
279
286
  self.nucBE2A = self.nucBE / self.nucA
287
+ self.Zmin = int( min( self.nucZ ) )
280
288
  self.Zmax = int( max( self.nucZ ) )
281
289
  #
282
290
  elif table.lower()=='2010-ws*':
@@ -295,6 +303,7 @@ class setupBETheo():
295
303
  #self.nucBE = self.nucBE2A * self.nucA
296
304
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
297
305
  self.nucBE2A = self.nucBE / self.nucA
306
+ self.Zmin = int( min( self.nucZ ) )
298
307
  self.Zmax = int( max( self.nucZ ) )
299
308
  #
300
309
  elif table.lower()=='2011-ws3':
@@ -313,6 +322,7 @@ class setupBETheo():
313
322
  #self.nucBE = self.nucBE2A * self.nucA
314
323
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
315
324
  self.nucBE2A = self.nucBE / self.nucA
325
+ self.Zmin = int( min( self.nucZ ) )
316
326
  self.Zmax = int( max( self.nucZ ) )
317
327
  #
318
328
  elif table.lower()=='2013-hfb22':
@@ -331,6 +341,7 @@ class setupBETheo():
331
341
  #self.nucBE = self.nucBE2A * self.nucA
332
342
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
333
343
  self.nucBE2A = self.nucBE / self.nucA
344
+ self.Zmin = int( min( self.nucZ ) )
334
345
  self.Zmax = int( max( self.nucZ ) )
335
346
  #
336
347
  elif table.lower()=='2013-hfb23':
@@ -349,6 +360,7 @@ class setupBETheo():
349
360
  #self.nucBE = self.nucBE2A * self.nucA
350
361
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
351
362
  self.nucBE2A = self.nucBE / self.nucA
363
+ self.Zmin = int( min( self.nucZ ) )
352
364
  self.Zmax = int( max( self.nucZ ) )
353
365
  #
354
366
  elif table.lower()=='2013-hfb24':
@@ -367,6 +379,7 @@ class setupBETheo():
367
379
  #self.nucBE = self.nucBE2A * self.nucA
368
380
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
369
381
  self.nucBE2A = self.nucBE / self.nucA
382
+ self.Zmin = int( min( self.nucZ ) )
370
383
  self.Zmax = int( max( self.nucZ ) )
371
384
  #
372
385
  elif table.lower()=='2013-hfb25':
@@ -385,6 +398,7 @@ class setupBETheo():
385
398
  #self.nucBE = self.nucBE2A * self.nucA
386
399
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
387
400
  self.nucBE2A = self.nucBE / self.nucA
401
+ self.Zmin = int( min( self.nucZ ) )
388
402
  self.Zmax = int( max( self.nucZ ) )
389
403
  #
390
404
  elif table.lower()=='2013-hfb26':
@@ -403,6 +417,7 @@ class setupBETheo():
403
417
  #self.nucBE = self.nucBE2A * self.nucA
404
418
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
405
419
  self.nucBE2A = self.nucBE / self.nucA
420
+ self.Zmin = int( min( self.nucZ ) )
406
421
  self.Zmax = int( max( self.nucZ ) )
407
422
  #
408
423
  elif table.lower()=='2021-bskg1':
@@ -424,6 +439,7 @@ class setupBETheo():
424
439
  #self.nucBE = self.nucBE2A * self.nucA
425
440
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
426
441
  self.nucBE2A = self.nucBE / self.nucA
442
+ self.Zmin = int( min( self.nucZ ) )
427
443
  self.Zmax = int( max( self.nucZ ) )
428
444
  #
429
445
  elif table.lower()=='2022-bskg2':
@@ -445,6 +461,7 @@ class setupBETheo():
445
461
  #self.nucBE = self.nucBE2A * self.nucA
446
462
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
447
463
  self.nucBE2A = self.nucBE / self.nucA
464
+ self.Zmin = int( min( self.nucZ ) )
448
465
  self.Zmax = int( max( self.nucZ ) )
449
466
  #
450
467
  elif table.lower()=='2023-bskg3':
@@ -466,6 +483,7 @@ class setupBETheo():
466
483
  #self.nucBE = self.nucBE2A * self.nucA
467
484
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
468
485
  self.nucBE2A = self.nucBE / self.nucA
486
+ self.Zmin = int( min( self.nucZ ) )
469
487
  self.Zmax = int( max( self.nucZ ) )
470
488
  #
471
489
  elif table.lower()=='2025-bskg4':
@@ -487,6 +505,7 @@ class setupBETheo():
487
505
  #self.nucBE = self.nucBE2A * self.nucA
488
506
  self.nucBE = conversionMBE(self.nucMass,self.nucN,self.nucZ)
489
507
  self.nucBE2A = self.nucBE / self.nucA
508
+ self.Zmin = int( min( self.nucZ ) )
490
509
  self.Zmax = int( max( self.nucZ ) )
491
510
  #
492
511
  self.nucI = ( self.nucN - self.nucZ ) / self.nucA
@@ -525,6 +544,8 @@ class setupBETheo():
525
544
  #
526
545
  if nuda.env.verb: print("Enter isotopes()")
527
546
  #
547
+ self.Zref = Zref
548
+ #
528
549
  if Zref < 0:
529
550
  print('setup_be_exp.py: issue with the function isotopes.')
530
551
  print('setup_be_exp.py: Bad definition for Zref')
@@ -547,6 +568,8 @@ class setupBETheo():
547
568
  self.itp_nucNmin = nucNmin
548
569
  self.itp_nucNmax = nucNmax
549
570
  #
571
+ #print('Nmin,Nmax:',nucNmin,nucNmax)
572
+ #
550
573
  if nuda.env.verb: print("Exit isotopes()")
551
574
  #
552
575
  return self
@@ -563,6 +586,8 @@ class setupBETheo():
563
586
  #
564
587
  if nuda.env.verb: print("Enter isotones()")
565
588
  #
589
+ self.Nref = Nref
590
+ #
566
591
  if Nref < 0:
567
592
  print('setup_be_exp.py: issue with the function isotones.')
568
593
  print('setup_be_exp.py: Bad definition for Nref')
@@ -589,7 +614,7 @@ class setupBETheo():
589
614
  #
590
615
  return self
591
616
  #
592
- def S2n( self, Zref = 50 ):
617
+ def S2n( self ):
593
618
  """
594
619
  Compute the two-neutron separation energy (S2n)
595
620
  S2n = E(Z,N)-E(Z,N-2)
@@ -597,11 +622,11 @@ class setupBETheo():
597
622
  #
598
623
  if nuda.env.verb: print("Enter S2n()")
599
624
  #
600
- if Zref < 0:
625
+ if self.Zref < 0:
601
626
  print('setup_be_theo: In S2n attribute function of setup_be_theo.py:')
602
627
  print('setup_be_theo: Bad definition of Zref')
603
628
  print('setup_be_theo: It is expected that Zref>=0')
604
- print('setup_be_theo: Zref:',Zref)
629
+ print('setup_be_theo: Zref:',self.Zref)
605
630
  print('setup_be_theo: exit')
606
631
  exit()
607
632
  #
@@ -618,26 +643,29 @@ class setupBETheo():
618
643
  #
619
644
  for ind,Z in enumerate(self.nucZ):
620
645
  #
621
- if Z == Zref and self.nucN[ind] == N:
646
+ if Z == self.Zref and self.nucN[ind] == N:
622
647
  indN = ind
623
648
  flagN = True
624
- if Z == Zref and self.nucN[ind] == N-2:
649
+ if Z == self.Zref and self.nucN[ind] == N-2:
625
650
  indNm2 = ind
626
651
  flagNm2 = True
627
652
  #
628
653
  if flagN and flagNm2:
629
654
  S2n_N.append( N )
630
- S2n_Z.append( Zref )
655
+ S2n_Z.append( self.Zref )
631
656
  S2n_E.append( self.nucBE[indN] - self.nucBE[indNm2] )
632
657
  self.S2n_N = np.array( S2n_N, dtype = int )
633
658
  self.S2n_Z = np.array( S2n_Z, dtype = int )
634
659
  self.S2n_E = np.array( S2n_E, dtype = float )
635
660
  #
661
+ #print('S2n_N:',self.S2n_N)
662
+ #print('S2n_Z:',self.S2n_Z)
663
+ #
636
664
  if nuda.env.verb: print("Exit S2n()")
637
665
  #
638
666
  return self
639
667
  #
640
- def S2p( self, Nref = 50 ):
668
+ def S2p( self ):
641
669
  """
642
670
  Compute the two-proton separation energy (S2p)
643
671
  S2p(Z,Nref) = E(Z,Nref)-E(Z-2,Nref)
@@ -645,11 +673,11 @@ class setupBETheo():
645
673
  #
646
674
  if nuda.env.verb: print("Enter S2p()")
647
675
  #
648
- if Nref < 0:
676
+ if self.Nref < 0:
649
677
  print('setup_be_exp.py: In S2p attribute function of setup_be_exp.py:')
650
678
  print('setup_be_exp.py: Bad definition of Nref')
651
679
  print('setup_be_exp.py: It is expected that Nref>=0')
652
- print('setup_be_exp.py: Nref:',Nref)
680
+ print('setup_be_exp.py: Nref:',self.Nref)
653
681
  print('setup_be_exp.py: exit')
654
682
  exit()
655
683
  #
@@ -666,16 +694,16 @@ class setupBETheo():
666
694
  #
667
695
  for ind,N in enumerate(self.nucN):
668
696
  #
669
- if N == Nref and self.nucZ[ind] == Z:
697
+ if N == self.Nref and self.nucZ[ind] == Z:
670
698
  indZ = ind
671
699
  flagZ = True
672
- if N == Nref and self.nucZ[ind] == Z-2:
700
+ if N == self.Nref and self.nucZ[ind] == Z-2:
673
701
  indZm2 = ind
674
702
  flagZm2 = True
675
703
  #
676
704
  if flagZ and flagZm2:
677
705
  S2p_Z.append( Z )
678
- S2p_N.append( Nref )
706
+ S2p_N.append( self.Nref )
679
707
  S2p_E.append( self.nucBE[indZ] - self.nucBE[indZm2] )
680
708
  self.S2p_Z = np.array( S2p_Z, dtype = int )
681
709
  self.S2p_N = np.array( S2p_N, dtype = int )
@@ -685,27 +713,29 @@ class setupBETheo():
685
713
  #
686
714
  return self
687
715
  #
688
- def drip_S2n(self, Zref=50):
716
+ def drip_S2n(self):
689
717
  """
690
718
  Method which find the drip-line nuclei from S2n (neutron side).
691
719
 
692
- :param Zmin: Fix the minimum charge for the search of the neutron drip line.
693
- :type Zmin: int, optional. Default: 1.
694
- :param Zmax: Fix the maximum charge for the search of the neutron drip line.
695
- :type Zmax: int, optional. Default: 95.
720
+ :param Zref: Fix the charge for the search of isotopes.
721
+ :type Zref: int, optional. Default: 50.
696
722
 
697
723
  **Attributes:**
698
724
  """
699
725
  #
700
726
  if nuda.env.verb: print("Enter drip_S2n()")
701
727
  #
702
- # if Zmin > Zmax:
703
- # print('setup_be_theo: In drip_S2n attribute function of setup_be_theo.py:')
704
- # print('setup_be_theo: Bad definition of Zmin and Zmax')
705
- # print('setup_be_theo: It is expected that Zmin<=Zmax')
706
- # print('setup_be_theo: Zmin,Zmax:',Zmin,Zmax)
707
- # print('setup_be_theo: exit')
708
- # exit()
728
+ #print('Zref:',self.Zref)
729
+ #print('self.nucZ:',self.nucZ)
730
+ #print('self.nucN:',self.nucN)
731
+ #
732
+ if self.Zref not in self.nucZ:
733
+ print('setup_be_theo: In drip_S2n attribute function of setup_be_theo.py:')
734
+ print('setup_be_theo: Zref is not in self.nucZ')
735
+ print('setup_be_theo: Zref:',self.Zref)
736
+ print('setup_be_theo: self.nucZ:',self.nucZ)
737
+ print('setup_be_theo: exit')
738
+ exit()
709
739
  #
710
740
  if not any(self.S2n_Z):
711
741
  print('setup_be_theo: In drip_S2n attribute function of setup_be_theo.py:')
@@ -713,54 +743,52 @@ class setupBETheo():
713
743
  print('setup_be_theo: exit')
714
744
  exit()
715
745
  #
716
- #Nstable, Zstable = stable_fit( Zmin = Zmin, Zmax = Zmax )
717
- #
718
746
  self.drip_S2n_Z = []
719
747
  self.drip_S2n_N = []
720
748
  #
721
- print("S2n_Z:",self.S2n_Z)
749
+ #print("S2n_Z:",self.S2n_Z)
750
+ #print("S2n_N:",self.S2n_N)
751
+ #print("S2n_E:",self.S2n_E)
752
+ #
753
+ Nmax = 0
722
754
  for ind,Z in enumerate(self.S2n_Z):
723
755
  #
724
- # if Z > Zmax :
725
- # break
726
- # if Z < Zref :
727
- # continue
728
- #
729
- #Nmax = Nstable[ind]
730
- Nmax = 0
731
- #
732
- for ind2,Z2 in enumerate(self.S2n_Z):
733
- if Z2 == Z and self.S2n_N[ind2] > Nmax and self.S2n[ind2] > 0.0:
734
- Nmax = self.S2n_N[ind2]
735
- self.drip_S2n_Z.append( Z )
736
- self.drip_S2n_N.append( Nmax )
756
+ if self.S2n_N[ind] > Nmax and self.S2n_E[ind] > 0.0:
757
+ Nmax = self.S2n_N[ind]
758
+ self.drip_S2n_Z = Z
759
+ self.drip_S2n_N = Nmax
760
+ #
761
+ #print('drip_S2n_Z',self.drip_S2n_Z)
762
+ #print('drip_S2n_N',self.drip_S2n_N)
737
763
  #
738
764
  if nuda.env.verb: print("Exit drip_S2n()")
739
765
  #
740
766
  return self
741
767
  #
742
768
  #
743
- def drip_S2p(self, Nmin = 1, Nmax = 95 ):
769
+ def drip_S2p(self ):
744
770
  """
745
771
  Method which find the drip-line nuclei from S2p (proton side).
746
772
 
747
- :param Nmin: Fix the minimum neutron number for the search of the proton drip line.
748
- :type Nmin: int, optional. Default: 1.
749
- :param Nmax: Fix the maximum neutron number for the search of the proton drip line.
750
- :type Nmax: int, optional. Default: 95.
773
+ :param Nref: Fix the charge for the search of isotones.
774
+ :type Nref: int, optional. Default: 50.
751
775
 
752
776
  **Attributes:**
753
777
  """
754
778
  #
755
779
  if nuda.env.verb: print("Enter drip_S2p()")
756
780
  #
757
- if Nmin > Nmax:
758
- print('setup_be_theo: In drip_S2p attribute function of setup_be_theo.py:')
759
- print('setup_be_theo: Bad definition of Nmin and Nmax')
760
- print('setup_be_theo: It is expected that Nmin<=Nmax')
761
- print('setup_be_theo: Nmin,Nmax:',Nmin,Nmax)
762
- print('setup_be_theo: exit')
763
- exit()
781
+ #print('Nref:',self.Nref)
782
+ #print('self.nucZ:',self.nucZ)
783
+ #print('self.nucN:',self.nucN)
784
+ #
785
+ if self.Nref not in self.nucN:
786
+ print('setup_be_theo: In drip_S2p attribute function of setup_be_theo.py:')
787
+ print('setup_be_theo: Nref is not in self.nucN')
788
+ print('setup_be_theo: Nref:',self.Nref)
789
+ print('setup_be_theo: self.nucN:',self.nucN)
790
+ print('setup_be_theo: exit')
791
+ exit()
764
792
  #
765
793
  if not any(self.S2p_N):
766
794
  print('setup_be_theo: In drip_S2p attribute function of setup_be_theo.py:')
@@ -771,26 +799,19 @@ class setupBETheo():
771
799
  self.drip_S2p_Z = []
772
800
  self.drip_S2p_N = []
773
801
  #
802
+ Zmax = 0
774
803
  for ind,N in enumerate(self.S2p_N):
775
804
  #
776
- if N > Nmax :
777
- break
778
- if N < Nmin :
779
- continue
780
- #
781
- Zmax = 0
782
- #
783
- for ind2,N2 in enumerate(self.S2p_N):
784
- if N2 == N and self.S2p_Z[ind2] > Zmax and self.S2p[ind2] > 0.0:
785
- Zmax = self.S2p_Z[ind2]
786
- self.drip_S2p_N.append( N )
787
- self.drip_S2p_Z.append( Zmax )
805
+ if self.S2p_Z[ind] > Zmax and self.S2p_E[ind] > 0.0:
806
+ Zmax = self.S2p_Z[ind]
807
+ self.drip_S2p_N = N
808
+ self.drip_S2p_Z = Zmax
788
809
  #
789
810
  if nuda.env.verb: print("Exit drip_S2p()")
790
811
  #
791
812
  return self
792
813
  #
793
- def D3n( self, Zref = 50 ):
814
+ def D3n( self ):
794
815
  """
795
816
  Compute the three-points odd-even mass staggering (D3n)
796
817
  D3n = (-)**N * ( 2*E(Z,N)-E(Z,N+1)-E(Z,N-1) ) / 2
@@ -798,11 +819,11 @@ class setupBETheo():
798
819
  #
799
820
  if nuda.env.verb: print("Enter D3n()")
800
821
  #
801
- if Zref < 0:
822
+ if self.Zref < 0:
802
823
  print('setup_be_theo: In D3n attribute function of setup_be_theo.py:')
803
824
  print('setup_be_theo: Bad definition of Zref')
804
825
  print('setup_be_theo: It is expected that Zref>=0')
805
- print('setup_be_theo: Zref:',Zref)
826
+ print('setup_be_theo: Zref:',self.Zref)
806
827
  print('setup_be_theo: exit')
807
828
  exit()
808
829
  #
@@ -820,17 +841,17 @@ class setupBETheo():
820
841
  #
821
842
  for ind,Z in enumerate(self.nucZ):
822
843
  #
823
- if Z == Zref and self.nucN[ind] == N:
844
+ if Z == self.Zref and self.nucN[ind] == N:
824
845
  indN = ind
825
846
  flagN = True
826
847
  if N % 2:
827
848
  sign = -1.0 # odd
828
849
  else:
829
850
  sign = 1.0 # even
830
- if Z == Zref and self.nucN[ind] == N-1:
851
+ if Z == self.Zref and self.nucN[ind] == N-1:
831
852
  indNm1 = ind
832
853
  flagNm1 = True
833
- if Z == Zref and self.nucN[ind] == N+1:
854
+ if Z == self.Zref and self.nucN[ind] == N+1:
834
855
  indNp1 = ind
835
856
  flagNp1 = True
836
857
  #
@@ -850,7 +871,7 @@ class setupBETheo():
850
871
  #
851
872
  return self
852
873
  #
853
- def D3p( self, Nref = 50 ):
874
+ def D3p( self ):
854
875
  """
855
876
  Compute the three-points odd-even mass staggering (D3n)
856
877
  D3p = (-)**Z * ( 2*E(Z,N)-E(Z+1,N)-E(Z-1,N) ) / 2
@@ -858,11 +879,11 @@ class setupBETheo():
858
879
  #
859
880
  if nuda.env.verb: print("Enter D3p()")
860
881
  #
861
- if Nref < 0:
882
+ if self.Nref < 0:
862
883
  print('setup_be_theo: In D3p attribute function of setup_be_theo.py:')
863
884
  print('setup_be_theo: Bad definition of Nref')
864
885
  print('setup_be_theo: It is expected that Nref>=0')
865
- print('setup_be_theo: Nref:',Nref)
886
+ print('setup_be_theo: Nref:',self.Nref)
866
887
  print('setup_be_theo: exit')
867
888
  exit()
868
889
  #
@@ -880,17 +901,17 @@ class setupBETheo():
880
901
  #
881
902
  for ind,N in enumerate(self.nucN):
882
903
  #
883
- if N == Nref and self.nucZ[ind] == Z:
904
+ if N == self.Nref and self.nucZ[ind] == Z:
884
905
  indZ = ind
885
906
  flagZ = True
886
907
  if Z % 2:
887
908
  sign = -1.0 # odd
888
909
  else:
889
910
  sign = 1.0 # even
890
- if N == Nref and self.nucZ[ind] == Z-1:
911
+ if N == self.Nref and self.nucZ[ind] == Z-1:
891
912
  indZm1 = ind
892
913
  flagZm1 = True
893
- if N == Nref and self.nucZ[ind] == Z+1:
914
+ if N == self.Nref and self.nucZ[ind] == Z+1:
894
915
  indZp1 = ind
895
916
  flagZp1 = True
896
917
  #
@@ -910,148 +931,6 @@ class setupBETheo():
910
931
  #
911
932
  return self
912
933
  #
913
- def D3n_old( self, Zmin = 1, Zmax = 95 ):
914
- """
915
- Compute the three-points odd-even mass staggering (D3n)
916
- D3N = (-)**N * ( 2*E(Z,N)-E(Z,N+1)-E(Z,N-1) ) / 2
917
- """
918
- #
919
- if nuda.env.verb: print("Enter D3n()")
920
- #
921
- if Zmin > Zmax:
922
- print('setup_be_theo: In D3n attribute function of setup_be_exp.py:')
923
- print('setup_be_theo: Bad definition of Zmin and Zmax')
924
- print('setup_be_theo: It is expected that Zmin<=Zmax')
925
- print('setup_be_theo: Zmin,Zmax:',Zmin,Zmax)
926
- print('setup_be_theo: exit')
927
- exit()
928
- #
929
- D3n_Z_even = []
930
- D3n_Z_odd = []
931
- D3n_N_even = []
932
- D3n_N_odd = []
933
- D3n_even = []
934
- D3n_odd = []
935
- #
936
- for ind,Z in enumerate(self.nucZ):
937
- #
938
- if Z > Zmax :
939
- continue
940
- if Z < Zmin :
941
- continue
942
- #
943
- N = self.nucN[ind]
944
- #
945
- if N % 2 == 0:
946
- sign = 1.0 #even
947
- else:
948
- sign = -1.0 # odd
949
- #
950
- #print('For Z,N:',Z,N)
951
- #
952
- # search index for Z,N+2
953
- #
954
- flag_find1 = 0
955
- for ind1,Z1 in enumerate(self.nucZ):
956
- if Z == Z1 and self.nucN[ind1] == N+1:
957
- flag_find1 = 1
958
- break
959
- flag_find2 = 0
960
- for ind2,Z2 in enumerate(self.nucZ):
961
- if Z == Z2 and self.nucN[ind2] == N-1:
962
- flag_find2 = 1
963
- break
964
- if flag_find1*flag_find2 == 1:
965
- if sign > 0: #even
966
- D3n_Z_even.append( self.nucZ[ind] )
967
- D3n_N_even.append( self.nucN[ind] )
968
- D3n_even.append( sign/2.0*( -2*self.nucBE[ind] + self.nucBE[ind1] + self.nucBE[ind2] ) )
969
- else:
970
- D3n_Z_odd.append( self.nucZ[ind] )
971
- D3n_N_odd.append( self.nucN[ind] )
972
- D3n_odd.append( sign/2.0*( -2*self.nucBE[ind] + self.nucBE[ind1] + self.nucBE[ind2] ) )
973
- self.D3n_N_even = np.array( D3n_N_even, dtype = int )
974
- self.D3n_N_odd = np.array( D3n_N_odd, dtype = int )
975
- self.D3n_Z_even = np.array( D3n_Z_even, dtype = int )
976
- self.D3n_Z_odd = np.array( D3n_Z_odd, dtype = int )
977
- self.D3n_even = np.array( D3n_even, dtype = float )
978
- self.D3n_odd = np.array( D3n_odd, dtype = float )
979
- #
980
- if nuda.env.verb: print("Exit D3n()")
981
- #
982
- return self
983
- #
984
- def D3p_old( self, Nmin = 1, Nmax = 95 ):
985
- """
986
- Compute the three-points odd-even mass staggering (D3p)
987
- D3Z = (-)**Z * ( 2*E(Z,N)-E(Z+1,N)-E(Z-1,N) ) / 2
988
- """
989
- #
990
- if nuda.env.verb: print("Enter D3p()")
991
- #
992
- if Nmin > Nmax:
993
- print('setup_be_theo: In D3p attribute function of setup_be_exp.py:')
994
- print('setup_be_theo: Bad definition of Nmin and Nmax')
995
- print('setup_be_theo: It is expected that Nmin<=Nmax')
996
- print('setup_be_theo: Nmin,Nmax:',Nmin,Nmax)
997
- print('setup_be_theo: exit')
998
- exit()
999
- #
1000
- D3p_Z_even = []
1001
- D3p_Z_odd = []
1002
- D3p_N_even = []
1003
- D3p_N_odd = []
1004
- D3p_even = []
1005
- D3p_odd = []
1006
- #
1007
- for ind,N in enumerate(self.nucN):
1008
- #
1009
- if N > Nmax :
1010
- continue
1011
- if N < Nmin :
1012
- continue
1013
- #
1014
- Z = self.nucZ[ind]
1015
- #
1016
- if Z % 2 == 0:
1017
- sign = 1.0 #even
1018
- else:
1019
- sign = -1.0 # odd
1020
- #
1021
- #print('For Z,N:',Z,N)
1022
- #
1023
- # search index for Z,N+2
1024
- #
1025
- flag_find1 = 0
1026
- for ind1,N1 in enumerate(self.nucN):
1027
- if N == N1 and self.nucZ[ind1] == Z+1:
1028
- flag_find1 = 1
1029
- break
1030
- flag_find2 = 0
1031
- for ind2,N2 in enumerate(self.nucN):
1032
- if N == N2 and self.nucZ[ind2] == Z-1:
1033
- flag_find2 = 1
1034
- break
1035
- if flag_find1*flag_find2 == 1:
1036
- if sign > 0: #even
1037
- D3p_Z_even.append( self.nucZ[ind] )
1038
- D3p_N_even.append( self.nucN[ind] )
1039
- D3p_even.append( sign/2.0*( -2*self.nucBE[ind] + self.nucBE[ind1] + self.nucBE[ind2] ) )
1040
- else:
1041
- D3p_Z_odd.append( self.nucZ[ind] )
1042
- D3p_N_odd.append( self.nucN[ind] )
1043
- D3p_odd.append( sign/2.0*( -2*self.nucBE[ind] + self.nucBE[ind1] + self.nucBE[ind2] ) )
1044
- self.D3p_N_even = np.array( D3p_N_even, dtype = int )
1045
- self.D3p_N_odd = np.array( D3p_N_odd, dtype = int )
1046
- self.D3p_Z_even = np.array( D3p_Z_even, dtype = int )
1047
- self.D3p_Z_odd = np.array( D3p_Z_odd, dtype = int )
1048
- self.D3p_even = np.array( D3p_even, dtype = float )
1049
- self.D3p_odd = np.array( D3p_odd, dtype = float )
1050
- #
1051
- if nuda.env.verb: print("Exit D3p()")
1052
- #
1053
- return self
1054
- #
1055
934
  def diff(self, table, Zref = 50 ):
1056
935
  """
1057
936
  Method calculates the difference between a given mass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nucleardatapy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: A toolkit for nuclear data processing and meta-analyses.
5
5
  Author: Jerome Margueron, Sudhanva Lalit, Mariana Dutra, Guilherme Grams, Rohit Kumar
6
6
  License: Attribution-NonCommercial-NoDerivatives 4.0 International
@@ -481,7 +481,7 @@ nucleardatapy/fig/eos_setupAM_asy_nuc_fig.py,sha256=9dSNz8J6F3EXw5sPX6q4IhE1VZJQ
481
481
  nucleardatapy/fig/eos_setupAM_asy_tot_fig.py,sha256=eQNiCwaMxR-mVi2_4co8KXZeRPOgUOhbO7KSWxSL0zE,13350
482
482
  nucleardatapy/fig/eos_setupAM_fig.py,sha256=XDV1npzXhVwz844biS8AajLraxIqbV2TXhqiuugwKpI,23217
483
483
  nucleardatapy/fig/eos_setupCC_fig.py,sha256=P0p93Y-C3LLz4Fyt_1CGA9l7x8N8wHLWV_RBkyYWehY,10725
484
- nucleardatapy/fig/hnuc_setupChart_fig.py,sha256=xt94AadDRra0HuDV_w90yrFRt9I2X2Z7T_ks4sOmLI0,2001
484
+ nucleardatapy/fig/hnuc_setupChart_fig.py,sha256=r_64gf1YbWZfwxOJEEUkNQ9QP-fZKRhUXBJIJJ2c4Ac,2053
485
485
  nucleardatapy/fig/hnuc_setupRE1LExp_fig.py,sha256=yLxcNSvsX8eYWrIbL3a-k1mr4Syh-OB9op51F6vg7ZA,1797
486
486
  nucleardatapy/fig/matter_all_fig.py,sha256=XXSPSClty6VzdwB4yILsrAx3zbLvfi5D2HEZfeTTqEE,50458
487
487
  nucleardatapy/fig/matter_setupCheck_fig.py,sha256=t0Sr7yFuYs9yZUKTWZn232F-0P4swrw0fBPTtIwt9ww,4799
@@ -498,7 +498,7 @@ nucleardatapy/fig/matter_setupMicro_gap_fig.py,sha256=dwqoe4xqOKb-EQutrTXPTn336i
498
498
  nucleardatapy/fig/matter_setupNEPStats_fig.py,sha256=A216kp3DIDhSMr51oDwBEP1VUYBedmHXyC7CKduKHbI,3928
499
499
  nucleardatapy/fig/matter_setupPhenoEsym_fig.py,sha256=iz59IbwnunGYXN2dr_isuGuKQoC3-fElxt7kAKeSZHg,8242
500
500
  nucleardatapy/fig/matter_setupPheno_fig.py,sha256=mrQ7dd_4JBNdl-SOLyzKShPp1h7UfDVtHkCcSAqCLYc,16832
501
- nucleardatapy/fig/nuc_setupBEExp_chart_fig.py,sha256=Lp_aABqapGU9XLfoaVlEyNlayrWgwvqNmQ-fuurn608,10293
501
+ nucleardatapy/fig/nuc_setupBEExp_chart_fig.py,sha256=qwUweYPu7SctSeBPnmo1RMkZGWKSnUrorba-bRNpNsU,10895
502
502
  nucleardatapy/fig/nuc_setupBEExp_fig.py,sha256=dorX8Q94Kvn6JP79gpE4Hn5EpHWlZIJywljUIxvBTN8,9947
503
503
  nucleardatapy/fig/nuc_setupBETheo_fig.py,sha256=PaQPsbvnhv-LYVi8dcLoDGJHYmDqTdbslLKCeHQ2vsM,12918
504
504
  nucleardatapy/fig/nuc_setupISGMRExp_fig.py,sha256=NqN6LF22_cpZhnIGGAZ2U2738yXKvPLeBJBfPGexKVU,1778
@@ -515,7 +515,7 @@ nucleardatapy/matter/setup_check.py,sha256=DnJQr47hg-VKwp12XtV2PnHl_rxoNZCXhgLMi
515
515
  nucleardatapy/matter/setup_ffg.py,sha256=A5fYLzN1ASjbOix-n3WqmtJRuYu47waJLOvGgMdiYhg,17604
516
516
  nucleardatapy/matter/setup_hic.py,sha256=Lehk4oCSYtxAMetWdaa8MFsGtK3Vbly3Vdztje2-HvI,17231
517
517
  nucleardatapy/matter/setup_micro.py,sha256=M0h4bgDbO4XgxiUpoN9fp-OUbvB4JIG6ZXrjmfWY7fk,115181
518
- nucleardatapy/matter/setup_micro_band.py,sha256=_4RuOgyHEwT3tGPUKUqqGto5h_YCntGZh7g7kvmp5Gc,10067
518
+ nucleardatapy/matter/setup_micro_band.py,sha256=qfv-Bhq-idnxUDjviS6t8dUZXBjLoW1uBXlbiQzY1R4,10071
519
519
  nucleardatapy/matter/setup_micro_effmass.py,sha256=v_u3XIIri-5KiBrTh2H4Ht861lEWtXwU5NYOb0l5WD8,12274
520
520
  nucleardatapy/matter/setup_micro_esym.py,sha256=p_xXeOgdU3adxRbeU27Q3tid3od2yt52I_bm0fsIzss,14713
521
521
  nucleardatapy/matter/setup_micro_gap.py,sha256=avJpLMnW3OfDzH30qPUj5qTqWTgZYamwv1QtLJWzJlU,20910
@@ -527,19 +527,19 @@ nucleardatapy/matter/setup_pheno.py,sha256=UPu5MM_XJkF2UKMv7H4tyAok-QERTpbhwkGCS
527
527
  nucleardatapy/matter/setup_pheno_esym.py,sha256=jp_1nRu7Nb8JP6lQJXXupVEMPK8ce6COnANSwcxlf6U,10711
528
528
  nucleardatapy/nuc/__init__.py,sha256=83hkFkuS66poI0IYebcyKVthdkvUZINfyGrJ9LaTRlc,441
529
529
  nucleardatapy/nuc/setup_be_exp.py,sha256=96-lmoq_1RvyXSBjdzEfxfo2GtaOSzHXPQEqyC8lWNk,43551
530
- nucleardatapy/nuc/setup_be_theo.py,sha256=7JknCUJ3jbBDOxFpbXiDby89JFXu-XcJbLI-nZjfSh8,53646
530
+ nucleardatapy/nuc/setup_be_theo.py,sha256=L_bXQ5qTQf89NYfCnR8zQ1q-7eC4O0WVBwg_e9kJX3o,49065
531
531
  nucleardatapy/nuc/setup_isgmr_exp.py,sha256=5v8wQVCUt-JhKQZudrhTWFm6zGN5DvKWEtgWTKV2f64,21981
532
532
  nucleardatapy/nuc/setup_rch_exp.py,sha256=VAsmKeshP1wj81iLJfziCmudkaC3l_7fTJgX-egRJmI,6470
533
533
  nucleardatapy/nuc/setup_rch_theo.py,sha256=UsLaZH6Ii49oH4KjArJ7WGOApFNZ8lxYBFqZoe6z8ic,10322
534
534
  nucleardatapy/nuc/setup_rnp_exp.py,sha256=69tpLKQBDU4JiANqeRoiE9gwCb8mOm9ajyNnfCM55W0,36596
535
535
  nucleardatapy/nuc/setup_rnp_theo.py,sha256=YaNR8ts4Y8jmtoqFwlwTyx9ytCqzdw4I8_UQk8wxUsc,9863
536
- nucleardatapy-1.0.1.dist-info/licenses/LICENSE,sha256=doPNswWMPXbkhplb9cnZLwJoqqS72pJPhkSib8kIF08,19122
536
+ nucleardatapy-1.0.2.dist-info/licenses/LICENSE,sha256=doPNswWMPXbkhplb9cnZLwJoqqS72pJPhkSib8kIF08,19122
537
537
  tests/__init__.py,sha256=o-blBq1tTx47wR_SJk-iPHRAdpPvcnPAWPJ-h7QwoD8,392
538
538
  tests/test_astro_setupMasses.py,sha256=vUa9QskmdDGHIBKYo1H8F3_8Lql_p_26ZI-euvJLebQ,371
539
539
  tests/test_corr_setupKsatQsat.py,sha256=lxq0L8_OLABPalOysURYIxdtUOvMx37eCEeLNwO6XQQ,751
540
540
  tests/test_matter_setupFFGNuc.py,sha256=Rpgla2VtzfYakkXB3dOTfYu5vT48PbBLUcv82n2aEKY,471
541
541
  tests/test_matter_setupMicro.py,sha256=HR58vkcuxnMiYC7C_d0fXzaiOp7avHlran07UqC81OM,753
542
- nucleardatapy-1.0.1.dist-info/METADATA,sha256=0N-8CKbKI7m8xAVS-vv92UZxgxULkS7XRFTblb2qbp8,27127
543
- nucleardatapy-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
544
- nucleardatapy-1.0.1.dist-info/top_level.txt,sha256=5s1lKIlvQZYDk8g2VaCb4-hP4omORMMiUw2n7gozg-4,20
545
- nucleardatapy-1.0.1.dist-info/RECORD,,
542
+ nucleardatapy-1.0.2.dist-info/METADATA,sha256=5WmFnZppQaIsLimfVpo8aes2tX8FT0ByQWXTsl7Lw1U,27127
543
+ nucleardatapy-1.0.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
544
+ nucleardatapy-1.0.2.dist-info/top_level.txt,sha256=5s1lKIlvQZYDk8g2VaCb4-hP4omORMMiUw2n7gozg-4,20
545
+ nucleardatapy-1.0.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5