diff options
Diffstat (limited to '3875/CH1/EX1.9/Ex1_9.sce')
-rw-r--r-- | 3875/CH1/EX1.9/Ex1_9.sce | 22 |
1 files changed, 22 insertions, 0 deletions
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)
+
|