summaryrefslogtreecommitdiff
path: root/51/CH5/EX5.15/5_15.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /51/CH5/EX5.15/5_15.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '51/CH5/EX5.15/5_15.sce')
-rwxr-xr-x51/CH5/EX5.15/5_15.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/51/CH5/EX5.15/5_15.sce b/51/CH5/EX5.15/5_15.sce
new file mode 100755
index 000000000..5309b859a
--- /dev/null
+++ b/51/CH5/EX5.15/5_15.sce
@@ -0,0 +1,16 @@
+clc;
+clear;
+v1=200;//m/s
+v2=500;//m/s
+A1=1;//m^2
+p1=78.5;//kPa(abs)
+T1=268;//K
+p2=101;//kPa(abs)
+
+//F=-p1*A1 + p2*A2 + m*(v2-v1)
+//m=d1*A1*v1
+//d1=(p1)/(R*T1)
+d1=(p1*1000)/(286.9*T1);
+m=d1*v1*A1;
+F=-((p1-p2)*A1*1000) + m*(v2-v1);
+disp("N",F,"The thrust for which the stand is to be designed=") \ No newline at end of file