[34c3020] | 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 | ############################################################################## |
---|
[34c3020] | 16 | |
---|
| 17 | |
---|
[79ac6f8] | 18 | """ |
---|
| 19 | Provide functionality for a C extension model |
---|
[34c3020] | 20 | |
---|
[79ac6f8] | 21 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
| 22 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\lamellar.h |
---|
| 23 | AND RE-RUN THE GENERATOR SCRIPT |
---|
[34c3020] | 24 | |
---|
| 25 | """ |
---|
| 26 | |
---|
| 27 | from sans.models.BaseComponent import BaseComponent |
---|
[92df66f8] | 28 | from sans.models.sans_extension.c_models import CLamellarModel |
---|
[34c3020] | 29 | import copy |
---|
[96656e3] | 30 | |
---|
| 31 | def create_LamellarModel(): |
---|
| 32 | obj = LamellarModel() |
---|
| 33 | #CLamellarModel.__init__(obj) is called by LamellarModel constructor |
---|
| 34 | return obj |
---|
| 35 | |
---|
[34c3020] | 36 | class LamellarModel(CLamellarModel, BaseComponent): |
---|
[79ac6f8] | 37 | """ |
---|
| 38 | Class that evaluates a LamellarModel model. |
---|
| 39 | This file was auto-generated from ..\c_extensions\lamellar.h. |
---|
| 40 | Refer to that file and the structure it contains |
---|
| 41 | for details of the model. |
---|
| 42 | List of default parameters: |
---|
[34c3020] | 43 | scale = 1.0 |
---|
[975ec8e] | 44 | bi_thick = 50.0 [A] |
---|
[92df66f8] | 45 | sld_bi = 1e-06 [1/A^(2)] |
---|
| 46 | sld_sol = 6.3e-06 [1/A^(2)] |
---|
[34c3020] | 47 | background = 0.0 [1/cm] |
---|
| 48 | |
---|
| 49 | """ |
---|
| 50 | |
---|
| 51 | def __init__(self): |
---|
| 52 | """ Initialization """ |
---|
| 53 | |
---|
| 54 | # Initialize BaseComponent first, then sphere |
---|
| 55 | BaseComponent.__init__(self) |
---|
[96656e3] | 56 | #apply(CLamellarModel.__init__, (self,)) |
---|
[34c3020] | 57 | CLamellarModel.__init__(self) |
---|
| 58 | |
---|
| 59 | ## Name of the model |
---|
| 60 | self.name = "LamellarModel" |
---|
| 61 | ## Model description |
---|
[b4679de] | 62 | self.description ="""[Dilute Lamellar Form Factor](from a lyotropic lamellar phase) |
---|
| 63 | I(q)= 2*pi*P(q)/(delta *q^(2)), where |
---|
[975ec8e] | 64 | P(q)=2*(contrast/q)^(2)*(1-cos(q*delta))^(2)) |
---|
| 65 | bi_thick = bilayer thickness |
---|
| 66 | sld_bi = SLD of bilayer |
---|
| 67 | sld_sol = SLD of solvent |
---|
| 68 | background = Incoherent background |
---|
| 69 | scale = scale factor |
---|
| 70 | """ |
---|
[34c3020] | 71 | |
---|
[fe9c19b4] | 72 | ## Parameter details [units, min, max] |
---|
[34c3020] | 73 | self.details = {} |
---|
| 74 | self.details['scale'] = ['', None, None] |
---|
[975ec8e] | 75 | self.details['bi_thick'] = ['[A]', None, None] |
---|
[27972c1d] | 76 | self.details['sld_bi'] = ['[1/A^(2)]', None, None] |
---|
| 77 | self.details['sld_sol'] = ['[1/A^(2)]', None, None] |
---|
[34c3020] | 78 | self.details['background'] = ['[1/cm]', None, None] |
---|
| 79 | |
---|
[fe9c19b4] | 80 | ## fittable parameters |
---|
[b4679de] | 81 | self.fixed=[] |
---|
[34c3020] | 82 | |
---|
[35aface] | 83 | ## non-fittable parameters |
---|
[96656e3] | 84 | self.non_fittable = [] |
---|
[35aface] | 85 | |
---|
[34c3020] | 86 | ## parameters with orientation |
---|
[96656e3] | 87 | self.orientation_params = [] |
---|
[c7a7e1b] | 88 | |
---|
| 89 | def __setstate__(self, state): |
---|
| 90 | """ |
---|
| 91 | restore the state of a model from pickle |
---|
| 92 | """ |
---|
| 93 | self.__dict__, self.params, self.dispersion = state |
---|
| 94 | |
---|
[96656e3] | 95 | def __reduce_ex__(self, proto): |
---|
[79ac6f8] | 96 | """ |
---|
[96656e3] | 97 | Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of |
---|
| 98 | c model. |
---|
[79ac6f8] | 99 | """ |
---|
[c7a7e1b] | 100 | state = (self.__dict__, self.params, self.dispersion) |
---|
| 101 | return (create_LamellarModel,tuple(), state, None, None) |
---|
[fe9c19b4] | 102 | |
---|
[96656e3] | 103 | def clone(self): |
---|
| 104 | """ Return a identical copy of self """ |
---|
| 105 | return self._clone(LamellarModel()) |
---|
[fe9c19b4] | 106 | |
---|
[34c3020] | 107 | |
---|
[79ac6f8] | 108 | def run(self, x=0.0): |
---|
| 109 | """ |
---|
| 110 | Evaluate the model |
---|
| 111 | |
---|
| 112 | :param x: input q, or [q,phi] |
---|
| 113 | |
---|
| 114 | :return: scattering function P(q) |
---|
| 115 | |
---|
[34c3020] | 116 | """ |
---|
| 117 | |
---|
| 118 | return CLamellarModel.run(self, x) |
---|
| 119 | |
---|
[79ac6f8] | 120 | def runXY(self, x=0.0): |
---|
| 121 | """ |
---|
| 122 | Evaluate the model in cartesian coordinates |
---|
| 123 | |
---|
| 124 | :param x: input q, or [qx, qy] |
---|
| 125 | |
---|
| 126 | :return: scattering function P(q) |
---|
| 127 | |
---|
[34c3020] | 128 | """ |
---|
| 129 | |
---|
| 130 | return CLamellarModel.runXY(self, x) |
---|
| 131 | |
---|
[79ac6f8] | 132 | def evalDistribution(self, x=[]): |
---|
| 133 | """ |
---|
| 134 | Evaluate the model in cartesian coordinates |
---|
| 135 | |
---|
| 136 | :param x: input q[], or [qx[], qy[]] |
---|
| 137 | |
---|
| 138 | :return: scattering function P(q[]) |
---|
| 139 | |
---|
[9bd69098] | 140 | """ |
---|
[f9a1279] | 141 | return CLamellarModel.evalDistribution(self, x) |
---|
[9bd69098] | 142 | |
---|
[5eb9154] | 143 | def calculate_ER(self): |
---|
[79ac6f8] | 144 | """ |
---|
| 145 | Calculate the effective radius for P(q)*S(q) |
---|
| 146 | |
---|
| 147 | :return: the value of the effective radius |
---|
| 148 | |
---|
[5eb9154] | 149 | """ |
---|
| 150 | return CLamellarModel.calculate_ER(self) |
---|
| 151 | |
---|
[34c3020] | 152 | def set_dispersion(self, parameter, dispersion): |
---|
| 153 | """ |
---|
[79ac6f8] | 154 | Set the dispersion object for a model parameter |
---|
| 155 | |
---|
| 156 | :param parameter: name of the parameter [string] |
---|
| 157 | :param dispersion: dispersion object of type DispersionModel |
---|
| 158 | |
---|
[34c3020] | 159 | """ |
---|
| 160 | return CLamellarModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 161 | |
---|
| 162 | |
---|
| 163 | # End of file |
---|