diff options
Diffstat (limited to '2459/CH1/EX1.3/Ex1_3.sce')
-rw-r--r-- | 2459/CH1/EX1.3/Ex1_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2459/CH1/EX1.3/Ex1_3.sce b/2459/CH1/EX1.3/Ex1_3.sce new file mode 100644 index 000000000..23978aa3a --- /dev/null +++ b/2459/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,14 @@ +//chapter1
+//example1.3
+//page11
+
+V=10 // V
+R=10 // ohm
+
+I=V/R // calculate short-circuit current by shorting AB
+printf("equivalent current source has magnitude = %.3f A",I)
+
+// no load is connected across AB and 10V source has negligible resistance
+// so resistance across AB is 10 ohm
+
+// the constant voltage source when converted to constant current source will thus have a source of 1A in parallel with resistor of 10 ohm
|