{% extends "VirtualDatasheet_BaseTemplate.html" %} {% block content %} {% set dPlotCnt = 0 %} {% set sPlotCnt = 0 %} {% if diode['energy_plots_r'] is not none %} {% set dPlotCnt = dPlotCnt + 1 %} {% endif %} {% if diode['imp_plot'] is not none %} {% set dPlotCnt = dPlotCnt + 1 %} {% endif %} {% if switch['energy_plots'] is not none %} {% set sPlotCnt = sPlotCnt + 1 %} {% endif %} {% if switch['energy_plots_r'] is not none %} {% set sPlotCnt = sPlotCnt + 1 %} {% endif %} {% if switch['imp_plot'] is not none %} {% set sPlotCnt = sPlotCnt + 1 %} {% endif %}

{% for key, value in trans.items() %} {% if not key == 'c_plots' %} {% if value is string %} {% if key == 'Datasheet_hyperlink' %} {% else %} {% endif %} {% else %} {% endif %} {% endif %} {% endfor %}

Transistor Specifications

Value
Units
{{ key }} {{trans["Manufacturer"]}}{{ value }} - {{ value[1] }} {{ value[0] }}


{% for key, value in switch.items() %} {% if not (key == 'channel_plots' or key == 'energy_plots' or key == 'energy_plots_r' or key == 'imp_plot') %} {% if value is string %} {% else %} {% endif %} {% endif %} {% endfor %}

{{trans["Type"]}} Specifications

{{ key }}{{ value }} - {{ value[1] }} {{ value[0] }}


{% for key, value in diode.items() %} {% if not (key == 'channel_plots' or key == 'energy_plots' or key == 'energy_plots_r' or key == 'imp_plot') %} {% if value is string %} {% else %} {% endif %} {% endif %} {% endfor %}

Diode Specifications

{{ key }}{{ value }} - {{ value[1] }} {{ value[0] }}
{% if switch['channel_plots'] is mapping and switch['channel_plots']|length > 2 %}

{{trans["Type"]}} Characteristic Plots

{% if trans['c_plots'] is not none %}
Voltage dependant Capacitance
{% endif %} {% for key, value in switch['channel_plots'].items() %}
Channel at {{ key }}°C
{% endfor %}
{% if sPlotCnt != 0 %}

{{trans["Type"]}} Characteristic Plots (..contd)

{% if switch['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if switch['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if switch['imp_plot'] is not none %}
Impedance plots
{% endif %}
{% endif %} {% else %}

{{trans["Type"]}} Characteristic Plots

{% if switch['channel_plots'] is mapping %} {% for key, value in switch['channel_plots'].items() %}
Channel at {{ key }}°C
{% endfor %} {% else %}
Channel plots
{% endif %} {% if switch['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if switch['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if switch['imp_plot'] is not none %}
Impedance plots
{% endif %} {% if trans['c_plots'] is not none %}
Voltage dependant Capacitance
{% endif %}
{% endif %} {% if diode['channel_plots'] is mapping and diode['channel_plots']|length > 2 %}

Diode Characteristic Plots

{% for key, value in diode['channel_plots'].items() %}
Channel at {{ key }}°C
{% endfor %} {% if diode['energy_plots'] is not none %}
Energy plots
{% endif %}
{% if dPlotCnt != 0 %}

Diode Characteristic Plots

{% if diode['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if diode['imp_plot'] is not none %}
Impedance plots
{% endif %}
{% endif %} {% else %}

Diode Characteristic Plots

Channel plots
{% if diode['energy_plots'] is not none %}
Energy plots
{% endif %} {% if diode['energy_plots_r'] is not none %}
Energy plots
{% endif %} {% if diode['imp_plot'] is not none %}
Impedance plots
{% endif %}
{% endif %} {% endblock %}