Periodic¶
- class hoomd.trigger.Periodic(period, phase)¶
Bases:
Trigger
Trigger periodically.
Periodic
evaluatesTrue
everyperiod
steps offset by phase:return (t - phase) % period == 0
Example:
trigger = hoomd.trigger.Periodic(period=100)
Members inherited from
Trigger
:- __call__()¶
Evaluate the trigger.
Read more...
- compute()¶
Evaluate the trigger.
Read more...
Members defined in
Periodic
:- __eq__(other)¶
Test for equivalent triggers.
- __str__()¶
Human readable representation of the trigger as a string.