JFET
Junction-gate field-effect transistor. See https://en.wikipedia.org/wiki/JFET
p-JFET or n-JFET is controlled by pnp
.
Note: this model is in beta. Please contact us if you find any unusual behavior.
Example usage
flux.simulationModel = {
type: "jfet",
pnp: false,
beta: 0.02,
threshold: 1.5,
map_input_one_to_terminal_uid: "your-terminal-element-uid",
map_input_two_to_terminal_uid: "your-terminal-element-uid",
map_output_to_terminal_uid: "your-terminal-element-uid"
}
Fields
Name | Type | Default | Description |
---|---|---|---|
type | "jfet" | The type of this object, always the string literal "jfet" | |
pnp | boolean | false | |
beta | number | 0.02 | |
threshold | number | 1.5 | |
map_input_one_to_terminal_uid | string | The terminal ID corresponding to the first input. | |
map_input_two_to_terminal_uid | string | The terminal ID corresponding to the second input. | |
map_output_to_terminal_uid | string | The terminal ID corresponding to the gate's output. |
Was this page helpful?