blob: c616785deddf8b3867bccd69787080fd569eba4e (
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
dAB=200
rla=450.0
AB=ab-aa
printf("\n AB")
adif=bb-ba
printf("\n apparent difference of level = %0.3f meters',adif)
//a
td=(AB+adif)/2
printf("\n true difference of level= %0.3f meters',td)
//b
tb=bb
ta=bb-td
printf("\n true reading on A= %0.3f meters',ta)
//c
e=ba-ta
printf("\n collimation error = %0.3f meters',e)
//d
rlb=rla-td
printf("\n RL of B= %0.3f meters',rlb)
|