Thermistor
This object describes how to configure a thermistor (NTC-type) primitive. See https://en.wikipedia.org/wiki/Thermistor
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "thermistor",
r25: 10000,
r50: 3605,
map_input_to_terminal_uid: "your-terminal-element-uid",
map_output_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "thermistor" | The type of this object, always the string literal "thermistor" | |
r25 | number | 10000 | R at 25C |
r50 | number | 3605 | R at 50C |
map_input_to_terminal_uid | string | The terminal ID corresponding to the resistor's input. | |
map_output_to_terminal_uid | string | The terminal ID corresponding to the resistor's output. |
Was this page helpful?