diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | 4336f5f06f61de30ae3fa54650fce63a9d5ef5be (patch) | |
tree | 23b4ee9b8e8f24bf732acf2f7ad22ed50cdd5670 /templates/pages/experiments.html | |
download | SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.gz SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.bz2 SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.zip |
added all server files
Diffstat (limited to 'templates/pages/experiments.html')
-rw-r--r-- | templates/pages/experiments.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/pages/experiments.html b/templates/pages/experiments.html new file mode 100644 index 0000000..af9df33 --- /dev/null +++ b/templates/pages/experiments.html @@ -0,0 +1,38 @@ +{% extends "layout.html" %} +{% load staticfiles %} + +{% block content %} + +<div class="container"> + <div class="row"> + {% if user.is_authenticated %} + {% include 'account/sub_nav.html' %} + {% endif %} + <div class="span12"> + <h2>Experiments</h2> + <br> + <br> + <p><h4> + <strong>List of experiments:</strong> + </h4> + <p> + <ol> + <li>Identification of Transfer Function of a Single Board Heater System through Step Response + +Experiment</li> + <li>Identification of Transfer Function of a Single Board Heater System through Ramp Response + +Experiment</li> + <li>Frequency Response Analysis of a Single Board Heater System by the Application of Sine Wave</li> + <li>Controlling Single Board Heater System using PID controller</li> + <li>Two Degrees of Freedom (2DOF) Controller</li> + <li>PRBS Modeling and Implementation of Pole Placement Controller</li> + <li>Implementing Internal Model Controller for First Order System on a Single Board Heater System</li> + <li>Design and Implementation of Self Tuning PI and PID Controllers on Single Board Heater System</li> + <li>Model Predictive Control in Single Board Heater System using SCILAB</li> + </ol> + </p></p> + </div> + </div> +</div> +{% endblock %} |