diff options
Diffstat (limited to '2672/CH1/EX1.40/Ex1_40.sce')
-rwxr-xr-x | 2672/CH1/EX1.40/Ex1_40.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2672/CH1/EX1.40/Ex1_40.sce b/2672/CH1/EX1.40/Ex1_40.sce new file mode 100755 index 000000000..03325f790 --- /dev/null +++ b/2672/CH1/EX1.40/Ex1_40.sce @@ -0,0 +1,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.
|