Periodic¶
- class hoomd.trigger.Periodic(period, phase)¶
Bases:
TriggerTrigger periodically.
PeriodicevaluatesTrueeveryperiodsteps 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.