MOSFET
The object that describes how to configure a MOSFET primitive.
Example
flux.simulationModel = {
type: "mosfet",
pnp: false,
beta: 0.02,
threshold: 1.5,
map_input_one_to_terminal_uid: "element uid",
map_input_two_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 "opAmp". |
threshold | Readonly<number> | Defines the voltage at the gate terminal at which the MOSFET begins to conduct. |
pnp | Readonly<boolean> | If true, then PNP. Otherwise, NPN. |
beta | Readonly<number> | The amplification factor. |
map_input_one_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the MOSFET's gate terminal. |
map_input_two_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the MOSFET's drain terminal. |
map_output_to_terminal_uid | Readonly<string> | The terminal ID corresponding to the MOSFET's source terminal. |
Was this page helpful?