{% extends "layout.html" %} {% block title %}ReSim Demo{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

   Parameters Settings

{% for field in form.Simulation %} {% if field.errors %}
{% for error in field.errors %} {% endfor %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% else %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% endif %} {% endfor %}
{% for field in form.Drug %} {% if field.errors %}
{% for error in field.errors %} {% endfor %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% else %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% endif %} {% endfor %}
{% for field in form.GrowthRate %} {% if field.errors %}
{% for error in field.errors %} {% endfor %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% else %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% endif %} {% endfor %}
{% for field in form.InitialState %} {% if field.errors %}
{% for error in field.errors %} {% endfor %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% else %}
{{ render_inputaddon_span_withtooltip(field.name)|safe }}{{ field.label }} {{ field(class_="form-control") }} {{ field.description|safe }}
{% endif %} {% endfor %}
{% for field in form %} {% if field.errors %}
Opps!
Please check and change a few things up in {{ field.name }} and try submitting again.
{% endif %} {% endfor %}

Welcome to ReSim Demo!


This a simplified version of ReSim. If you want full control/customization, please install resim package locally.

In this demo, you can play around with the params and see the result. Simulation time increase with n and t. And it greatly depends on the machine computing power. Please be patient.

Have fun simulating!

Simulation Result

{% for id in ids %}



{% endfor %}
{% endblock %} {% block footer %} {% endblock %}