blob: 03325f7901301b35840bd079fff58320fe074ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Example 1_40
clc;
clear;
close;
format('v',5);
//given data :
V=24;//V
R1=7;//ohm
R2=7;//ohm
R3=7;//ohm
R4=7;//ohm
R5=8;//ohm
R6=10;//ohm
RAB=(R5*R6/(R5+R6)+R4)*(R2+R3)/(R5*R6/(R5+R6)+R4+R2+R3)+R1;//ohm
I=V/RAB;//A
I2=I*(R2+R3)/(R2+R3+R5*R6/(R5+R6)+R4);//A
VPQ=I2*(R5*R6/(R5+R6));//V
disp(VPQ,"Voltage drop across the 10 ohm resistor(V)");
//Answer in the book is not accurate.
|