diff options
Diffstat (limited to '215/CH13/EX13.5')
-rwxr-xr-x | 215/CH13/EX13.5/ex13_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/215/CH13/EX13.5/ex13_5.sce b/215/CH13/EX13.5/ex13_5.sce new file mode 100755 index 000000000..ab7366dd3 --- /dev/null +++ b/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 |