blob: bf63017713d0e621f4c47b9c38f0b8f71635775f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example 2.5(b)
clear;
clc;
R1=15*10^3;//From the result of Example 2.4
p=0.001;//For 1% tolerance p=t/100=1/100=0.01
emax=4*p;//imbalace factor
Romin=R1/emax;
printf("Ro can be anywhere in the range Ro>=%.2f Mohms",Romin*10^(-6));
|