summaryrefslogtreecommitdiff
path: root/3556/CH4/EX4.8/Ex4_8.sce
blob: f79b0df3c8c45861dc11ed1f23a4c56a5ad0bc32 (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
42
43
44
45
46
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 4 :  Circuit Theorems
// Example 4 - 
8
clear; clc; close; 
//
// Given data
R4   =   4.00000;
R12  =  12.0000;
R1   =   1.0000;
Vs   =  32.0000;  
Is   =  -2.0000;
RL1  =   6.0000;
RL2  =  16.0000;
RL3  =  36.0000;
//
// Calculations Rth
Rth1  = (R4*R12)/(R4+R12);
Rth   = R1 + Rth1;
// Calculations Vth 
I1  = (Vs + (R12*Is))/(R4+R12)
I2  = Is;
Vth = R12*(I1-I2)
// Calculation IL1 for RL = 6 Ohm 
IL1 = Vth/(Rth + RL1)
// Calculation IL2 for RL = 16 Ohm 
IL2 = Vth/(Rth + RL2)
// Calculation IL3 for RL = 36 Ohm 
IL3 = Vth/(Rth + RL3)
// Display the result
disp("Example 4-8 Solution : ");
printf(" \n Vth    = Voltage Thevenin                  = %.3f Volt",Vth)
printf(" \n Rth    = Resistance Thevenin               = %.3f Ohm",Rth)
printf(" \n IL1    = Load Current For RL 6 Ohm         = %.3f A",IL1)
printf(" \n IL2    = Load Current For RL 16 Ohm        = %.3f A",IL2)
printf(" \n IL3    = Load Current For RL 36 Ohm        = %.3f A",IL3)