summaryrefslogtreecommitdiff
path: root/182/CH7/EX7.7/example7_7.sce
blob: e323fb1bfec06adc33b89f04ca1e9aa995b3c8e5 (plain)
1
2
3
4
5
6
7
8
9
10
// to determinr the required ratio of R/P
// example 7-7 in page 176
clc;
// Given data
S=0.1; Q=0.15; // resistances in ohm
//calculation
r=S/Q;// here R/P=S/Q
printf("the required ratio is %d/%d",(S*100),(Q*100));
//result
// the required ratio is 10/15