CustomTransformer
Transformer that has three circuits. See https://en.wikipedia.org/wiki/Transformer
Published "customTransformer" part
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "customTransformer",
inductance: 4,
couplingCoef: 0.999,
map_a_to_terminal_uid: "your-terminal-element-uid",
map_b_to_terminal_uid: "your-terminal-element-uid",
map_c_to_terminal_uid: "your-terminal-element-uid",
map_d_to_terminal_uid: "your-terminal-element-uid",
map_e_to_terminal_uid: "your-terminal-element-uid",
map_f_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "customTransformer" | The type of this object, always the string literal "customTransformer" | |
inductance | number | 4 | Inductance of coils. |
couplingCoef | number | 0.999 | Coupling coefficient. |
map_a_to_terminal_uid | string | The terminal IDs. | |
map_b_to_terminal_uid | string | ||
map_c_to_terminal_uid | string | ||
map_d_to_terminal_uid | string | ||
map_e_to_terminal_uid | string | ||
map_f_to_terminal_uid | string |
Was this page helpful?