summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.10/ch1_ex_10.sce
blob: 4bd8f082626050b20bec5f741d6dd6bdfe055c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS 
//Example 10

disp("CHAPTER 1");
disp("EXAMPLE 10");

//VARIABLE INITIALIZATION
v=10;                          //voltage source in Volts
I=5;                           //current source in Amperes
r1=2;                          //in Ohms
r2=2;                          //in Ohms
r3=4;                          //in Ohms

//SOLUTION
res=I+(v/r1); 
v1=res/((1/r1)+(1/r2)+(1/r3));
I1=v1/r3;
disp(sprintf("By Nodal analysis, the current through resistor R3 is %d A",I1));

//END