In: Electrical Engineering
define a matlab question and solve with matlab codes (rlc circuts)
Question:
Write a MATLAB code to find whether the given series RLC circuit is critically damped or over damped or underdamped by taking the R,L,C values as input.
Aswer:
The below code executes to show whether the system is critically damped or over damped or underdamped by comparing the values of a, b
here a= (R/(2*l))^2, b= 1/(l*c)
The program takes values of the resistor, inductor and capacitor from the user and do the computation
In the below pic we have given the values of resistor, inductor and capacitor as 2ohms, 1henry, 0.2 faraday respectively and the output is given as the circuit is underdamped
In the below pic we have given the values of resistor, inductor and capacitor as 2ohms, 0.2henry, 1 faraday respectively and the output is given as the circuit is overdamped
In the below pic we have given the values of resistor, inductor and capacitor as 1ohms, 1henry, 4 faraday respectively and the output is given as the circuit is criticallydamped