Changeset 3c102d4 in sasview for sansmodels/src/sans/models/c_models


Ignore:
Timestamp:
Aug 18, 2009 1:56:49 PM (15 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
eddff027
Parents:
7d11b81
Message:

fixed problems in 2d

Location:
sansmodels/src/sans/models/c_models
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/c_models/CTriaxialEllipsoidModel.cpp

    r975ec8e r3c102d4  
    8888        PyDict_SetItemString(self->params,"scale",Py_BuildValue("d",1.000000)); 
    8989        PyDict_SetItemString(self->params,"axis_psi",Py_BuildValue("d",0.000000)); 
    90         PyDict_SetItemString(self->params,"axis_theta",Py_BuildValue("d",0.000000)); 
    91         PyDict_SetItemString(self->params,"semi_axisA",Py_BuildValue("d",100.000000)); 
    92         PyDict_SetItemString(self->params,"semi_axisB",Py_BuildValue("d",35.000000)); 
     90        PyDict_SetItemString(self->params,"axis_theta",Py_BuildValue("d",1.000000)); 
     91        PyDict_SetItemString(self->params,"semi_axisA",Py_BuildValue("d",35.000000)); 
     92        PyDict_SetItemString(self->params,"semi_axisB",Py_BuildValue("d",100.000000)); 
    9393        PyDict_SetItemString(self->params,"semi_axisC",Py_BuildValue("d",400.000000)); 
    94         PyDict_SetItemString(self->params,"axis_phi",Py_BuildValue("d",0.000000)); 
     94        PyDict_SetItemString(self->params,"axis_phi",Py_BuildValue("d",1.000000)); 
    9595        PyDict_SetItemString(self->params,"background",Py_BuildValue("d",0.000000)); 
    9696        PyDict_SetItemString(self->params,"contrast",Py_BuildValue("d",0.000005)); 
  • sansmodels/src/sans/models/c_models/parallelepiped.cpp

    r975ec8e r3c102d4  
    3535ParallelepipedModel :: ParallelepipedModel() { 
    3636        scale      = Parameter(1.0); 
    37         short_edgeA     = Parameter(35.0, true); 
    38         short_edgeA.set_max(1.0); 
    39         longer_edgeB     = Parameter(75.0, true); 
    40         longer_edgeB.set_min(1.0); 
    41         longuest_edgeC     = Parameter(400.0, true); 
    42         longuest_edgeC.set_min(1.0); 
     37        short_a     = Parameter(35.0, true); 
     38        short_a.set_max(1.0); 
     39        long_b     = Parameter(75.0, true); 
     40        long_b.set_min(1.0); 
     41        longer_c     = Parameter(400.0, true); 
     42        longer_c.set_min(1.0); 
    4343        contrast   = Parameter(53.e-7); 
    4444        background = Parameter(0.0); 
     
    6060        // Add the background after averaging 
    6161        dp[0] = scale(); 
    62         dp[1] = short_edgeA(); 
    63         dp[2] = longer_edgeB(); 
    64         dp[3] = longuest_edgeC(); 
     62        dp[1] = short_a(); 
     63        dp[2] = long_b(); 
     64        dp[3] = longer_c(); 
    6565        dp[4] = contrast(); 
    6666        dp[5] = 0.0; 
    6767 
    6868        // Get the dispersion points for the short_edgeA 
    69         vector<WeightPoint> weights_short_edgeA; 
    70         short_edgeA.get_weights(weights_short_edgeA); 
     69        vector<WeightPoint> weights_short_a; 
     70        short_a.get_weights(weights_short_a); 
    7171 
    7272        // Get the dispersion points for the longer_edgeB 
    73         vector<WeightPoint> weights_longer_edgeB; 
    74         longer_edgeB.get_weights(weights_longer_edgeB); 
     73        vector<WeightPoint> weights_long_b; 
     74        long_b.get_weights(weights_long_b); 
    7575 
    7676        // Get the dispersion points for the longuest_edgeC 
    77         vector<WeightPoint> weights_longuest_edgeC; 
    78         longuest_edgeC.get_weights(weights_longuest_edgeC); 
     77        vector<WeightPoint> weights_longer_c; 
     78        longer_c.get_weights(weights_longer_c); 
    7979 
    8080 
     
    8585 
    8686        // Loop over short_edgeA weight points 
    87         for(int i=0; i< (int)weights_short_edgeA.size(); i++) { 
    88                 dp[1] = weights_short_edgeA[i].value; 
     87        for(int i=0; i< (int)weights_short_a.size(); i++) { 
     88                dp[1] = weights_short_a[i].value; 
    8989 
    9090                // Loop over longer_edgeB weight points 
    91                 for(int j=0; j< (int)weights_longer_edgeB.size(); j++) { 
    92                         dp[2] = weights_longer_edgeB[i].value; 
     91                for(int j=0; j< (int)weights_long_b.size(); j++) { 
     92                        dp[2] = weights_long_b[j].value; 
    9393 
    9494                        // Loop over longuest_edgeC weight points 
    95                         for(int k=0; k< (int)weights_longuest_edgeC.size(); k++) { 
    96                                 dp[3] = weights_longuest_edgeC[j].value; 
    97  
    98                                 sum += weights_short_edgeA[i].weight * weights_longer_edgeB[j].weight 
    99                                         * weights_longuest_edgeC[k].weight * Parallelepiped(dp, q); 
    100  
    101                                 norm += weights_short_edgeA[i].weight 
    102                                          * weights_longer_edgeB[j].weight * weights_longuest_edgeC[k].weight; 
     95                        for(int k=0; k< (int)weights_longer_c.size(); k++) { 
     96                                dp[3] = weights_longer_c[k].value; 
     97 
     98                                sum += weights_short_a[i].weight * weights_long_b[j].weight 
     99                                        * weights_longer_c[k].weight * Parallelepiped(dp, q); 
     100 
     101                                norm += weights_short_a[i].weight 
     102                                         * weights_long_b[j].weight * weights_longer_c[k].weight; 
    103103                        } 
    104104                } 
     
    116116        // Fill parameter array 
    117117        dp.scale      = scale(); 
    118         dp.short_edgeA   = short_edgeA(); 
    119         dp.longer_edgeB   = longer_edgeB(); 
    120         dp.longuest_edgeC  = longuest_edgeC(); 
     118        dp.short_a   = short_a(); 
     119        dp.long_b   = long_b(); 
     120        dp.longer_c  = longer_c(); 
    121121        dp.contrast   = contrast(); 
    122122        dp.background = 0.0; 
     
    128128 
    129129        // Get the dispersion points for the short_edgeA 
    130         vector<WeightPoint> weights_short_edgeA; 
    131         short_edgeA.get_weights(weights_short_edgeA); 
     130        vector<WeightPoint> weights_short_a; 
     131        short_a.get_weights(weights_short_a); 
    132132 
    133133        // Get the dispersion points for the longer_edgeB 
    134         vector<WeightPoint> weights_longer_edgeB; 
    135         longer_edgeB.get_weights(weights_longer_edgeB); 
     134        vector<WeightPoint> weights_long_b; 
     135        long_b.get_weights(weights_long_b); 
    136136 
    137137        // Get angular averaging for the longuest_edgeC 
    138         vector<WeightPoint> weights_longuest_edgeC; 
    139         longuest_edgeC.get_weights(weights_longuest_edgeC); 
     138        vector<WeightPoint> weights_longer_c; 
     139        longer_c.get_weights(weights_longer_c); 
    140140 
    141141        // Get angular averaging for theta 
     
    156156 
    157157        // Loop over radius weight points 
    158         for(int i=0; i< (int)weights_short_edgeA.size(); i++) { 
    159                 dp.short_edgeA = weights_short_edgeA[i].value; 
     158        for(int i=0; i< (int)weights_short_a.size(); i++) { 
     159                dp.short_a = weights_short_a[i].value; 
    160160 
    161161                // Loop over longer_edgeB weight points 
    162                 for(int j=0; j< (int)weights_longer_edgeB.size(); j++) { 
    163                         dp.longer_edgeB = weights_longer_edgeB[j].value; 
     162                for(int j=0; j< (int)weights_long_b.size(); j++) { 
     163                        dp.long_b = weights_long_b[j].value; 
    164164 
    165165                        // Average over longuest_edgeC distribution 
    166                         for(int k=0; k< (int)weights_longuest_edgeC.size(); k++) { 
    167                                 dp.longuest_edgeC = weights_longuest_edgeC[k].value; 
     166                        for(int k=0; k< (int)weights_longer_c.size(); k++) { 
     167                                dp.longer_c = weights_longer_c[k].value; 
    168168 
    169169                                // Average over theta distribution 
     
    179179                                                        dp.parallel_psi = weights_parallel_psi[n].value; 
    180180 
    181                                                         double _ptvalue = weights_short_edgeA[i].weight 
    182                                                                 * weights_longer_edgeB[j].weight 
    183                                                                 * weights_longuest_edgeC[k].weight 
     181                                                        double _ptvalue = weights_short_a[i].weight 
     182                                                                * weights_long_b[j].weight 
     183                                                                * weights_longer_c[k].weight 
    184184                                                                * weights_parallel_theta[l].weight 
    185185                                                                * weights_parallel_phi[m].weight 
     
    191191                                                        sum += _ptvalue; 
    192192 
    193                                                         norm += weights_short_edgeA[i].weight 
    194                                                                 * weights_longer_edgeB[j].weight 
    195                                                                 * weights_longuest_edgeC[k].weight 
     193                                                        norm += weights_short_a[i].weight 
     194                                                                * weights_long_b[j].weight 
     195                                                                * weights_longer_c[k].weight 
    196196                                                                * weights_parallel_theta[l].weight 
    197197                                                                * weights_parallel_phi[m].weight 
  • sansmodels/src/sans/models/c_models/triaxialellipsoid.cpp

    r975ec8e r3c102d4  
    3434TriaxialEllipsoidModel :: TriaxialEllipsoidModel() { 
    3535        scale      = Parameter(1.0); 
    36         semi_axisA     = Parameter(20.0, true); 
     36        semi_axisA     = Parameter(35.0, true); 
    3737        semi_axisA.set_min(0.0); 
    38         semi_axisB     = Parameter(20.0, true); 
     38        semi_axisB     = Parameter(100.0, true); 
    3939        semi_axisB.set_min(0.0); 
    4040        semi_axisC  = Parameter(400.0, true); 
     
    4242        contrast   = Parameter(5.3e-6); 
    4343        background = Parameter(0.0); 
    44         axis_theta  = Parameter(0.0, true); 
    45         axis_phi    = Parameter(0.0, true); 
     44        axis_theta  = Parameter(1.0, true); 
     45        axis_phi    = Parameter(1.0, true); 
    4646        axis_psi    = Parameter(0.0, true); 
    4747} 
     
    190190                                                                * weights_theta[l].weight 
    191191                                                                * weights_phi[m].weight 
    192                                                                 * weights_psi[m].weight; 
     192                                                                * weights_psi[n].weight; 
    193193                                                } 
    194194                                        } 
Note: See TracChangeset for help on using the changeset viewer.