You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An ILL colleague (Apostolos Vagias, working now in D22) would like to have the model described in an old paper: "ANGULAR DISTRIBUTION OF RAYLEIGH SCATTERING FROM RANDOMLY BRANCHED POLYCONDENSATES", by K. KAJIWARA, W. BURCHARD* and M. GORDON, Br. Polym. J., 1970, Vol. 2, 110-115). I guess this one can be hard to find, so I added it below.
He also provided the C code used in Sasfit (also attached), which seems very simple (a single line formula?)
Do we know which of the equations in the reference we are trying to implement? Equation 21a seems like the one but it does not seem to match the c code from SASfit. Does anybody know?
My algebra above was incorrect. Redoing with wolframalpha:
solve w = (1+a)/(1 - a(f-1)) for a
=> a = (w-1)/((f-1)*w+1)
substitute a into numerator and denominator terms, then simplify
num = 1 + a * (f-1)/(1 - a * (f-1))*t
den = 1 - a / (1 + a)*t
simplify (w-1)/((f-1)*w+1) * (f-1)/(1 - (w-1)/((f-1)*w+1) * (f-1))
=> ((f - 1) (w - 1))/f
simplify (w-1)/((f-1)*w+1) / (1 + (w-1)/((f-1)*w+1))
=> (w - 1)/(f w)
multiply numerator and denominator by (f w)
The following reproduces curve (b) from Fig 4a,4b in the paper:
An ILL colleague (Apostolos Vagias, working now in D22) would like to have the model described in an old paper: "ANGULAR DISTRIBUTION OF RAYLEIGH SCATTERING FROM RANDOMLY BRANCHED POLYCONDENSATES", by K. KAJIWARA, W. BURCHARD* and M. GORDON, Br. Polym. J., 1970, Vol. 2, 110-115). I guess this one can be hard to find, so I added it below.
He also provided the C code used in Sasfit (also attached), which seems very simple (a single line formula?)
pi.4980020203.pdf
sasfit_sq_p_ra.c.txt
The text was updated successfully, but these errors were encountered: