From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 215/CH13/EX13.5/ex13_5.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 215/CH13/EX13.5/ex13_5.sce (limited to '215/CH13/EX13.5') 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 -- cgit