[fca6936] | 1 | /** |
---|
| 2 | This software was developed by the University of Tennessee as part of the |
---|
| 3 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 4 | project funded by the US National Science Foundation. |
---|
| 5 | |
---|
| 6 | If you use DANSE applications to do scientific research that leads to |
---|
| 7 | publication, we ask that you acknowledge the use of the software with the |
---|
| 8 | following sentence: |
---|
| 9 | |
---|
| 10 | "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 11 | |
---|
| 12 | copyright 2008, University of Tennessee |
---|
| 13 | */ |
---|
| 14 | #ifndef MODEL_CLASS_H |
---|
| 15 | #define MODEL_CLASS_H |
---|
| 16 | |
---|
| 17 | #include <vector> |
---|
| 18 | #include "parameters.hh" |
---|
| 19 | extern "C" { |
---|
| 20 | #include "cylinder.h" |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | using namespace std; |
---|
| 24 | |
---|
[af03ddd] | 25 | class CylinderModel{ |
---|
[fca6936] | 26 | public: |
---|
| 27 | // Model parameters |
---|
| 28 | Parameter radius; |
---|
| 29 | Parameter scale; |
---|
| 30 | Parameter length; |
---|
| 31 | Parameter contrast; |
---|
| 32 | Parameter background; |
---|
| 33 | Parameter cyl_theta; |
---|
| 34 | Parameter cyl_phi; |
---|
| 35 | |
---|
| 36 | // Constructor |
---|
[af03ddd] | 37 | CylinderModel(); |
---|
[fca6936] | 38 | |
---|
| 39 | // Operators to get I(Q) |
---|
| 40 | double operator()(double q); |
---|
| 41 | double operator()(double qx, double qy); |
---|
| 42 | double evaluate_rphi(double q, double phi); |
---|
| 43 | }; |
---|
| 44 | |
---|
[0f5bc9f] | 45 | class SphereModel{ |
---|
| 46 | public: |
---|
| 47 | // Model parameters |
---|
| 48 | Parameter radius; |
---|
| 49 | Parameter scale; |
---|
| 50 | Parameter contrast; |
---|
| 51 | Parameter background; |
---|
| 52 | |
---|
| 53 | // Constructor |
---|
| 54 | SphereModel(); |
---|
| 55 | |
---|
| 56 | // Operators to get I(Q) |
---|
| 57 | double operator()(double q); |
---|
| 58 | double operator()(double qx, double qy); |
---|
| 59 | double evaluate_rphi(double q, double phi); |
---|
| 60 | }; |
---|
| 61 | |
---|
[25579e8] | 62 | class HardsphereStructure{ |
---|
| 63 | public: |
---|
| 64 | // Model parameters |
---|
| 65 | Parameter radius; |
---|
| 66 | Parameter volfraction; |
---|
| 67 | |
---|
| 68 | // Constructor |
---|
| 69 | HardsphereStructure(); |
---|
| 70 | |
---|
| 71 | // Operators to get I(Q) |
---|
| 72 | double operator()(double q); |
---|
| 73 | double operator()(double qx, double qy); |
---|
| 74 | double evaluate_rphi(double q, double phi); |
---|
| 75 | }; |
---|
| 76 | |
---|
| 77 | class StickyHSStructure{ |
---|
| 78 | public: |
---|
| 79 | // Model parameters |
---|
| 80 | Parameter radius; |
---|
| 81 | Parameter volfraction; |
---|
| 82 | Parameter perturb; |
---|
| 83 | Parameter stickiness; |
---|
| 84 | |
---|
| 85 | // Constructor |
---|
| 86 | StickyHSStructure(); |
---|
| 87 | |
---|
| 88 | // Operators to get I(Q) |
---|
| 89 | double operator()(double q); |
---|
| 90 | double operator()(double qx, double qy); |
---|
| 91 | double evaluate_rphi(double q, double phi); |
---|
| 92 | }; |
---|
| 93 | |
---|
| 94 | class SquareWellStructure{ |
---|
| 95 | public: |
---|
| 96 | // Model parameters |
---|
| 97 | Parameter radius; |
---|
| 98 | Parameter volfraction; |
---|
| 99 | Parameter welldepth; |
---|
| 100 | Parameter wellwidth; |
---|
| 101 | |
---|
| 102 | // Constructor |
---|
| 103 | SquareWellStructure(); |
---|
| 104 | |
---|
| 105 | // Operators to get I(Q) |
---|
| 106 | double operator()(double q); |
---|
| 107 | double operator()(double qx, double qy); |
---|
| 108 | double evaluate_rphi(double q, double phi); |
---|
| 109 | }; |
---|
| 110 | |
---|
| 111 | class HayterMSAStructure{ |
---|
| 112 | public: |
---|
| 113 | // Model parameters |
---|
| 114 | Parameter radius; |
---|
| 115 | Parameter charge; |
---|
| 116 | Parameter volfraction; |
---|
| 117 | Parameter temperature; |
---|
| 118 | Parameter saltconc; |
---|
| 119 | Parameter dielectconst; |
---|
[a0782f1] | 120 | |
---|
[25579e8] | 121 | // Constructor |
---|
| 122 | HayterMSAStructure(); |
---|
| 123 | |
---|
| 124 | // Operators to get I(Q) |
---|
| 125 | double operator()(double q); |
---|
| 126 | double operator()(double qx, double qy); |
---|
| 127 | double evaluate_rphi(double q, double phi); |
---|
| 128 | }; |
---|
| 129 | |
---|
[a0782f1] | 130 | class DiamEllipFunc{ |
---|
| 131 | public: |
---|
| 132 | // Model parameters |
---|
| 133 | Parameter radius_a; |
---|
| 134 | Parameter radius_b; |
---|
| 135 | |
---|
| 136 | // Constructor |
---|
| 137 | DiamEllipFunc(); |
---|
| 138 | |
---|
| 139 | // Operators to get I(Q) |
---|
| 140 | double operator()(double q); |
---|
| 141 | double operator()(double qx, double qy); |
---|
| 142 | double evaluate_rphi(double q, double phi); |
---|
| 143 | }; |
---|
| 144 | |
---|
| 145 | class DiamCylFunc{ |
---|
| 146 | public: |
---|
| 147 | // Model parameters |
---|
| 148 | Parameter radius; |
---|
| 149 | Parameter length; |
---|
| 150 | |
---|
| 151 | // Constructor |
---|
| 152 | DiamCylFunc(); |
---|
| 153 | |
---|
| 154 | // Operators to get I(Q) |
---|
| 155 | double operator()(double q); |
---|
| 156 | double operator()(double qx, double qy); |
---|
| 157 | double evaluate_rphi(double q, double phi); |
---|
| 158 | }; |
---|
| 159 | |
---|
[0f5bc9f] | 160 | class CoreShellModel{ |
---|
| 161 | public: |
---|
| 162 | // Model parameters |
---|
| 163 | Parameter radius; |
---|
| 164 | Parameter scale; |
---|
| 165 | Parameter thickness; |
---|
| 166 | Parameter core_sld; |
---|
| 167 | Parameter shell_sld; |
---|
| 168 | Parameter solvent_sld; |
---|
| 169 | Parameter background; |
---|
| 170 | |
---|
| 171 | // Constructor |
---|
| 172 | CoreShellModel(); |
---|
| 173 | |
---|
| 174 | // Operators to get I(Q) |
---|
| 175 | double operator()(double q); |
---|
| 176 | double operator()(double qx, double qy); |
---|
| 177 | double evaluate_rphi(double q, double phi); |
---|
| 178 | }; |
---|
| 179 | |
---|
| 180 | class CoreShellCylinderModel{ |
---|
| 181 | public: |
---|
| 182 | // Model parameters |
---|
| 183 | Parameter radius; |
---|
| 184 | Parameter scale; |
---|
| 185 | Parameter thickness; |
---|
| 186 | Parameter length; |
---|
| 187 | Parameter core_sld; |
---|
| 188 | Parameter shell_sld; |
---|
| 189 | Parameter solvent_sld; |
---|
| 190 | Parameter background; |
---|
| 191 | Parameter axis_theta; |
---|
| 192 | Parameter axis_phi; |
---|
| 193 | |
---|
| 194 | // Constructor |
---|
| 195 | CoreShellCylinderModel(); |
---|
| 196 | |
---|
| 197 | // Operators to get I(Q) |
---|
| 198 | double operator()(double q); |
---|
| 199 | double operator()(double qx, double qy); |
---|
| 200 | double evaluate_rphi(double q, double phi); |
---|
| 201 | }; |
---|
| 202 | |
---|
| 203 | class EllipsoidModel{ |
---|
| 204 | public: |
---|
| 205 | // Model parameters |
---|
| 206 | Parameter radius_a; |
---|
| 207 | Parameter scale; |
---|
| 208 | Parameter radius_b; |
---|
| 209 | Parameter contrast; |
---|
| 210 | Parameter background; |
---|
| 211 | Parameter axis_theta; |
---|
| 212 | Parameter axis_phi; |
---|
| 213 | |
---|
| 214 | // Constructor |
---|
| 215 | EllipsoidModel(); |
---|
| 216 | |
---|
| 217 | // Operators to get I(Q) |
---|
| 218 | double operator()(double q); |
---|
| 219 | double operator()(double qx, double qy); |
---|
| 220 | double evaluate_rphi(double q, double phi); |
---|
| 221 | }; |
---|
| 222 | |
---|
| 223 | class EllipticalCylinderModel{ |
---|
| 224 | public: |
---|
| 225 | // Model parameters |
---|
| 226 | Parameter r_minor; |
---|
| 227 | Parameter scale; |
---|
| 228 | Parameter r_ratio; |
---|
| 229 | Parameter length; |
---|
| 230 | Parameter contrast; |
---|
| 231 | Parameter background; |
---|
| 232 | Parameter cyl_theta; |
---|
| 233 | Parameter cyl_phi; |
---|
| 234 | Parameter cyl_psi; |
---|
| 235 | |
---|
| 236 | // Constructor |
---|
| 237 | EllipticalCylinderModel(); |
---|
| 238 | |
---|
| 239 | // Operators to get I(Q) |
---|
| 240 | double operator()(double q); |
---|
| 241 | double operator()(double qx, double qy); |
---|
| 242 | double evaluate_rphi(double q, double phi); |
---|
| 243 | }; |
---|
| 244 | |
---|
[fca6936] | 245 | #endif |
---|