Solving system of equations
Show older comments
Hi there,
I have multiple equations which determine the values in a circuit. I'm trying get the values which satisfy these equations (maybe even with conditions like nonnegative circuit values).
This is my code but I get these errors:
Error using symengine
Input arguments must be convertible to floating-point numbers.
Error in sym/privBinaryOp (line 1030)
Csym = mupadmex(op,args{1}.s, args{2}.s, varargin{:});
Error in sym/max (line 78)
C = privBinaryOp(X, Y, 'symobj::zipWithImplicitExpansion', 'symobj::maxComplex');
Error in Class_E (line 4)
eqn2 = C1==max(0, 1/(2*pi*RFfreq*R_L)*K_C-1.088E-12);
I really appreciate any help you can provide.
Best,
Safak
syms RFfreq R_L V_DD P_out C1 C2 L1 L2 K_P K_C K_X K_L
eqn1 = R_L==V_DD*V_DD/P_out*K_P;
eqn2 = C1==max(0, 1/(2*pi*RFfreq*R_L)*K_C-1.088E-12); %take 0 or what the right side equatates to (if nonzero)
eqn3 = C2==C_0;
eqn4 = L2==L_0+R_L/(2*pi*RFfreq)*K_X;
eqn5 = L1==R_L/(2*PI*RFfreq)*K_L;
eqn6 = K_L==1E6;
eqn7 = K_C==0.1836;
eqn8 = K_P==0.5768;
eqn9 = K_X==1.152;
eqn10 = V_DD==17;
eqn11 = P_out==15;
eqn12 = RFfreq==3.5E9;
eqn13 = C_0==1E-09;
eqn14 = L_0==1/(2*PI*RFfreq)^2/C_0;
eqns = [eqn1 eqn2 eqn3 eqn4 eqn5 eqn6 eqn7 eqn8 eqn9 eqn10 eqn11 eqn12];
sol=solve(eqns)
3 Comments
Walter Roberson
on 12 Aug 2020
is PI equal to pi ?
Mehmet Özesenlik
on 12 Aug 2020
Mehmet Özesenlik
on 12 Aug 2020
Accepted Answer
More Answers (1)
hosein Javan
on 12 Aug 2020
Edited: hosein Javan
on 12 Aug 2020
you must first define the unknowns in your system of equations. it seems you have 12 equations and therefore you must have 12 unknowns. if not 12 unknowns then reduce the number of equations to the number of unknowns. then correct the final line:
% define your unknowns in a vector like this x = [x1, x2, ..., x12]
sol=solve(eqns,x)
also eqn2 has a problem. it is defined in a way to compute the max of an unknown symbolic type and a real number 0. I suggest you solve the equations two times for each one of them and see which solution meets the condition.
4 Comments
Mehmet Özesenlik
on 12 Aug 2020
hosein Javan
on 12 Aug 2020
you're welcome. actually you didn't even need a system of equations. just define C_0 and L_0. this code already calculates R_L, C1 and L1:
K_L = 1E6;
K_C = 0.1836;
K_P = 0.5768;
K_X = 1.152;
V_DD = 17;
P_out = 15;
RFfreq = 3.5E9;
R_L = V_DD*V_DD/P_out*K_P
C1 = max(0, 1/(2*pi*RFfreq*R_L)*K_C-1.088E-12) %take 0 or what the right side equatates to (if nonzero)
L1 = R_L/(2*pi*RFfreq)*K_L
% define L_0 here
L2 = L_0+R_L/(2*pi*RFfreq)*K_X;
% define C_0 here
C2 = C_0;
Mehmet Özesenlik
on 12 Aug 2020
hosein Javan
on 12 Aug 2020
this way is way more efficient. you were using symbolic math toolbox which is dedicated for symbolic equations that are not ordinarily simple to solve or simplify by hand. furthermore your case was not a system of equations containing unknowns depending on each other. has the problem been solved yet?
Categories
Find more on Assumptions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!