diff options
Diffstat (limited to '2459/CH1/EX1.11')
-rw-r--r-- | 2459/CH1/EX1.11/Ex1_11.PNG | bin | 0 -> 5912 bytes | |||
-rw-r--r-- | 2459/CH1/EX1.11/Ex1_11.sce | 25 | ||||
-rw-r--r-- | 2459/CH1/EX1.11/Figure1_11.JPG | bin | 0 -> 33738 bytes |
3 files changed, 25 insertions, 0 deletions
diff --git a/2459/CH1/EX1.11/Ex1_11.PNG b/2459/CH1/EX1.11/Ex1_11.PNG Binary files differnew file mode 100644 index 000000000..b21f206a2 --- /dev/null +++ b/2459/CH1/EX1.11/Ex1_11.PNG diff --git a/2459/CH1/EX1.11/Ex1_11.sce b/2459/CH1/EX1.11/Ex1_11.sce new file mode 100644 index 000000000..661645acc --- /dev/null +++ b/2459/CH1/EX1.11/Ex1_11.sce @@ -0,0 +1,25 @@ +//chapter1
+//example1.11
+//page20
+
+R1=4 // ohm
+R2=6 // ohm
+R3=5 // ohm
+R4=8 // ohm
+V=40 // V
+
+// load is removed and A and B are shorted
+load_source=R1+(R2*R3/(R2+R3))
+source_current=V/load_source
+
+norton_current=source_current*(R2/(R2+R3)) // short circuit current in AB
+
+printf("shortcircuit current in AB = %.3f A \n",norton_current)
+
+// load is removed and battery is replaced by a short
+norton_resistance=R3+(R1*R2/(R1+R2))
+printf("norton resistance= %.3f ohm \n",norton_resistance)
+
+// equivalent circuit is norton current source in parallel with norton resistance
+I=norton_current*(norton_resistance/(norton_resistance+R4)) // current through 8 ohm resistance
+printf("current through 8ohm resistor = %.3f A",I)
diff --git a/2459/CH1/EX1.11/Figure1_11.JPG b/2459/CH1/EX1.11/Figure1_11.JPG Binary files differnew file mode 100644 index 000000000..e84a48660 --- /dev/null +++ b/2459/CH1/EX1.11/Figure1_11.JPG |