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/CH9/EX9.15/9_15.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 608/CH9/EX9.15/9_15.sce (limited to '608/CH9/EX9.15/9_15.sce') diff --git a/608/CH9/EX9.15/9_15.sce b/608/CH9/EX9.15/9_15.sce new file mode 100755 index 000000000..f4599dcb7 --- /dev/null +++ b/608/CH9/EX9.15/9_15.sce @@ -0,0 +1,12 @@ +//Problem 9.15: The mutual inductance between two coils is 18 mH. Calculate the steady rate of change of current in one coil to induce an e.m.f. of 0.72 V in the other. + +//initializing the variables: +M = 0.018; // in Henry +N = 2; // no. of coils +E2 = 0.72; // in Volts + +//calculation: +dI1dt = abs(E2)/M + +printf("\n\n Result \n\n") +printf("\n rate of change of current dI1/dt = %.0f A/s\n", dI1dt) \ No newline at end of file -- cgit