nucleus_example.py File Reference

Go to the source code of this file.

Namespaces

 bin.nucleus_example
 

Variables

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