Guest User

Untitled

a guest
Apr 21st, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. delete g384x01.txt; diary g384x01.txt
  2. clear; clc; close all; echo on;
  3.  
  4.  
  5. R = 0.8206;
  6. n = 1.5;
  7. a = 1.39;
  8. b = 0.03913;
  9. %V = [0.3:.01:1.2];
  10. V = linspace(.3,1.2,1000);
  11. T = linspace(273,473,1000);
  12.  
  13. P = (((n*R.*T)./(V-b)-((n^2)*a)/(V.^2)));
  14.  
  15.  
  16. plot3(V,T,P);
  17. echo off; diary off;
Add Comment
Please, Sign In to add comment