summaryrefslogtreecommitdiff
path: root/1628/CH3/EX3.13
diff options
context:
space:
mode:
Diffstat (limited to '1628/CH3/EX3.13')
-rwxr-xr-x1628/CH3/EX3.13/Ex3_13.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1628/CH3/EX3.13/Ex3_13.sce b/1628/CH3/EX3.13/Ex3_13.sce
new file mode 100755
index 000000000..126e2988a
--- /dev/null
+++ b/1628/CH3/EX3.13/Ex3_13.sce
@@ -0,0 +1,22 @@
+
+
+ // Examle 3.13
+
+ // From Diagram (3.26) Apply KVL to get 24-4I-2I+18I= 0
+I=(-24/12); // Current
+disp(' The value of Current = '+string(I)+' Amp');
+
+V1=4*I; // Voltage across 4 Ohm Resistor
+p=-(4.5*V1*I); // Power absorbed
+disp(' Power absorbed by dependent source = '+string(p)+' Watt');
+
+V=24; // Independent voltage source
+R=V/I; // Resistence Seen from Independent source
+disp(' Resistence Seen from Independent source = '+string(R)+' Ohm');
+
+
+
+
+ // p 67 3.13
+
+