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.1 | |
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.1')
-rw-r--r-- | 3782/CH10/EX10.1/Ex10_1.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3782/CH10/EX10.1/Ex10_1.sce b/3782/CH10/EX10.1/Ex10_1.sce new file mode 100644 index 000000000..7a9a7b930 --- /dev/null +++ b/3782/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,26 @@ + +//ch-10 page 379 pb-1 +// + +// + +r=275 +t=24 +l=1320.5 + +tl=r*tan((t/2)*(%pi/180)) +printf("\n Tangent length = %0.3f ",tl) +llc=2*r*sin((t/2)*(%pi/180)) +printf("\n Length long of cord= %0.3f ",llc) +loc=(%pi*r*t/180) +printf("\n Length of curve = %0.3f ",loc) +coc=l-tl +ct=coc+loc +printf("\n chainage of commencement = %0.3f ",coc) +printf("\n chainage of tangency = %0.3f ",ct) +k=cos((t/2)*%pi/180) +ad=r*((1/k)-1) +printf("\n apex distance = %0.3f ",ad) +k1=cos((t/2)*(%pi/180)) +vsc=r*(1-k1) +printf("\n versed sine of curve is %0.3f ",vsc) |