diff options
author | Jayaram R Pai | 2014-07-31 13:20:29 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-07-31 13:20:29 +0530 |
commit | 4473cee7e1be996dccb31c12243e543ed8e0ca39 (patch) | |
tree | 1d26380ad4860ccda9b844aa658959127cfae300 /static | |
parent | 4fc8de24f4e26719ddb043f4779cdbc9914475bb (diff) | |
download | scilab-on-cloud-4473cee7e1be996dccb31c12243e543ed8e0ca39.tar.gz scilab-on-cloud-4473cee7e1be996dccb31c12243e543ed8e0ca39.tar.bz2 scilab-on-cloud-4473cee7e1be996dccb31c12243e543ed8e0ca39.zip |
added example file models, requirements.txt
Diffstat (limited to 'static')
-rw-r--r-- | static/tmp/a.sci | 2 | ||||
-rw-r--r-- | static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci | 3 | ||||
-rw-r--r-- | static/tmp/out.txt | 74 | ||||
-rw-r--r-- | static/website/js/cloud.js | 14 |
4 files changed, 14 insertions, 79 deletions
diff --git a/static/tmp/a.sci b/static/tmp/a.sci deleted file mode 100644 index ac1be22..0000000 --- a/static/tmp/a.sci +++ /dev/null @@ -1,2 +0,0 @@ -exec('/home/cheese/cloud/soc/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci') -quit diff --git a/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci b/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci deleted file mode 100644 index 2d35505..0000000 --- a/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci +++ /dev/null @@ -1,3 +0,0 @@ -mode(2); - -quit();
\ No newline at end of file diff --git a/static/tmp/out.txt b/static/tmp/out.txt deleted file mode 100644 index 26c869c..0000000 --- a/static/tmp/out.txt +++ /dev/null @@ -1,74 +0,0 @@ - - - --->lines(0) - - --->disp("Example 2.1") - - Example 2.1 - --->printf("\n") - - --->printf("Given") -Given --->disp("Resistance used is 4 ohm") - - Resistance used is 4 ohm - --->disp("Current flow is i=2.5*sin(w*t)") - - Current flow is i=2.5*sin(w*t) - --->disp("Angular frequency(w)=500 rad/s") - - Angular frequency(w)=500 rad/s - - --->R=4; - --->iamp=2.5;w=500; - --->t=0:0.001:0.012566 - t = - - 0. 0.001 0.002 0.003 0.004 0.005 0.006 0.007 0.008 0.009 0.01 0.011 0.012 - --->i=2.5*sin(w*t) - i = - - 0. 1.1985638 2.1036775 2.4937375 2.2732436 1.4961804 0.3528000 - 0.8769581 - 1.8920062 - 2.4438253 - 2.3973107 - 1.7638508 - 0.6985387 - - - --->Vamp=iamp*R; - --->printf("v=%d*sin(%d*t)(V)\n",Vamp,w) -v=10*sin(500*t)(V) - - --->pamp=iamp*iamp*R; - --->printf("p=%d(sin(%d*t))^2(W)\n",pamp,w) -p=25(sin(500*t))^2(W) - --->p=pamp*sin(w*t)^2; - - --->//On integrating p with respect to t - --->W=25*(t/2-sin(2*w*t)/(4*w)) - W = - - 0. 0.0019816 0.0136338 0.035736 0.0594600 0.0744866 0.0784927 0.0792877 0.0876330 0.1073485 0.1318003 0.1499999 0.1567072 - - --->funcion p=f(t),p=pamp*sin(w*t)^2,endfunction -funcion p=f(t),p=pamp*sin(w*t)^2,endfunction - !--error 4 -Undefined variable: funcion -at line 26 of exec file called by : -exec('/home/cheese/cloud/soc/static/tmp/mLnhjbU1jr3BCrLv8tMJai6ElivgI1dJ.sci') - - diff --git a/static/website/js/cloud.js b/static/website/js/cloud.js index 644d7fd..6b56606 100644 --- a/static/website/js/cloud.js +++ b/static/website/js/cloud.js @@ -84,6 +84,20 @@ $(document).ready(function() { }); }); + $(document).on("change", "#examples", function(){ + $.ajax({ + url: "/ajax-code/", + type: "POST", + data: { + example_id: $("#examples").val() + }, + dataType: "html", + success: function(data) { + editor.setValue(data); + } + }); + }); + /* Execute the code */ $("#execute").click(function() { var csrfmiddlewaretoken = $("[name='csrfmiddlewaretoken']").val(); |