blob: f237aac99a1cbf11fc32354313f488b3e28cd70e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)
|