Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. data = SpecimenRawData1; %polyeth slow
  2. data = table2array(data);
  3. A = 12.62 * 3.33 * 10^-6; %m^2
  4.  
  5. time = data(35:end,1);
  6. strain = (data(1:6225,4)); %unitless
  7. stress = data(1:6225,3)./(A * 10^6); %GPa
  8.  
  9. [YS p] = max(stress)
  10. UTS = stress(end) %GPa
  11. eYS = strain(p)
  12. eUTS = strain(end) %GPa
  13. preE = polyfit(strain(1:4), stress(1:4),1);
  14. E = preE(1)
  15. duct = strain(end) - stress(end)/E
  16.  
  17. plot(strain,stress*10^3), xlabel('\epsilon_{E}'), ylabel('\sigma_{E} (MPa)'), title('Stress Strain Curve of Polyethylene for $\dot{\epsilon}$ = .05/min', 'Interpreter','latex');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement