Advertisement
epheterson

EAS4200 HW4 Problem 3.2 ELPheterson

Sep 18th, 2011
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.31 KB | None | 0 0
  1. function hw4_32
  2.  
  3. %Aluminum Alloy 7075 T6 Properties
  4. v = 0.33;
  5. E = 72E6; %Pa
  6.  
  7. %These values are manually changed out
  8. % between program runs for all 5 points.
  9. E1 = -0.004;
  10. E2 = -0.006;
  11.  
  12. E3 = v*(E1+E2)/(v-1)
  13.  
  14. S1 = E/((1+v)*(1-2*v))*((1-v)*E1+v*(E2+E3))
  15.  
  16. S2 = E/((1+v)*(1-2*v))*((1-v)*E2+v*(E1+E3))
  17.  
  18. S3 = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement