summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci49
-rw-r--r--static/website/images/ajax-loader.gifbin0 -> 1079 bytes
-rw-r--r--static/website/js/cloud.js2
-rw-r--r--static/website/templates/index.html1
4 files changed, 4 insertions, 48 deletions
diff --git a/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci b/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci
index f635a71..2d35505 100644
--- a/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci
+++ b/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci
@@ -1,48 +1,3 @@
-lines(0)
+mode(2);
-disp("Example 2.1")
-printf("\n")
-printf("Given")
-disp("Resistance used is 4 ohm")
-disp("Current flow is i=2.5*sin(w*t)")
-disp("Angular frequency(w)=500 rad/s")
-
-R=4;
-iamp=2.5;w=500;
-t=0:0.001:0.012566
-i=2.5*sin(w*t)
-
-
-Vamp=iamp*R;
-printf("v=%d*sin(%d*t)(V)\n",Vamp,w)
-
-pamp=iamp*iamp*R;
-printf("p=%d(sin(%d*t))^2(W)\n",pamp,w)
-p=pamp*sin(w*t)^2;
-
-//On integrating p with respect to t
-W=25*(t/2-sin(2*w*t)/(4*w))
-
-function p=f(t),p=pamp*sin(w*t)^2,endfunction
-w1=intg(0,2*%pi/w,f);
-
-
-subplot(221)
-plot(t,i)
-xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919154.jpg");
-xtitle ('i vs wt','wt','i ');
-
-subplot(222)
-plot(t,p)
-xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919155.jpg");
-xtitle ('p vs wt','wt','p ');
-
-
-
-subplot(223)
-plot(t,W)
-xs2jpg(gcf(), "/home/cheese/cloud/soc/static/tmp/1387919156.jpg");
-xtitle ('w vs wt','wt','w ');
-
-
-exit
+quit(); \ No newline at end of file
diff --git a/static/website/images/ajax-loader.gif b/static/website/images/ajax-loader.gif
new file mode 100644
index 0000000..408af5c
--- /dev/null
+++ b/static/website/images/ajax-loader.gif
Binary files differ
diff --git a/static/website/js/cloud.js b/static/website/js/cloud.js
index 1b64532..644d7fd 100644
--- a/static/website/js/cloud.js
+++ b/static/website/js/cloud.js
@@ -88,6 +88,7 @@ $(document).ready(function() {
$("#execute").click(function() {
var csrfmiddlewaretoken = $("[name='csrfmiddlewaretoken']").val();
var code = editor.getValue();
+ $("body").css("cursor", "wait");
$.ajax({
url:"/ajax-execute/",
type: "POST",
@@ -97,6 +98,7 @@ $(document).ready(function() {
},
dataType: "text",
success: function(data) {
+ $("body").css("cursor", "auto");
result.setValue(data);
}
});
diff --git a/static/website/templates/index.html b/static/website/templates/index.html
index a4b200b..8caa608 100644
--- a/static/website/templates/index.html
+++ b/static/website/templates/index.html
@@ -135,7 +135,6 @@
}
}
});
-
</script>
{% csrf_token %}
</body>