Schmitt
Schmitt trigger. See https://en.wikipedia.org/wiki/Schmitt_trigger
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "schmitt",
slewRate: 0.5,
lowerTrigger: 1.66,
upperTrigger: 3.33,
logicOnLevel: 5,
logicOffLevel: 0,
map_input_to_terminal_uid: "your-terminal-element-uid",
map_output_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "schmitt" | The type of this object, always the string literal "schmitt" | |
slewRate | number | 0.5 | Slew Rate (V/ns) |
lowerTrigger | number | 1.66 | Lower threshold (V) |
upperTrigger | number | 3.33 | Upper threshold (V) |
logicOnLevel | number | 5 | High Voltage (V) |
logicOffLevel | number | 0 | Low Voltage (V) |
map_input_to_terminal_uid | string | The terminal ID corresponding to the input. | |
map_output_to_terminal_uid | string | The terminal ID corresponding to the output. |
Was this page helpful?