source: sasview/sansmodels/src/c_models/schulz.cpp @ 20d91bd

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 20d91bd was 20d91bd, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Refactor Schulz

  • Property mode set to 100644
File size: 2.5 KB
Line 
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
15#include <math.h>
16#include "parameters.hh"
17#include <stdio.h>
18using namespace std;
19#include "schulz.h"
20
21Schulz :: Schulz() {
22  scale  = Parameter(1.0, true);
23  sigma  = Parameter(1.0, true);
24  center = Parameter(0.0, true);
25}
26
27/**
28 * Function to evaluate 1D scattering function
29/**
30 * Function to evaluate 1D Schulz function.
31 * The function is normalized to the 'scale' parameter.
32 *
33 * f(x)=scale * math.pow(z+1, z+1)*math.pow((R), z)*
34 *          math.exp(-R*(z+1))/(center*gamma(z+1)
35 *    z= math.pow[(1/(sigma/center),2]-1
36 *    R= x/center
37 *
38 * @param q: q-value
39 * @return: function value
40 */
41double Schulz :: operator()(double q) {
42  double z = pow(center()/ sigma(), 2)-1;
43  double R= q/center();
44  double zz= z+1;
45  double expo;
46  expo = log(scale())+zz*log(zz)+z*log(R)-R*zz-log(center())-lgamma(zz);
47
48  return exp(expo);//scale * pow(zz,zz) * pow(R,z) * exp(-1*R*zz)/((center) * tgamma(zz)) ;
49}
50
51/**
52 * Function to evaluate 2D schulz function
53 * The function is normalized to the 'scale' parameter.
54 *
55 * f(x,y) = Schulz(x) * Schulz(y)
56 *
57 * where both Shulzs share the same parameters.
58 * @param q_x: value of Q along x
59 * @param q_y: value of Q along y
60 * @return: function value
61 */
62double Schulz :: operator()(double qx, double qy) {
63  return (*this).operator()(qx) * (*this).operator()(qy);
64}
65
66/**
67 * Function to evaluate 2D schulz function
68 * The function is normalized to the 'scale' parameter.
69 *
70 * f(x,y) = Schulz(x) * Schulz(y)
71 *
72 * where both Shulzs share the same parameters.
73 * @param pars: parameters of the cylinder
74 * @param q: q-value
75 * @param phi: angle phi
76 * @return: function value
77 */
78double Schulz :: evaluate_rphi(double q, double phi) {
79  double qx = q*cos(phi);
80  double qy = q*sin(phi);
81  return (*this).operator()(qx, qy);
82}
83/**
84 * Function to calculate effective radius
85 * @return: effective radius value
86 */
87double Schulz :: calculate_ER() {
88  //NOT implemented yet!!!
89  return 0.0;
90}
Note: See TracBrowser for help on using the repository browser.