diff options
Diffstat (limited to 'Working_Examples/215/CH13/EX13.5/ex13_5.sce')
-rwxr-xr-x | Working_Examples/215/CH13/EX13.5/ex13_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Working_Examples/215/CH13/EX13.5/ex13_5.sce b/Working_Examples/215/CH13/EX13.5/ex13_5.sce new file mode 100755 index 0000000..ab7366d --- /dev/null +++ b/Working_Examples/215/CH13/EX13.5/ex13_5.sce @@ -0,0 +1,13 @@ +clc
+//Example 13.5
+printf("Given")
+disp('L1=30 mH L2=60 mH M=40 mH')
+L1=30*10^-3; L2=60*10^-3; M=40*10^-3;
+//The equivalent T network is
+UL=L1-M
+UR=L2-M
+CS=M
+printf("The T network has \n")
+printf("%d mH in the upper left arm\n",UL*10^3)
+printf("%3.0f mH in the upper right arm\n",UR*10^3)
+printf("%d mH in the center stem\n",CS*10^3)
\ No newline at end of file |