blob: dab401ed1d1c1b9e39e5db4d77fdffb23c3f4c54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 %d microF\n",C/10^-6) //converting from F to mF dividing by 10^-6
//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)
|