blob: af9df332002033d02fc90eaa4144cf62c4d09b2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 %}
|