diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH8/EX8.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2021/CH8/EX8.4')
-rwxr-xr-x | 2021/CH8/EX8.4/EX8_4.pdf | bin | 0 -> 18113 bytes | |||
-rwxr-xr-x | 2021/CH8/EX8.4/Ex8_4.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/2021/CH8/EX8.4/EX8_4.pdf b/2021/CH8/EX8.4/EX8_4.pdf Binary files differnew file mode 100755 index 000000000..1e081a7a0 --- /dev/null +++ b/2021/CH8/EX8.4/EX8_4.pdf diff --git a/2021/CH8/EX8.4/Ex8_4.sce b/2021/CH8/EX8.4/Ex8_4.sce new file mode 100755 index 000000000..7d2eaeecc --- /dev/null +++ b/2021/CH8/EX8.4/Ex8_4.sce @@ -0,0 +1,24 @@ +//Finding of Cv,Cd,Cc
+//Given
+H=5;
+d1=0.1;
+d2=2;
+t=30;
+h=0.45;
+x=1;
+g=9.81;
+y=0.052;
+H=5;
+//To Find
+A1=(%pi/4)*d2^2;
+Aq=(A1*h)/t;
+A2=(%pi/4)*d1^2;
+b=sqrt(2*g*H);
+Tq=A2*b;
+Cd=Aq/Tq;
+c=sqrt(4*y*H);
+Cv=x/c;
+Cc=Cd/Cv;
+disp(" Cd ="+string(Cd)+" No units");
+disp(" Cv ="+string(Cv)+" No units");
+disp(" Cc ="+string(Cc)+" No units");
|