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 --- 608/CH43/EX43.03/43_03.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 608/CH43/EX43.03/43_03.sce (limited to '608/CH43/EX43.03') diff --git a/608/CH43/EX43.03/43_03.sce b/608/CH43/EX43.03/43_03.sce new file mode 100755 index 000000000..027857493 --- /dev/null +++ b/608/CH43/EX43.03/43_03.sce @@ -0,0 +1,13 @@ +//Problem 43.03: Two coils have self inductances of 250 mH and 400 mH respectively. Determine the magnetic coupling coefficient of the pair of coils if their mutual inductance is 80 mH. + +//initializing the variables: +La = 250E-3; // in Henry +Lb = 400E-3; // in Henry +M = 80E-3; // in Henry + +//calculation: +//coupling coefficient, +k = M/(La*Lb)^0.5 + +printf("\n\n Result \n\n") +printf("\n coupling coefficient, is %.3f",k) \ No newline at end of file -- cgit