blob: 6732bc6d7fe0b46d5b9c54728118271a3e37ddb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 1 : DC Circuits
// Chapter 2: Basic Laws
// Example 2 - 9
clear; clc; close;
//
// Given data
R1 = 5;
R2 = 1;
R3 = 2;
R4 = 6;
R5 = 3;
R6 = 8;
R7 = 4;
//
// Calculations
// R1 Series R2
Rs1 = R1 + R2;
// R4 Parallel R5
Rp1 = (R4*R5)/(R4+R5);
// R3 Series Rp1
Rs2 = R3 + Rp1;
// Rs2 Parallel Rs1
Rp2 = (Rs1*Rs2)/(Rs1+Rs2);
// Rp2 Series R6 and R7
Reg = R6 + Rp2 + R7;
//
// Display the result
disp("Example 2-9 Solution : ");
printf(" \n Rs1 = R1 Series R2 = %.3f ohm",Rs1)
printf(" \n Rp1 = R4 Parallel R5 = %.3f ohm",Rp1)
printf(" \n Rs2 = R3 Parallel Rp1 = %.3f ohm",Rs2)
printf(" \n Rp2 = Rs1 Parallel Rs1 = %.3f ohm",Rp2)
printf(" \n Reg = R6 + Rp2 + R7 = %.3f ohm ",Reg);
|