From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3782/CH5/EX5.12/Ex5_12.sce | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 3782/CH5/EX5.12/Ex5_12.sce (limited to '3782/CH5/EX5.12') diff --git a/3782/CH5/EX5.12/Ex5_12.sce b/3782/CH5/EX5.12/Ex5_12.sce new file mode 100644 index 000000000..f237aac99 --- /dev/null +++ b/3782/CH5/EX5.12/Ex5_12.sce @@ -0,0 +1,37 @@ + +// + +// + +aa=1.725 +ab=2.245 +ba=2.145 +bb=3.045 + +AB=200 +rla=450 + + +aAB=ab-aa + +printf("\n apparent difference of level between A and B is %0.3f meters',aAB) + +dB=bb-ba + +printf("\n apparent difference of level at B %0.3f meters',dB) + +td=(aAB+dB)/2 + +printf("\n true differece of level= %0.3f ",td) + +CB=bb + +CA=CB-td + +e=ba-CA + +printf("\n correction to be applied at A is = %0.3f ",e) + +rlb=rla-td + +printf("\n RL of B= %0.3f meters',rlb) -- cgit