solve unknown constants A, B and C
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
Accepted Answer
More Answers (0)
Categories
Find more on Mathematics 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!