Changeset 642046e in sasmodels
- Timestamp:
- Sep 25, 2018 10:08:49 AM (6 years ago)
- Branches:
- ticket_1156
- Children:
- 2a39ca4
- Parents:
- 0b906ea
- Location:
- sasmodels/models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/bcc_paracrystal.c
r6530963 r642046e 59 59 bcc_volume_fraction(double radius, double lattice_spacing) 60 60 { 61 return 2.0*sphere_volume( sqrt(0.75)*radius/lattice_spacing);61 return 2.0*sphere_volume(radius/lattice_spacing); 62 62 } 63 63 -
sasmodels/models/fcc_paracrystal.c
r6530963 r642046e 31 31 fcc_volume_fraction(double radius, double lattice_spacing) 32 32 { 33 return 4.0*sphere_volume( M_SQRT1_2*radius/lattice_spacing);33 return 4.0*sphere_volume(radius/lattice_spacing); 34 34 } 35 35
Note: See TracChangeset
for help on using the changeset viewer.