Opened 7 years ago
Last modified 7 years ago
#975 new defect
bcc_paracrystal and fcc_paracrystal scaling, docs for all paracrystal
Reported by: | richardh | Owned by: | richardh |
---|---|---|---|
Priority: | minor | Milestone: | SasView 4.3.0 |
Component: | sasmodels | Keywords: | |
Cc: | Work Package: | SasView Bug Fixing |
Description
Following some discussions with Prof. Gustavo González Gaitano, University of Navarra, Spain and some test calculations.
Given that the docs are already modified for the new "jitter" integrals (in progress??) which branch(es) should I use to fix the below please?
It now seems clear that:
1) The docs for all three paracrystal models talk about "nearest neighbour distances", but these should be lattice spacings, as previously noted in #805
2) the Vlattice corrections mentioned in the docs seem wrong for BCC and FCC, and need to be changed there and in the code in order for fits to have the correct scale parameters.
I think that latticescale should be as for SC, but with the multiplicities in for FCC and BCC thus -
Instead of:
FCC const double s1 = dnn*sqrt(2.0);
const double latticescale = 4.0*sphere_volume(radius/s1);
BCC const double s1 = dnn/sqrt(0.75);
const double latticescale = 2.0*sphere_volume(radius/s1);
SC NB: 4/3 pi r3 / dnn3 = 4/3 pi(r/dnn)3
const double latticeScale = sphere_volume(radius/dnn);
answer *= sphere_form(q, radius, sphere_sld, solvent_sld)*latticeScale;
we need for FCC and BCC:
FCC
const double latticescale = 4.0*sphere_volume(radius/dnn);
BCC
const double latticescale = 2.0*sphere_volume(radius/dnn);
and in some other places for IQxy
Change History (2)
comment:1 Changed 7 years ago by butler
comment:2 Changed 7 years ago by butler
- Milestone changed from SasView 4.2.0 to SasView 4.3.0
These are model docs right? In that case you can do it directly in master for now (those are in sasmodels not SasView)