TimeDelayRelay
This object describes how to configure a time-delay relay primitive. See https://en.wikipedia.org/wiki/Relay#Time-delay_relay
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "timeDelayRelay",
onDelay: 1,
offDelay: 0,
onResistance: 1,
offResistance: 10e6,
vinResistance: 10e3,
map_a_to_terminal_uid: "your-terminal-element-uid",
map_b_to_terminal_uid: "your-terminal-element-uid",
map_c_to_terminal_uid: "your-terminal-element-uid",
map_d_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "timeDelayRelay" | The type of this object, always the string literal "timeDelayRelay" | |
onDelay | number | 1 | On Delay (s) |
offDelay | number | 0 | Off Delay (s) |
onResistance | number | 1 | On Resistance (ohms) |
offResistance | number | 10e6 | Off Resistance (ohms) |
vinResistance | number | 10e3 | Vin Resistance (ohms) |
map_a_to_terminal_uid | string | The terminal IDs. | |
map_b_to_terminal_uid | string | ||
map_c_to_terminal_uid | string | ||
map_d_to_terminal_uid | string |
Was this page helpful?