summaryrefslogtreecommitdiff
path: root/2360/CH5/EX5.13/ex5_13.sce
blob: 695fe11296c738b926cdb30184d071345bdef00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Exa 5.13
format('v',7);clc;clear;close;
// Given data
R1 = 100;// in ohm
R2 = 1000;// in ohm
R3 = 0.00377;//standard resistance in ohm
a = 99.92;// in ohm
b = 1000.6;// in ohm
Ry = 0.1;//resistance of link in ohm
Rx =R1*R3/R2+b*Ry/(Ry+a+b)*(R1/R2-a/b);//unknown resistance in ohm
Rx = Rx * 10^3;// in mohm
disp(Rx,"The value of unknown resistance in mΩ is");

// Note: The answer will be in mΩ not MΩ.