blob: 7a7a0d5ee618290412fec08c83a96226a6a0f1e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example 2.5(c)
clear;
clc;
R1=15*10^3;//From the result of Example 2.4
Romin=50*10^6;
emax=R1/Romin;
p=emax/4;
pper=p*100;
printf("Resistance tolerance Required=%.5f percent",pper);
|