bin.nucleus_example Namespace Reference

Variables

 o16 = nucleus('o16')
 INITIALIZING #. More...
 
 ne15 = nucleus('ne15')
 
 he4 = nucleus('he4')
 
 mass = o16.get_A()
 PROPERTIES #. More...
 
 atomic_number = o16.get_Z()
 
 neutron_number = o16.get_N()
 
 name = o16.get_name()
 
list nuclei_list = [ne15,he4,o16]
 SORTING #. More...
 
 sort_Z = sorted(nuclei_list)
 
 sort_Z_names = map(lambda x: x.get_name(),sort_Z)
 
 sort_A = sorted(nuclei_list)
 
 sort_A_names = map(lambda x: x.get_name(),sort_A)
 

Variable Documentation

◆ atomic_number

bin.nucleus_example.atomic_number = o16.get_Z()

Definition at line 31 of file nucleus_example.py.

◆ he4

bin.nucleus_example.he4 = nucleus('he4')

Definition at line 21 of file nucleus_example.py.

◆ mass

bin.nucleus_example.mass = o16.get_A()

PROPERTIES #.

Definition at line 30 of file nucleus_example.py.

◆ name

bin.nucleus_example.name = o16.get_name()

Definition at line 33 of file nucleus_example.py.

◆ ne15

bin.nucleus_example.ne15 = nucleus('ne15')

Definition at line 20 of file nucleus_example.py.

◆ neutron_number

bin.nucleus_example.neutron_number = o16.get_N()

Definition at line 32 of file nucleus_example.py.

◆ nuclei_list

list bin.nucleus_example.nuclei_list = [ne15,he4,o16]

SORTING #.

Definition at line 50 of file nucleus_example.py.

◆ o16

bin.nucleus_example.o16 = nucleus('o16')

INITIALIZING #.

Definition at line 19 of file nucleus_example.py.

◆ sort_A

bin.nucleus_example.sort_A = sorted(nuclei_list)

Definition at line 62 of file nucleus_example.py.

◆ sort_A_names

bin.nucleus_example.sort_A_names = map(lambda x: x.get_name(),sort_A)

Definition at line 63 of file nucleus_example.py.

◆ sort_Z

bin.nucleus_example.sort_Z = sorted(nuclei_list)

Definition at line 53 of file nucleus_example.py.

◆ sort_Z_names

bin.nucleus_example.sort_Z_names = map(lambda x: x.get_name(),sort_Z)

Definition at line 54 of file nucleus_example.py.