summaryrefslogtreecommitdiff
path: root/978/CH10/EX10.10/Example10_10.sce
blob: b7fd18f9d2b86416b1dca1aa7782d996da3317f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//chapter-10,Example10_10,pg 504

Ru=130//resistance

Lu=31*10^-3//inductance 

R2=10*10^3//resistance in arm-2

C1=0.01*10^-6//capacitance in arm

R3=(Lu/(C1*R2))//resistance in arm-3

R1=((R2*R3)/Ru)//resistance in arm-1

printf("R1=%.2f ohm\n",R1)

printf("R3=%.2f ohm\n",R3)

printf("yes values are unique")