1 | """ |
---|
2 | This module intends to compute the neutron scattering length density of molecule |
---|
3 | @author: Gervaise B. Alina |
---|
4 | """ |
---|
5 | |
---|
6 | import periodictable |
---|
7 | from periodictable import formula |
---|
8 | from periodictable.xsf import xray_energy, xray_sld_from_atoms |
---|
9 | from periodictable.constants import avogadro_number |
---|
10 | import periodictable.nsf |
---|
11 | neutron_sld_from_atoms= periodictable.nsf.neutron_sld_from_atoms |
---|
12 | |
---|
13 | class SldCalculator(object): |
---|
14 | """ |
---|
15 | compute neutron SLD and related parameters |
---|
16 | """ |
---|
17 | def __init__(self): |
---|
18 | self.wavelength = 6.0 |
---|
19 | self.coherence = 0.0 |
---|
20 | self.absorption = 0.0 |
---|
21 | self.incoherence = 0.0 |
---|
22 | self.sld_formula = None |
---|
23 | self.volume = 0.0 |
---|
24 | self.density = None |
---|
25 | self.length= 0.0 |
---|
26 | |
---|
27 | def set_value(self, user_formula, density, wavelength=6.0): |
---|
28 | """ |
---|
29 | Store values of density and wavelength into the calculator |
---|
30 | and compute the volume |
---|
31 | """ |
---|
32 | self.wavelength = wavelength |
---|
33 | self.density = float(density) |
---|
34 | self.sld_formula = formula(str(user_formula), density=self.density) |
---|
35 | |
---|
36 | if self.density == 0: |
---|
37 | raise ZeroDivisionError("integer division or modulo\ |
---|
38 | by zero for density") |
---|
39 | return |
---|
40 | self.volume = (self.sld_formula.mass / self.density) / avogadro_number\ |
---|
41 | *1.0e24 |
---|
42 | |
---|
43 | |
---|
44 | def calculate_xray_sld(self, element): |
---|
45 | """ |
---|
46 | Get an element and compute the corresponding SLD for a given formula |
---|
47 | @param element: elementis a string of existing atom |
---|
48 | """ |
---|
49 | myformula = formula(str(element)) |
---|
50 | if len(myformula.atoms) != 1: |
---|
51 | return |
---|
52 | element = myformula.atoms.keys()[0] |
---|
53 | energy = xray_energy(element.K_alpha) |
---|
54 | atom = self.sld_formula.atoms |
---|
55 | atom_reel, atom_im = xray_sld_from_atoms(atom, |
---|
56 | density= self.density, |
---|
57 | energy= energy) |
---|
58 | return atom_reel, atom_im |
---|
59 | |
---|
60 | |
---|
61 | def calculate_neutron_sld(self): |
---|
62 | """ |
---|
63 | Compute the neutron SLD for a given molecule |
---|
64 | @return absorp: absorption |
---|
65 | @return coh: coherence cross section |
---|
66 | @return inc: incoherence cross section |
---|
67 | """ |
---|
68 | if self.density == 0: |
---|
69 | raise ZeroDivisionError("integer division or modulo\ |
---|
70 | by zero for density") |
---|
71 | return |
---|
72 | atom = self.sld_formula.atoms |
---|
73 | coh, absorp, inc = neutron_sld_from_atoms(atom, self.density, |
---|
74 | self.wavelength) |
---|
75 | #Don't know if value is return in cm or cm^(-1).assume return in cm |
---|
76 | # to match result of neutron inc of Alan calculator |
---|
77 | self.incoherence = inc * 1/10 |
---|
78 | #Doesn't match result of Alan calculator for absorption factor of 2 |
---|
79 | #multiplication of 100 is going around |
---|
80 | self.absorption = absorp * 2 * 100 |
---|
81 | self.coherence = coh |
---|
82 | return self.coherence, self.absorption, self.incoherence |
---|
83 | |
---|
84 | |
---|
85 | def calculate_length(self): |
---|
86 | """ |
---|
87 | Compute the neutron 1/e length |
---|
88 | """ |
---|
89 | self.length = (self.coherence + self.absorption +\ |
---|
90 | self.incoherence) / self.volume |
---|
91 | return self.length |
---|
92 | |
---|
93 | |
---|
94 | def calculate_coherence_im(self): |
---|
95 | """ |
---|
96 | Compute imaginary part of the absorption |
---|
97 | """ |
---|
98 | atom = self.sld_formula.atoms |
---|
99 | #im: imaginary part of neutron SLD |
---|
100 | im = 0 |
---|
101 | for el, count in atom.iteritems(): |
---|
102 | if el.neutron.b_c_i is not None: |
---|
103 | im += el.neutron.b_c_i * count |
---|
104 | |
---|
105 | if self.volume != 0: |
---|
106 | im = im/self.volume |
---|
107 | else: |
---|
108 | raise ZeroDivisionError("integer division or modulo\ |
---|
109 | by zero for volume") |
---|
110 | return im |
---|