Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.31 KB | None | 0 0
  1. tauD=((MvTotD*16)/(pi*slutDiameterD.^3)+ (4*TmaxD/(pi*slutDiameterD.^2)));
  2.  
  3. h3=figure('name','Tau-plots');
  4. plot(Xiy, tauD)
  5.  
  6. sigmaD = ((4*Nmax)/(pi*D.^2) + (32*MtotD)/(pi*D.^3))
  7.  
  8. h4=figure('name','sigma-plot');
  9. plot(Xiy, sigmaD)
  10.  
  11. mises=sqrt(3*(tauD.^2) + sigmaD.^2)
  12. h5=figure('name','mises');
  13. plot(mises)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement