Tristate
Tri-state buffer. See https://en.wikipedia.org/wiki/Three-state_logic
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "tristate",
r_off: 1e10,
r_on: 0.1,
map_output_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "tristate" | The type of this object, always the string literal "tristate" | |
r_off | number | 1e10 | Off Resistance (ohms) |
r_on | number | 0.1 | On Resistance (ohms) |
map_output_to_terminal_uid | string | The terminal ID corresponding to the output. |
Was this page helpful?