diff options
Diffstat (limited to '14/CH7/EX7.9')
-rwxr-xr-x | 14/CH7/EX7.9/example_7_9.sce | 16 | ||||
-rwxr-xr-x | 14/CH7/EX7.9/result_ex_7_9.txt | 3 |
2 files changed, 19 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 diff --git a/14/CH7/EX7.9/result_ex_7_9.txt b/14/CH7/EX7.9/result_ex_7_9.txt new file mode 100755 index 000000000..80692f125 --- /dev/null +++ b/14/CH7/EX7.9/result_ex_7_9.txt @@ -0,0 +1,3 @@ + Z11 is given by + + 0.6967742i |