@@ -13,15 +13,15 @@ class Liquid(Base):
1313 Parameters
1414 ----------
1515 rho: float, optional
16- The density (kg/m^3) the material tends to maintain in equilibrium (i.e., the “ rest” or undeformed state). Default is 1000.
16+ The density (kg/m^3) the material tends to maintain in equilibrium (i.e., the " rest" or undeformed state). Default is 1000.
1717 stiffness: float, optional
1818 State stiffness (N/m^2). A material constant controlling how pressure increases with compression. Default is 50000.0.
1919 exponent: float, optional
2020 State exponent. Controls how nonlinearly pressure scales with density. Larger values mean stiffer response to compression. Default is 7.0.
2121 mu: float, optional
2222 The viscosity of the liquid. A measure of the internal friction of the fluid or material. Default is 0.005
2323 gamma: float, optional
24- The surface tension of the liquid. Controls how strongly the material “ clumps” together at boundaries. Default is 0.01
24+ The surface tension of the liquid. Controls how strongly the material " clumps" together at boundaries. Default is 0.01
2525 sampler: str, optional
2626 Particle sampler ('pbs', 'regular', 'random'). Note that 'pbs' is only supported on Linux for now. Defaults to
2727 'pbs' on supported platforms, 'random' otherwise.
@@ -49,7 +49,7 @@ def __init__(
4949
5050 @property
5151 def rho (self ):
52- """The density (kg/m^3) the material tends to maintain in equilibrium (i.e., the “ rest” or undeformed state)."""
52+ """The density (kg/m^3) the material tends to maintain in equilibrium (i.e., the " rest" or undeformed state)."""
5353 return self ._rho
5454
5555 @property
@@ -69,5 +69,5 @@ def mu(self):
6969
7070 @property
7171 def gamma (self ):
72- """The surface tension of the liquid. Controls how strongly the material “ clumps” together at boundaries."""
72+ """The surface tension of the liquid. Controls how strongly the material " clumps" together at boundaries."""
7373 return self ._gamma
0 commit comments