[1bbf2ac] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
[79ac6f8] | 3 | ############################################################################## |
---|
| 4 | # This software was developed by the University of Tennessee as part of the |
---|
| 5 | # Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 6 | # project funded by the US National Science Foundation. |
---|
| 7 | # |
---|
| 8 | # If you use DANSE applications to do scientific research that leads to |
---|
| 9 | # publication, we ask that you acknowledge the use of the software with the |
---|
| 10 | # following sentence: |
---|
| 11 | # |
---|
| 12 | # "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 13 | # |
---|
| 14 | # copyright 2008, University of Tennessee |
---|
| 15 | ############################################################################## |
---|
[1bbf2ac] | 16 | |
---|
| 17 | |
---|
[79ac6f8] | 18 | """ |
---|
| 19 | Provide functionality for a C extension model |
---|
[1bbf2ac] | 20 | |
---|
[79ac6f8] | 21 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
| 22 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\HayterMSA.h |
---|
| 23 | AND RE-RUN THE GENERATOR SCRIPT |
---|
[1bbf2ac] | 24 | |
---|
| 25 | """ |
---|
| 26 | |
---|
| 27 | from sans.models.BaseComponent import BaseComponent |
---|
| 28 | from sans_extension.c_models import CHayterMSAStructure |
---|
| 29 | import copy |
---|
| 30 | |
---|
| 31 | class HayterMSAStructure(CHayterMSAStructure, BaseComponent): |
---|
[79ac6f8] | 32 | """ |
---|
| 33 | Class that evaluates a HayterMSAStructure model. |
---|
| 34 | This file was auto-generated from ..\c_extensions\HayterMSA.h. |
---|
| 35 | Refer to that file and the structure it contains |
---|
| 36 | for details of the model. |
---|
| 37 | List of default parameters: |
---|
[5eb9154] | 38 | effect_radius = 20.75 [A] |
---|
[1bbf2ac] | 39 | charge = 19.0 |
---|
| 40 | volfraction = 0.0192 |
---|
[0824909] | 41 | temperature = 318.16 [K] |
---|
| 42 | saltconc = 0.0 [M] |
---|
[1bbf2ac] | 43 | dielectconst = 71.08 |
---|
| 44 | |
---|
| 45 | """ |
---|
| 46 | |
---|
| 47 | def __init__(self): |
---|
| 48 | """ Initialization """ |
---|
| 49 | |
---|
| 50 | # Initialize BaseComponent first, then sphere |
---|
| 51 | BaseComponent.__init__(self) |
---|
| 52 | CHayterMSAStructure.__init__(self) |
---|
| 53 | |
---|
| 54 | ## Name of the model |
---|
| 55 | self.name = "HayterMSAStructure" |
---|
| 56 | ## Model description |
---|
[1ed3834] | 57 | self.description ="""To calculate the structure factor (the Fourier transform of the |
---|
| 58 | pair correlation function g(r)) for a system of |
---|
| 59 | charged, spheroidal objects in a dielectric |
---|
| 60 | medium. |
---|
| 61 | When combined with an appropriate form |
---|
| 62 | factor, this allows for inclusion of |
---|
| 63 | the interparticle interference effects |
---|
| 64 | due to screened coulomb repulsion between |
---|
| 65 | charged particles. |
---|
| 66 | (Note: charge > 0 required.) |
---|
[1bbf2ac] | 67 | |
---|
| 68 | Ref: JP Hansen and JB Hayter, Molecular |
---|
| 69 | Physics 46, 651-656 (1982). |
---|
| 70 | """ |
---|
| 71 | |
---|
[fe9c19b4] | 72 | ## Parameter details [units, min, max] |
---|
[1bbf2ac] | 73 | self.details = {} |
---|
[5eb9154] | 74 | self.details['effect_radius'] = ['[A]', None, None] |
---|
[1bbf2ac] | 75 | self.details['charge'] = ['', None, None] |
---|
| 76 | self.details['volfraction'] = ['', None, None] |
---|
[0824909] | 77 | self.details['temperature'] = ['[K]', None, None] |
---|
| 78 | self.details['saltconc'] = ['[M]', None, None] |
---|
[1bbf2ac] | 79 | self.details['dielectconst'] = ['', None, None] |
---|
| 80 | |
---|
[fe9c19b4] | 81 | ## fittable parameters |
---|
[5eb9154] | 82 | self.fixed=['effect_radius.width'] |
---|
[0824909] | 83 | |
---|
[35aface] | 84 | ## non-fittable parameters |
---|
| 85 | self.non_fittable=[] |
---|
| 86 | |
---|
[0824909] | 87 | ## parameters with orientation |
---|
| 88 | self.orientation_params =[] |
---|
[1bbf2ac] | 89 | |
---|
| 90 | def clone(self): |
---|
| 91 | """ Return a identical copy of self """ |
---|
| 92 | return self._clone(HayterMSAStructure()) |
---|
[fe9c19b4] | 93 | |
---|
| 94 | def __getstate__(self): |
---|
[79ac6f8] | 95 | """ |
---|
| 96 | return object state for pickling and copying |
---|
| 97 | """ |
---|
[fe9c19b4] | 98 | model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} |
---|
| 99 | |
---|
| 100 | return self.__dict__, model_state |
---|
| 101 | |
---|
| 102 | def __setstate__(self, state): |
---|
[79ac6f8] | 103 | """ |
---|
| 104 | create object from pickled state |
---|
| 105 | |
---|
| 106 | :param state: the state of the current model |
---|
| 107 | |
---|
| 108 | """ |
---|
[fe9c19b4] | 109 | |
---|
| 110 | self.__dict__, model_state = state |
---|
| 111 | self.params = model_state['params'] |
---|
| 112 | self.dispersion = model_state['dispersion'] |
---|
| 113 | self.log = model_state['log'] |
---|
| 114 | |
---|
[1bbf2ac] | 115 | |
---|
[79ac6f8] | 116 | def run(self, x=0.0): |
---|
| 117 | """ |
---|
| 118 | Evaluate the model |
---|
| 119 | |
---|
| 120 | :param x: input q, or [q,phi] |
---|
| 121 | |
---|
| 122 | :return: scattering function P(q) |
---|
| 123 | |
---|
[1bbf2ac] | 124 | """ |
---|
| 125 | |
---|
| 126 | return CHayterMSAStructure.run(self, x) |
---|
| 127 | |
---|
[79ac6f8] | 128 | def runXY(self, x=0.0): |
---|
| 129 | """ |
---|
| 130 | Evaluate the model in cartesian coordinates |
---|
| 131 | |
---|
| 132 | :param x: input q, or [qx, qy] |
---|
| 133 | |
---|
| 134 | :return: scattering function P(q) |
---|
| 135 | |
---|
[1bbf2ac] | 136 | """ |
---|
| 137 | |
---|
| 138 | return CHayterMSAStructure.runXY(self, x) |
---|
| 139 | |
---|
[79ac6f8] | 140 | def evalDistribution(self, x=[]): |
---|
| 141 | """ |
---|
| 142 | Evaluate the model in cartesian coordinates |
---|
| 143 | |
---|
| 144 | :param x: input q[], or [qx[], qy[]] |
---|
| 145 | |
---|
| 146 | :return: scattering function P(q[]) |
---|
| 147 | |
---|
[9bd69098] | 148 | """ |
---|
[f9a1279] | 149 | return CHayterMSAStructure.evalDistribution(self, x) |
---|
[9bd69098] | 150 | |
---|
[5eb9154] | 151 | def calculate_ER(self): |
---|
[79ac6f8] | 152 | """ |
---|
| 153 | Calculate the effective radius for P(q)*S(q) |
---|
| 154 | |
---|
| 155 | :return: the value of the effective radius |
---|
| 156 | |
---|
[5eb9154] | 157 | """ |
---|
| 158 | return CHayterMSAStructure.calculate_ER(self) |
---|
| 159 | |
---|
[1bbf2ac] | 160 | def set_dispersion(self, parameter, dispersion): |
---|
| 161 | """ |
---|
[79ac6f8] | 162 | Set the dispersion object for a model parameter |
---|
| 163 | |
---|
| 164 | :param parameter: name of the parameter [string] |
---|
| 165 | :param dispersion: dispersion object of type DispersionModel |
---|
| 166 | |
---|
[1bbf2ac] | 167 | """ |
---|
| 168 | return CHayterMSAStructure.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 169 | |
---|
| 170 | |
---|
| 171 | # End of file |
---|