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 --- 2273/CH4/EX4.5/ex4_5.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 2273/CH4/EX4.5/ex4_5.sce (limited to '2273/CH4/EX4.5') diff --git a/2273/CH4/EX4.5/ex4_5.sce b/2273/CH4/EX4.5/ex4_5.sce new file mode 100755 index 000000000..7ad474cc8 --- /dev/null +++ b/2273/CH4/EX4.5/ex4_5.sce @@ -0,0 +1,18 @@ +//Find the loop inductance +clear; +clc; +//soltion +//given +r=1/2;//cm//radius of the conductor +re=r*exp(-1/4); +d12=200;//cm//spacing b/w 1&2 +d11_=300;//cm//spacing b/w 1&1' +d12_=sqrt((300)^2+(200)^2);//cm//spacing b/w 1&2' +d21_=d12_;//cm//spacing b/w 2&1' +d22_=300;//cm//spacing b/w 2&2' +Dm=(d11_*d12_*d21_*d22_)^(1/4); +printf("Mutual GMD= %.3fcm\n",Dm); +Ds=(re*d12*re*d12)^(1/4); +printf("Self GMD= %.3fcm\n",Ds); +L=0.4*log(Dm/Ds); +printf("Loop Inductance of line= %.3fmH/km\n",L); -- cgit