diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3782/CH10/EX10.7/Ex10_7.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3782/CH10/EX10.7/Ex10_7.sce')
-rw-r--r-- | 3782/CH10/EX10.7/Ex10_7.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3782/CH10/EX10.7/Ex10_7.sce b/3782/CH10/EX10.7/Ex10_7.sce new file mode 100644 index 000000000..732064af0 --- /dev/null +++ b/3782/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,36 @@ + +// + +// + +a1=135,a2=145, + +t1=180-a1 +t2=180-a2 +t3=180-(t1+t2) +r1=400,r2=200, + +ct=1000 + +ED=r1*(tan((t1/2)*(%pi/180))) + +FD=r2*(tan((t2/2)*(%pi/180))) + +EF=ED+FD + +printf("\n EF= %0.3f ",EF) + +BE=EF*(sin(t2*(%pi/180)))/(sin(t3*(%pi/180))) + +BF=EF*(sin(t1*(%pi/180)))/(sin(t3*(%pi/180))) + + +ct1=ct-(BE+ED) + +cd=ct1+((%pi*r1*t1)/(180)) + +ct2=cd+((%pi*r2*t2)/(180)) + +printf("\n chainage of T1= %0.3f ",ct1) +printf("\n chainage of D= %0.3f ",cd) +printf("\n chainage of T2 %0.3f ",ct2) |