summaryrefslogtreecommitdiff
path: root/14/CH7/EX7.9/example_7_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '14/CH7/EX7.9/example_7_9.sce')
-rwxr-xr-x14/CH7/EX7.9/example_7_9.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/14/CH7/EX7.9/example_7_9.sce b/14/CH7/EX7.9/example_7_9.sce
new file mode 100755
index 000000000..b8a2db4b6
--- /dev/null
+++ b/14/CH7/EX7.9/example_7_9.sce
@@ -0,0 +1,16 @@
+//chapter 7
+//Example 7.9
+//Page 190
+//impedacedetermination
+clear;clc;
+//Given Impedances
+Z10 = %i*1.2;
+Z21 = %i*0.2;
+Z23 = %i*0.15;
+Z13 = %i*0.3;
+Z30 = %i*1.5;
+//Solution
+Z_eq = (Z13 * (Z21+Z23) / (Z13+Z21+Z23));
+Z11 = Z10 * (Z30 + Z_eq) / (Z10 + Z30 + Z_eq);
+disp('Z11 is given by')
+disp(Z11) \ No newline at end of file