common multiplicity.or I can't obtain results.
Afficher commentaires plus anciens
clear all
clc
syms a1 a2 a3 a4 a5 z lamda El atm L m
N1=(z^2)*(z-L);
N2=(z^3)*(z-L);
N3=(z^4)*((z-L)^2);
v=a1*N1+a2*N2+a3*N3
y=diff(v,2,z)
pi=(0.5*El*atm*int(y^2,z,0,L)-(0.5*lamda*m*int(v^2,z,0,L)));
d1=diff(pi,a1);
d2=diff(pi,a2);
d3=diff(pi,a3);
d1a1=diff(d1,a1);
d1a2=diff(d1,a2);
d1a3=diff(d1,a3);
d2a1=diff(d2,a1);
d2a2=diff(d2,a2);
d2a3=diff(d2,a3);
d3a1=diff(d3,a1);
d3a2=diff(d3,a2);
d3a3=diff(d3,a3);
C=[d1a1 d1a2 d1a3;d2a1 d2a2 d2a3;d3a1 d3a2 d3a3]
D=det(C)
s=solve('(128*El^3*L^17*atm^3)/245 - (2944*El^2*L^21*atm^2*lamda*m)/1226225 + (77447*El*L^25*atm*lamda^2*m^2)/87405318000 - (29*L^29*lamda^3*m^3)/2097727632000','lamda')
w=s.^0.5
Hello I have written this code.and I need to take the solution common multiplicity paranthesis. ((El*atm)/(L^4*m))^0.5=1 please help me. I can't obtain clear results.
w1=15, w2=76, w3=105, i need to obtain these results
1 commentaire
STamer
le 22 Mar 2012
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Data Type Identification dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!