How can I use Symbolic Math Toolbox functionalities to solve for the transfer function of an arbitrary RLC circuit?

27 次查看(过去 30 天)
I have an RLC circuit for which after applying Kirchhoff's current law at a node I obtain the following expressions:
I1 = V1/R2;
I2 = (V2 - V1)/(L*s + R1);
I3 = (V2 - V1)*s*C;
I1 = I2 + I3;
How can I use the Symbolic Math Toolbox to find the transfer function, expressed by V2 / V1, in terms of the R-L-C component values?

采纳的回答

MathWorks Support Team
编辑:MathWorks Support Team 2023-11-17
You can follow the approach below:
>> syms R1 R2 L C V2 V1 s;
>> eqns = [V1/R2 == (V2 - V1)/(L*s + R1) + (V2 - V1)*s*C]; % representing the equation I1 = I2 + I3 using their exact expressions
>> V2tmp = solve(eqns, V2); % Here I am solving for the above equation for the variable "V2"
>> TF = simplify(V2tmp/V1) % this step is computing the transfer function and calling the "simplify" on the result
TF =(R1 + R2 + L*s + C*L*R2*s^2 + C*R1*R2*s)/(R2*(C*L*s^2 + C*R1*s + 1))
Here are the documentation links for "solve" and "simplify" for your reference:
Similar steps can be followed to generate the transfer function for any RLC circuit using Symbolic Math Toolbox.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

产品


版本

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by