Changeset 463eb76e in sasview for sansmodels/src/sans/models/c_extensions/libmultifunc
- Timestamp:
- Jul 25, 2011 3:43:34 PM (13 years ago)
- 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:
- bc7bc839
- Parents:
- 38155f7
- Location:
- sansmodels/src/sans/models/c_extensions/libmultifunc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansmodels/src/sans/models/c_extensions/libmultifunc/libfunc.c
r8c8cb05 r463eb76e 1 // by jcho 1 2 #include <math.h> 2 3 #include "libmultifunc/libfunc.h" … … 19 20 20 21 // Used in pearl nec model 21 //integral of sin(x)/x up to namx term nmax>10 looks fine. 22 double Si(double x, int nmax ) 22 // Sine integral function: approximated within 1%!!! 23 // integral of sin(x)/x up to namx term nmax=6 looks the best. 24 double Si(double x) 23 25 { 24 26 int i; 27 int nmax=6; 25 28 double out; 26 29 long double power; 27 if (x > 5.0){ 28 double pi = 4.0*atan(1.0); 29 return pi/2.0; 30 double pi = 4.0*atan(1.0); 31 if (x >= pi*6.2/4.0){ 32 33 double out_sin = 0.0; 34 double out_cos = 0.0; 35 out = pi/2.0; 36 for (i=0; i<nmax-2; i+=1){ 37 out_cos += pow(-1.0, i) * (double)factorial(2*i) / pow(x, 2*i+1); 38 out_sin += pow(-1.0, i) * (double)factorial(2*i+1) / pow(x, 2*i+2); 39 } 40 out -= cos(x) * out_cos; 41 out -= sin(x) * out_sin; 42 return out; 30 43 } 31 44 out = 0.0; … … 43 56 } 44 57 45 double sin _x(double x)58 double sinc(double x) 46 59 { 47 60 if (x==0){ -
sansmodels/src/sans/models/c_extensions/libmultifunc/libfunc.h
r8c8cb05 r463eb76e 4 4 int factorial(int i); 5 5 6 double Si(double x , int nmax);6 double Si(double x); 7 7 8 double sin _x(double x);8 double sinc(double x); 9 9 10 10 #endif
Note: See TracChangeset
for help on using the changeset viewer.