summaryrefslogtreecommitdiff
path: root/3782/CH5/EX5.15
diff options
context:
space:
mode:
Diffstat (limited to '3782/CH5/EX5.15')
-rw-r--r--3782/CH5/EX5.15/Ex5_15.sce35
1 files changed, 35 insertions, 0 deletions
diff --git a/3782/CH5/EX5.15/Ex5_15.sce b/3782/CH5/EX5.15/Ex5_15.sce
new file mode 100644
index 000000000..a99cbab30
--- /dev/null
+++ b/3782/CH5/EX5.15/Ex5_15.sce
@@ -0,0 +1,35 @@
+
+//ch-5 page 187 pb-3
+
+//
+//
+
+dAB=100
+
+aa=1.875
+ab=1.790
+
+le=10
+
+ba=1.630
+bb=1.560
+
+
+td=aa-ab
+
+apd=ba-bb
+printf("\n first setting')
+printf("\n true difference is %0.3f meters',td)
+printf("\n apparent difference of level = %0.3f meters',apd)
+
+printf("\n second setting')
+
+A=ba-td
+
+e1=bb-A
+
+cA=(le/dAB)*e1
+cB=((le+dAB)/dAB)*e1
+printf("\n collimation error is %0.3f meters',e1)
+printf("\n correction at A= %0.3f meters',cA)
+printf("\n correction at B= %0.3f meters',cB)