{% extends "base_framework.html" %}

{% block main_body_content %}
{% if ckt_error_list %}

There are errors in the simulation circuit schematics.

    {% for error_item in ckt_error_list %}
  1. {{ error_item }}
  2. {% endfor %}

You need to go back to the "Add circuit files" section and change the spreadsheets that cause the errors.



{% else %}

These are the circuit files in the simulation case. Read the instructions below.


{% for ckt_item in ckt_schematics_update %}
{{ forloop.counter }}.
File name:
{{ ckt_item.ckt_file_name }}
File description:
{{ ckt_item.ckt_file_descrip }}


{% endfor %} {% endif %} {% csrf_token %}

Instructions

  1. The files listed above are the files associated with the simulation.
  2. Click on "View components" button below each file to view the components in that circuit file and their parameters. For large simulation cases with several files and components, it may take a few second or up to a minute to display the components as they are being extracted from the database. Do not click on the back button or refresh.
  3. If this is a brand new simulation, the components will have default parameters.
  4. Whether it is a new simulation or an existing simulation being executed, it is recommended to check the parameters of all components.
  5. After entering new data or checking old data, click on "Back to main page" button to continue.


{% endblock %}