@@ -267,7 +267,7 @@ def CylinderVol(R,args):
267267
268268 :param float R: diameter (A)
269269 :param array args: [float L]: length (A)
270- :returns float:volume (A^3)
270+ :returns float: volume (A^3)
271271 '''
272272 L = args [0 ]
273273 return np .pi * L * R ** 2
@@ -278,7 +278,7 @@ def CylinderDVol(L,args):
278278
279279 :param float: L half length (A)
280280 :param array args: [float D]: diameter (A)
281- :returns float:volume (A^3)
281+ :returns float: volume (A^3)
282282 '''
283283 D = args [0 ]
284284 return CylinderVol (D / 2. ,[2. * L ,])
@@ -289,7 +289,7 @@ def CylinderARVol(R,args):
289289
290290 :param float: R radius (A)
291291 :param array args: [float AR]: =L/D=L/2R aspect ratio
292- :returns float:volume
292+ :returns float: volume
293293 '''
294294 AR = args [0 ]
295295 return CylinderVol (R ,[2. * R * AR ,])
@@ -310,7 +310,7 @@ def UniRodVol(R,args):
310310
311311 :param float R: diameter (A)
312312 :param array args: [float L]: length (A)
313- :returns float:volume (A^3)
313+ :returns float: volume (A^3)
314314 '''
315315 L = args [0 ]
316316 return CylinderVol (R ,[L ,])
@@ -321,7 +321,7 @@ def UniRodARVol(R,args):
321321
322322 :param float R: diameter (A)
323323 :param array args: [float AR]: =L/D=L/2R aspect ratio
324- :returns float:volume (A^3)
324+ :returns float: volume (A^3)
325325 '''
326326 AR = args [0 ]
327327 return CylinderARVol (R ,[AR ,])
@@ -332,7 +332,7 @@ def UniDiskVol(R,args):
332332
333333 :param float R: diameter (A)
334334 :param array args: [float T]: thickness
335- :returns float:volume (A^3)
335+ :returns float: volume (A^3)
336336 '''
337337 T = args [0 ]
338338 return CylinderVol (R ,[T ,])
@@ -491,7 +491,7 @@ def HardSpheresSF(Q,args):
491491
492492 :param float Q: Q value array (A-1)
493493 :param array args: [float R, float VolFrac]: interparticle distance & volume fraction
494- :returns numpy array S(Q)
494+ :returns numpy array: S(Q)
495495 '''
496496
497497 R ,VolFr = args
@@ -522,7 +522,7 @@ def SquareWellSF(Q,args):
522522 :param array args: [float R, float VolFrac, float depth, float width]:
523523 interparticle distance, volume fraction (<0.08), well depth (e/kT<1.5kT),
524524 well width
525- :returns: numpy array S(Q)
525+ :returns: numpy array: S(Q)
526526 well depth > 0 attractive & values outside above limits nonphysical cf.
527527 Monte Carlo simulations
528528 '''
@@ -557,7 +557,7 @@ def StickyHardSpheresSF(Q,args):
557557
558558 :param float Q: Q value array (A-1)
559559 :param array args: [float R, float VolFrac]: sphere radius & volume fraction
560- :returns numpy array S(Q)
560+ :returns numpy array: S(Q)
561561 '''
562562 R ,VolFr ,epis ,sticky = args
563563 eta = VolFr / (1.0 - epis )/ (1.0 - epis )/ (1.0 - epis )
@@ -606,7 +606,7 @@ def InterPrecipitateSF(Q,args):
606606
607607 :param float Q: Q value array (A-1)
608608 :param array args: [float R, float VolFr]: "radius" & volume fraction
609- :returns numpy array S(Q)
609+ :returns numpy array: S(Q)
610610 '''
611611 R ,VolFr = args
612612 QV2 = Q ** 2 * VolFr ** 2
0 commit comments