Changeset 843 for sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha
- Timestamp:
- Mar 2, 2012 10:56:30 AM (11 years ago)
- Location:
- sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker/FFT_Fit_Cylinder.ipf
r798 r843 97 97 NVAR FFT_N = root:FFT_N 98 98 NVAR FFT_SolventSLD = root:FFT_SolventSLD 99 NVAR FFT_delRho = root:FFT_delRho //the SLD multiplier, should have been initialized to 1e-7 99 100 100 FFT_SolventSLD = trunc(sldSolv *1e6) //spits back an integer, maybe not correct101 FFT_SolventSLD = trunc(sldSolv/FFT_delRho) //spits back an integer, maybe not correct 101 102 102 103 // generate the matrix and erase it … … 110 111 // with the input parameters, build the structure 111 112 ctr = trunc(FFT_N/2) 112 fill = trunc(sldCyl *1e6)113 fill = trunc(sldCyl/FFT_delRho) 113 114 114 115 FillXCylinder(m,FFT_T,radius,ctr,ctr,ctr,length,fill) -
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker/FFT_Fit_Includes.ipf
r798 r843 5 5 #include "FFT_Fit_Sphere" 6 6 #include "FFT_Fit_Cylinder" 7 #include "FFT_Fit_MixedDumbbell" 7 8 8 9 //K. Rubinson -
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker/FFT_Fit_MixedDumbbell.ipf
r816 r843 97 97 NVAR FFT_N = root:FFT_N 98 98 NVAR FFT_SolventSLD = root:FFT_SolventSLD 99 100 FFT_SolventSLD = trunc(rhos*1e6) //spits back an integer, maybe not correct 99 NVAR FFT_delRho = root:FFT_delRho //the SLD multiplier, should have been initialized to 1e-7 100 101 102 FFT_SolventSLD = trunc(rhos/FFT_delRho) //spits back an integer, maybe not correct 101 103 102 104 // generate the matrix and erase it … … 110 112 // with the input parameters, build the structure 111 113 ctr = trunc(FFT_N/2) 112 fill1 = trunc(rho1 *1e6)113 fill2 = trunc(rho2 *1e6)114 fill1 = trunc(rho1/FFT_delRho) 115 fill2 = trunc(rho2/FFT_delRho) 114 116 115 117 FillSphereRadius(m,FFT_T,radius1,ctr,ctr,ctr,fill1) -
sans/Dev/trunk/NCNR_User_Procedures/Analysis/Alpha/Tinker/FFT_Fit_Sphere.ipf
r798 r843 96 96 NVAR FFT_N = root:FFT_N 97 97 NVAR FFT_SolventSLD = root:FFT_SolventSLD 98 NVAR FFT_delRho = root:FFT_delRho //the SLD multiplier, should have been initialized to 1e-7 98 99 99 FFT_SolventSLD = trunc(sldSolv *1e6) //spits back an integer, maybe not correct100 FFT_SolventSLD = trunc(sldSolv/FFT_delRho) //spits back an integer, maybe not correct 100 101 101 102 // generate the matrix and erase it … … 109 110 // with the input parameters, build the structure 110 111 ctr = trunc(FFT_N/2) 111 fill = trunc(sldSph *1e6)112 fill = trunc(sldSph/FFT_delRho) 112 113 113 114 err = FillSphereRadiusNoOverlap(m,grid,radius,ctr,ctr,ctr,fill)
Note: See TracChangeset
for help on using the changeset viewer.