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 /2078/CH10/EX10.15/Example10_15.sce | |
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 '2078/CH10/EX10.15/Example10_15.sce')
-rwxr-xr-x | 2078/CH10/EX10.15/Example10_15.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2078/CH10/EX10.15/Example10_15.sce b/2078/CH10/EX10.15/Example10_15.sce new file mode 100755 index 000000000..56d2a9c19 --- /dev/null +++ b/2078/CH10/EX10.15/Example10_15.sce @@ -0,0 +1,31 @@ +//Exa 10.15
+clc;
+clear;
+close;
+//Given data :
+L=300;//m
+slope=1/20;
+w=0.80;//kg/m
+hl=30;//m
+T0=1500;//kg
+CD=L;//m
+tan_alfa=slope;
+ED=CD*tan_alfa;//m
+AC=hl;//m
+BE=hl;//m
+BD=BE+ED;//m
+//S1=w*x1^2/2/T0;//m
+//S2=w*(L-x1)^2/2/T0;//m
+h=15;//m
+ED=h;//m
+x1=L/2-T0*h/w/L;//m
+S1=w*x1^2/2/T0;//m
+S2=w*(L-x1)^2/2/T0;//m
+OG=AC-S1-x1*tan_alfa;//m
+Clearance=OG;//m
+disp(Clearance,"Clearance of the lowest point from ground(m)");
+//y=x*tan_alfa-OG;//m
+//C1=w*x^2/2/T0-(x/20-OG)
+x=T0/20/w;//m(Byy putting dC1/dx=0)
+C1=w*x^2/2/T0-(x/20-OG);//m
+disp(C1,"Minimum clearance(m)");
|