solve unknown constants A, B and C
5 views (last 30 days)
Show older comments
%% I try to calculate the three unknown constants A,B, and C based on the 1, 2, and 3 equation that I marked by pencil
%% But There is an error message indicates that "Unrecognized function or variable 'Mxy'"
%% How can I solve the three equations, if there is any suggestion, please feel free to let me know!
%% Thank you very much!!
clc
clear
syms A B C
n=3;
y=1;
a=600;
h=15;
v=0.3;
beta=sqrt((n^2*pi^2/(a^2))+(10/h^2));
eqns=[Mxy==-A*(1-v)+B*(1-v+(2/5)*(n^2*pi^2*h^2)/(a^2))+C*((a^2/(n^2*pi^2))+(h^2/5))*(n^2*pi^2/a^2)*cos(n*pi*y/a),Mx==(-A*(1-v)+2*B*(1+((n^2*pi^2*h^2)/(5*a^2)))+((C*beta*a*h^2)/(5*n*pi)))*(n^2*pi^2/a^2)*sin(n*pi*y),...
Qx==-(2*B*(n*pi/a)^3+C*(n*pi/a))*sin(n*pi*y/a)];
S=solve(eqns,A,B,C)
A=S.A
B=S.B
C=S.C
0 Comments
Accepted Answer
Star Strider
on 17 Apr 2022
Define ‘Mxy‘, ‘Mx’, and ‘Qx’ in the syms declaration if no values ared defined for them.
%% I try to calculate the three unknown constants A,B, and C based on the 1, 2, and 3 equation that I marked by pencil
%% But There is an error message indicates that "Unrecognized function or variable 'Mxy'"
%% How can I solve the three equations, if there is any suggestion, please feel free to let me know!
%% Thank you very much!!
% clc
% clear
syms A B C Mxy Mx Qx
n=3;
y=1;
a=600;
h=15;
v=0.3;
beta=sqrt((n^2*pi^2/(a^2))+(10/h^2));
eqns=[Mxy==-A*(1-v)+B*(1-v+(2/5)*(n^2*pi^2*h^2)/(a^2))+C*((a^2/(n^2*pi^2))+(h^2/5))*(n^2*pi^2/a^2)*cos(n*pi*y/a),Mx==(-A*(1-v)+2*B*(1+((n^2*pi^2*h^2)/(5*a^2)))+((C*beta*a*h^2)/(5*n*pi)))*(n^2*pi^2/a^2)*sin(n*pi*y),...
Qx==-(2*B*(n*pi/a)^3+C*(n*pi/a))*sin(n*pi*y/a)];
S = solve(eqns,A,B,C);
A = vpa(S.A, 5)
B = vpa(S.B, 5)
C = vpa(S.C, 5)
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Mathematics and Optimization 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!