Capacitor
The object that describes how to configure a capacitor simulation primitive.
Example
flux.simulationModel = {
type: "capacitor",
capacitance: 50,
map_input_to_terminal_uid: "element uid",
map_output_to_terminal_uid: "element uid",
}
Fields
Name | Type | Description |
---|---|---|
type | ReadOnly<string> | The type of this object, represented by the string literal "capacitor". |
capacitance | number | (F) The current that is required to flow through the capacitor in order to store energy at a rate of 1V/s. |
map_input_to_terminal_uid | ReadOnly<string> | The terminal ID corresponding to the capacitor's input. |
map_output_to_terminal_uid | ReadOnly<string> | The terminal ID corresponding to the capacitor's output. |
Was this page helpful?