diff options
Diffstat (limited to '3782/CH5/EX5.12/Ex5_12.sce')
-rw-r--r-- | 3782/CH5/EX5.12/Ex5_12.sce | 37 |
1 files changed, 37 insertions, 0 deletions
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) |