summaryrefslogtreecommitdiff
path: root/1316/CH2/EX2.3/example2_3.sce
blob: edf7d6df720ce53b98e80758ab26a5dd9175d14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Chapter 2
//Example 2.3
//Page 60

clear;
clc;

R1 = 1000;
R2 = 842;
R3 = 500;

printf("Because bridge is nulled we find R4 using equation:\n R1R4=R3R2 \n")
//Calculation of R4
R4=R3*R2/R1;
printf("%.0f ohm",R4)