From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3875/CH1/EX1.9/Ex1_9.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3875/CH1/EX1.9/Ex1_9.sce (limited to '3875/CH1/EX1.9/Ex1_9.sce') diff --git a/3875/CH1/EX1.9/Ex1_9.sce b/3875/CH1/EX1.9/Ex1_9.sce new file mode 100644 index 000000000..7ac8c7fff --- /dev/null +++ b/3875/CH1/EX1.9/Ex1_9.sce @@ -0,0 +1,22 @@ +clc; +clear; +R=30 // resistance in ohm +L= 20*10^-3 //inductance in H +f=1000/%pi //frequency in Hz +V=25 //in volt + +//calculation +// for (a) +inductance_l=2*%pi*f*L //in ohm +Z=sqrt(R^2+inductance_l^2) //in ohm +C=L/Z^2 + +mprintf("\n(a) The capacitance of the circuit is %0.0e F\n",C) + +//for(b) + +dynamic_imp=L/(C*R) //in ohm +I_min=V/dynamic_imp + +mprintf("\n(b) The value of current is = %0.1f A",I_min) + -- cgit