diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /215/CH13/EX13.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |