Changeset 473a9f1 in sasmodels


Ignore:
Timestamp:
Jan 11, 2017 5:31:27 AM (7 years ago)
Author:
wojciech
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
1e7b0db0
Parents:
fcb33e4
Message:

Changed function and files names in lib to comply with new standards

Location:
sasmodels/models/lib
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • sasmodels/models/lib/sas_3j1x_x.c

    rba32cdd r473a9f1  
    77* using double precision that are the source. 
    88*/ 
    9 double sph_j1c(double q); 
     9double sas_3j1x_x(double q); 
    1010 
    1111// The choice of the number of terms in the series and the cutoff value for 
     
    4444#endif 
    4545 
    46 double sph_j1c(double q) 
     46double sas_3j1x_x(double q) 
    4747{ 
    4848    if (q < SPH_J1C_CUTOFF) { 
  • sasmodels/models/lib/sas_J1.c

    rc8902ac r473a9f1  
    217217 
    218218//Finally J1c function that equals 2*J1(x)/x 
    219 double sas_J1c(double x); 
    220 double sas_J1c(double x) 
     219double sas_2J1x_x(double x); 
     220double sas_2J1x_x(double x) 
    221221{ 
    222222    return (x != 0.0 ) ? 2.0*sas_J1(x)/x : 1.0; 
  • sasmodels/models/lib/sas_Si.c

    rf719764 r473a9f1  
    11// integral of sin(x)/x Taylor series approximated to w/i 0.1% 
    2 double Si(double x); 
    3 double Si(double x) 
     2double sas_Si(double x); 
     3double sas_Si(double x) 
    44{ 
    55    if (x >= M_PI*6.2/4.0) { 
Note: See TracChangeset for help on using the changeset viewer.