summaryrefslogtreecommitdiff
path: root/3782/CH1/EX1.10
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3782/CH1/EX1.10
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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/CH1/EX1.10')
-rw-r--r--3782/CH1/EX1.10/Ex1_10.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3782/CH1/EX1.10/Ex1_10.sce b/3782/CH1/EX1.10/Ex1_10.sce
new file mode 100644
index 000000000..af3e2089b
--- /dev/null
+++ b/3782/CH1/EX1.10/Ex1_10.sce
@@ -0,0 +1,33 @@
+
+clear
+L=28
+t0=20
+p0=10
+pm=5
+tm=40
+a=0.02
+al=11/(1000000)
+E=2.1*(1000000)
+w1=470
+ml=680
+n=1
+
+w=(470*28)/30
+w=w/1000
+
+ct=al*L*(tm-t0)
+printf("\n the temperature correction is %0.3f meters',ct)
+
+cp=(pm-p0)*L/(a*E)
+printf("\n the pull correction is %0.3f meters',cp)
+
+cs=-L*w*w/(24*pm*pm*n*n)
+printf("\n the sag correction is %0.3f meters',cs)
+
+e=ct+cp+cs
+printf("\n the total correction is %0.3f meters',e)
+
+l1=L+e
+
+dis=(l1/L)*ml
+printf("\n the correctt distance is %0.3f ",dis)