Op-amp
The object that describes how to configure an op-amp primitive.
Example
flux.simulationModel = {
type: "opAmp",
gain: 100000,
max_out: 15,
min_out: -15,
map_input_one_to_terminal_uid: "input1-element-uid",
map_input_two_to_terminal_uid: "input2element-uid",
map_output_to_terminal_uid: "output-element-uid",
}
Fields
Name | Type | Description |
---|---|---|
type | Readonly<string> | The type of this object, represented by the string literal "opAmp". |
gain | number | The amplification factor of the op-amp. |
max_output | number | (V) The maximum operating voltage. |
min_output | number | (V) The minimum operating voltage. |
map_input_one_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the op-amp's first input |
map_input_two_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the op-amp's second input. |
map_output_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the op-amp's output. |
Was this page helpful?