CosineChannel¶
- class hoomd.mpcd.geometry.CosineChannel(amplitude, repeat_length, separation, no_slip=True)¶
Bases:
Geometry
Serpentine (sinusoidal) channel.
- Parameters:
CosineChannel
models a fluid confined in \(y\) between two walls described by a sinusoidal profile with equations\[y(x) = A \cos\left(\frac{2 \pi x}{L}\right) \pm H\]where \(A\) is the
amplitude
, \(L\) is therepeat_length
, and \(2H\) is theseparation
.Example:
channel = hoomd.mpcd.geometry.CosineChannel( amplitude=2.0, separation=4.0, repeat_length=10.0 ) stream = hoomd.mpcd.stream.BounceBack(period=1, geometry=channel) simulation.operations.integrator.streaming_method = stream
Members inherited from
Geometry
:- no_slip¶
Plates have a no-slip boundary condition when True.
Read more...
Members defined in
CosineChannel
: