summaryrefslogtreecommitdiff
path: root/templates/pages
diff options
context:
space:
mode:
authorttt2017-05-13 00:29:47 +0530
committerttt2017-05-13 00:29:47 +0530
commit4336f5f06f61de30ae3fa54650fce63a9d5ef5be (patch)
tree23b4ee9b8e8f24bf732acf2f7ad22ed50cdd5670 /templates/pages
downloadSBHS-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')
-rw-r--r--templates/pages/about.html59
-rw-r--r--templates/pages/contact.html34
-rw-r--r--templates/pages/downloads.html53
-rw-r--r--templates/pages/e404.html13
-rw-r--r--templates/pages/e500.html13
-rw-r--r--templates/pages/experiments.html38
-rw-r--r--templates/pages/feedback.html22
-rw-r--r--templates/pages/index.html64
-rw-r--r--templates/pages/info.html36
-rw-r--r--templates/pages/procedure.html32
-rw-r--r--templates/pages/quiz.html19
-rw-r--r--templates/pages/theory.html20
12 files changed, 403 insertions, 0 deletions
diff --git a/templates/pages/about.html b/templates/pages/about.html
new file mode 100644
index 0000000..8858e0e
--- /dev/null
+++ b/templates/pages/about.html
@@ -0,0 +1,59 @@
+{% 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">
+ <div class="page-header">
+ <div class="span1" style="margin-left: 0; margin-right: 20px;">
+ <img src="{% static 'img/iitbLogo.png' %}" alt="IITB">
+ </div>
+ <h1>About us</h1>
+ <p>SBHS Virtual Labs Team</p>
+ </div>
+ </div>
+ <div class="span2">
+ <img src="{% static 'img/kannan.jpg' %}" alt="Prof. Kannan Moudgalya">
+ <b>Principal Investigator</b><br>
+ Prof. Kannan Moudgalya
+ </div>
+ <div class="span10">
+ <p style="text-align:justify">
+ Prof. Kannan M. Moudgalya received a B.Tech degree in chemical engineering from IIT Madras, a Master of Electrical Engineering from Rice University and a Ph.D (Chemical Engineering) degree, also from Rice Uni versity. He has been a professor at IIT Bombay for 22 years. He spent one year at the University of Alberta as a visiting professor.
+ <br><br>
+ Prof. Moudgalya works in the areas of control, simulation, mathematical modelling and education technologies. He has a large number of publications in international journals and conferences. He has written two books:
+ <ol>
+ <li><a href="http://books.google.co.in/books/about/Optimization.html?id=Byqreay8y_MC" target="_blank">Optimization: theory and practice, with Prof. M. C. Joshi, published by Narosa</a></li>
+ <li><a href="http://as.wiley.com/WileyCDA/WileyTitle/productCd-0470031441.html" target="_blank">Digital Control, published by John Wiley &amp; Sons</a></li>
+ </ol>
+ <br>
+ Prof.Moudgalya held the posts of Associate Dean (R&amp;D), Head of Office Automation and Head of Distance Education, at IIT Bombay. He is currently a Member of the Standing Committee of the National Mission on Education through ICT. He contributes to this Mission through projects in the areas of spoken tutorials (<a href="http://www.spoken-tutorial.org/" target="_blank">www.spoken-tutorial.org</a>), open source software (<a href="http://www.scilab.in/" target="_blank">www.scilab.in</a>) and talk to a teacher (<a href="http://www.co-learn.in/" target="_blank">www.co-learn.in</a>).
+ </p>
+ </div>
+ </div>
+ <div class="row">
+ <div class="span10 offset2">
+ <br>
+ <h3>SBHS Team</h3>
+ <ul>
+ <li>Inderpreet Arora</li>
+ <li>Rupak Rokade</li>
+ <li>Kaushik Venkata Belusonti</li>
+ <li>Prashant Shah</li>
+ <li>Victor Chakroborty</li>
+ <li>Shalini Shrivastava</li>
+ <li>Rakhi R</li>
+ <li>Sushant Poojary</li>
+ <li>Tanuj Bhojwani</li>
+ <li>Sitesh Patel</li>
+ <li>Ankit Bahuguna</li>
+ <li>Amol Mandhane</li>
+ </ul>
+ </div>
+ </div>
+</div>
+{% endblock %} \ No newline at end of file
diff --git a/templates/pages/contact.html b/templates/pages/contact.html
new file mode 100644
index 0000000..16d391d
--- /dev/null
+++ b/templates/pages/contact.html
@@ -0,0 +1,34 @@
+{% 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>Contact Us</h2>
+ <table class="table">
+ <tbody>
+ <tr>
+ <td>Prof. Kannan Moudgalya</td>
+ <td>kannan@iitb.ac.in</td>
+ </tr>
+ <tr>
+ <td>Rupak Rokade</td>
+ <td>rupakrokade@gmail.com</td>
+ </tr>
+ <tr>
+ <td></td>
+ <td></td>
+ </tr>
+ </tbody>
+ </table>
+ <br>
+ <h2>SBHS Discussion Forum</h2>
+ The SBHS Community has maintained a discussion forum and exhaustive documentation to answer basic questions about SBHS and SBHS Vlabs.
+ </div>
+ </div>
+</div>
+{% endblock %}
diff --git a/templates/pages/downloads.html b/templates/pages/downloads.html
new file mode 100644
index 0000000..631009d
--- /dev/null
+++ b/templates/pages/downloads.html
@@ -0,0 +1,53 @@
+{% 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="span8">
+ <h1>Downloads</h1>
+ <br><br>
+ <table class="table">
+ <tbody>
+ <tr>
+ <td>Scilab 5.3.3 for Windows</td>
+ <td><a href="{% static 'scilab/scilab-5.3.3-windows.exe' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>Scilab 5.3.3 for Linux</td>
+ <td><a href="{% static 'scilab/scilab-5.3.3-linux.tar.gz' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>SBHS Scilab codes for Windows</td>
+ <td><a href="{% static 'sbhsclient/scilab_codes_windows.zip' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>SBHS Scilab codes for Linux (32 bit)</td>
+ <td><a href="{% static 'sbhsclient/scilab_codes_linux_32.zip' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>SBHS Scilab codes for Linux (64 bit)</td>
+ <td><a href="{% static 'sbhsclient/scilab_codes_linux_64.zip' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>SBHS Scilab codes for Local experiments</td>
+ <td><a href="{% static 'sbhsclient/scilab_codes_local.zip' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr>
+ <td>SBHS Scilab codes for Data Analysis</td>
+ <td><a href="{% static 'sbhsclient/scilab_codes_analysis.zip' %}" target="_blank">Download</a></td>
+ </tr>
+ <tr><td></td><td></td></tr>
+ </tbody>
+ </table>
+ <br><br>
+ <div class="alert alert-info">
+ For older versions of linux (For example, Ubuntu <= 11.10), a new version of package <b>libc6</b> (>= 2.15) is required. The package is available from Ubuntu archives on <a href="http://archive.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.17-0ubuntu5_i386.deb" target="_blank" style="color: yellow">this link</a>.
+ </div>
+ </div>
+ </div>
+</div>
+{% endblock %}
diff --git a/templates/pages/e404.html b/templates/pages/e404.html
new file mode 100644
index 0000000..62ef99d
--- /dev/null
+++ b/templates/pages/e404.html
@@ -0,0 +1,13 @@
+{% extends "layout.html" %}
+
+{% block content %}
+<div class="container">
+ <div class="row">
+ <div class="span12">
+ <h1>Page not found <small>Error 404</small></h1>
+ <br>
+ <p>The page you are looking for doesn't exist. Please click <a href="{% url 'sbhs_server.account.views.index' %}">here</a> to go to the homepage.</p>
+ </div>
+ </div>
+</div>
+{% endblock %} \ No newline at end of file
diff --git a/templates/pages/e500.html b/templates/pages/e500.html
new file mode 100644
index 0000000..2a5acb7
--- /dev/null
+++ b/templates/pages/e500.html
@@ -0,0 +1,13 @@
+{% extends "layout.html" %}
+
+{% block content %}
+<div class="container">
+ <div class="row">
+ <div class="span12">
+ <h1>Internal server error <small>Error 500</small></h1>
+ <br>
+ <p>Something went wrong on the server. We are correcting the issue. Contact vlabs team if the problem persists. Please click <a href="{% url 'sbhs_server.account.views.index' %}">here</a> to go to the homepage.</p>
+ </div>
+ </div>
+</div>
+{% endblock %} \ No newline at end of file
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 (2­DOF) 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 %}
diff --git a/templates/pages/feedback.html b/templates/pages/feedback.html
new file mode 100644
index 0000000..f19b706
--- /dev/null
+++ b/templates/pages/feedback.html
@@ -0,0 +1,22 @@
+{% 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>Feedback / Contact Us</h2>
+ <br>
+ <br>
+ <p>
+ <h5>Write a mail to <a href="mailto:sbhs@os-hardware.in">sbhs[at]os-hardware[dot]in</a> to provide a feedback on SBHS virtual lab experience. If you have any questions, please use the <a href="http://sbhs.os-hardware.in/forum" target="_blank">forum</a>.
+ </h5>
+ </p>
+ <br>
+ </div>
+ </div>
+</div>
+{% endblock %}
diff --git a/templates/pages/index.html b/templates/pages/index.html
new file mode 100644
index 0000000..7a1aa5c
--- /dev/null
+++ b/templates/pages/index.html
@@ -0,0 +1,64 @@
+{% 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">
+ <div class="page-header">
+ <div class="span1" style="margin-left: 0; margin-right: 20px;">
+ <img src="{% static 'img/iitbLogo.png' %}" alt="IITB">
+ </div>
+ <h1>Single Board Heater System Lab</h1>
+ <p>By <a href="http://www.iitb.ac.in/" target="_blank">Indian Institute of Technology, Bombay</a></p>
+ </div>
+ </div>
+ <div class="span6">
+ <h3>Welcome to Virtual Labs (SBHS)</h3>
+ <p style="text-align: justify;">The Virtual Labs Project was started as an initiative from the Ministry of Human Resource and Development (MHRD) to create online interactive media which would help students learn and experiment with difficult concepts in various domains. As a part of this initiative, a virtual laboratory for Single Board Heater System (SBHS) has been developed. The objective of this lab is to help students, teachers or in general enthusiasts perform experiments in the Instrumentation and Control System labs virtually, and yet have close to real life experience. The platform is focused on learning aspects as much as on performing the experiments.</p>
+ </div>
+ <div class="span6">
+ <div id="slider" class="carousel slide" data-interval="4000">
+ <ol class="carousel-indicators">
+ <li data-target="#slider" data-slide-to="0" class="active"></li>
+ <li data-target="#slider" data-slide-to="1"></li>
+ <li data-target="#slider" data-slide-to="2"></li>
+ <li data-target="#slider" data-slide-to="3"></li>
+ <li data-target="#slider" data-slide-to="4"></li>
+ </ol>
+ <!-- Carousel items -->
+ <div class="carousel-inner">
+ <div class="active item"><img src="{% static 'img/01.jpg' %}" alt="SBHS"></div>
+ <div class="item"><img src="{% static 'img/02.jpg' %}" alt="SBHS"></div>
+ <div class="item"><img src="{% static 'img/03.jpg' %}" alt="SBHS"></div>
+ <div class="item"><img src="{% static 'img/04.jpg' %}" alt="SBHS"></div>
+ <div class="item"><img src="{% static 'img/05.jpg' %}" alt="SBHS"></div>
+ </div>
+ <!-- Carousel nav -->
+ <a class="carousel-control left" href="#slider" data-slide="prev">&lsaquo;</a>
+ <a class="carousel-control right" href="#slider" data-slide="next">&rsaquo;</a>
+ </div>
+ </div>
+ </div>
+ <div class="row">
+ <div class="span6">
+ <h3>Key features of virtual labs</h3>
+ <ul style="text-align: justify;">
+ <li>You can remotely access the Single Board Heater Systems (SBHS) hosted at IIT Bombay, and perform various experiments using it.</li>
+ <li>Single Board Heater system is a lab-in-a-box setup which is primarily used for teaching/studying the theory of control systems. It can be thought of as a plant with a very small time constant (of the order of 60s). You can remotely access this system and perform experiments on it - from tests as simple as Step Tests to complicated closed loop tests!</li>
+ <li>Users are given two slots of 55 minute duration for performing the tests every day. They can also make use of vacant current slots, if any, in addition to this. The relatively small time constant of the SBHS allows the user to complete one or more experiments within the 55 minute duration.</li>
+ </ul>
+ </div>
+ <div class="span6">
+ <h3>SBHS Discussion Forum</h3>
+ <p style="text-align: justify;">We provide you extensive documentation and spoken tutorials on the SBHS and how to access it using Virtual Labs. You can find the links in the downloads section. Support is given for Scilab based experiments on the SBHS. The Scilab based experiments on SBHS. Sample Scilab code for Step Test is also available in the downloads section. Join us also in the SBHS discussion forum (<a href="http://sbhs.os-hardware.in/node/5" target="_blank">here</a>).</p>
+ </div>
+ </div>
+</div>
+<script>
+ $('.carousel').carousel();
+</script>
+{% endblock %}
diff --git a/templates/pages/info.html b/templates/pages/info.html
new file mode 100644
index 0000000..3edacd4
--- /dev/null
+++ b/templates/pages/info.html
@@ -0,0 +1,36 @@
+{% 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">
+ <div class="page-header">
+ <h1>Welcome to Single Board Heater System Lab!</h1>
+ </div>
+ </div>
+ </div>
+ <div class="row">
+ <div class="span8">
+ <p style="text-align:justify">
+ Welcome to SBHS Virtual Labs. Here you can remotely access the Single Board Heater Systems (SBHS) hosted at IIT Bombay, and perform various experiments using it.
+ <br><br>
+ The virtual Lab for SBHS is made using free and open source software. Python-MySQL is used for web frontend and database. It targets at using Scilab at the client end to carry out various control experiments on SBHS. Python Scripts are used for communicating the data to and fro from the server and client. This Virtual lab interface can be accessed from both inside as well as outside IIT Bombay.
+ <br><br>
+ This virtual lab interface for SBHS at IIT Bombay was successfully used by Prof.Kannan Moudgalya for CL417 - Process Control Course, CL692 - Digital Control Course and by Prof. Kavi Arya for Embedded Systems Course. A good documentation of the hardware side of SBHS is also available on the Downloads page. We also have an active forum so that your questions regarding this project are easily answered. Apart from this, we also provide you with scilab code of various control strategies implemented on SBHS. After getting a feel for SBHS using virtual labs, one can even purchase an SBHS and experiment with it locally. For purchasing SBHS, please visit <a href="http://www.nex-robotics.com/" target="_blank">http://www.nex-robotics.com/</a>
+ <br><br>
+ Following are the steps to be followed for using virtual labs. </p>
+
+ <ol>
+ <li>From the Download Section, download and install Scilab.</li>
+ <li>Register and book slot from this website.</li>
+ <li>Run the client application for establishing communication between server and your computer.</li>
+ <li>Launch Scilab, load the appropriate code and start experimenting remotely!</li>
+ </ol>
+ </div>
+ </div>
+</div>
+{% endblock %}
diff --git a/templates/pages/procedure.html b/templates/pages/procedure.html
new file mode 100644
index 0000000..c191a1f
--- /dev/null
+++ b/templates/pages/procedure.html
@@ -0,0 +1,32 @@
+{% 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>Procedure</h2>
+ <h4>
+ <strong>See the spoken tutorial on how to use SBHS virtual labs</strong>
+ </h4>
+ <center>
+ <div class="embed-responsive embed-responsive-16by9">
+ <iframe width="500" height="300" src="https://www.youtube.com/embed/Ax7lYwQctog" frameborder="0" allowfullscreen></iframe>
+ </div>
+ </center><br>
+ <h4>
+ <strong>For more information please read the pdf</strong>
+ </h4>
+ <center>
+ <div class="embed-responsive embed-responsive-16by9">
+ <iframe src="{% static 'data/procedure.pdf' %}" width="100%" height="900px"></iframe><br>
+ </div>
+ </center>
+ </div>
+ </div>
+</div>
+{% endblock %}
diff --git a/templates/pages/quiz.html b/templates/pages/quiz.html
new file mode 100644
index 0000000..b6b78a3
--- /dev/null
+++ b/templates/pages/quiz.html
@@ -0,0 +1,19 @@
+ {% 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>Quiz</h2>
+
+ <h5><a href= "http://vlabs.iitb.ac.in/sbhs/exam" target="_blank"> Quiz Link </a>
+ </h5>
+ <br>
+ </div>
+ </div>
+</div>
+{% endblock %} \ No newline at end of file
diff --git a/templates/pages/theory.html b/templates/pages/theory.html
new file mode 100644
index 0000000..82cb49c
--- /dev/null
+++ b/templates/pages/theory.html
@@ -0,0 +1,20 @@
+{% 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>Theroy</h2>
+ <br>
+ <br>
+ <iframe src="{% static 'data/theory.pdf' %}" width="100%" height="900px" ></iframe>
+ <br>
+ </div>
+ </div>
+</div>
+{% endblock %}