using ideal gas law (v = RT/P), develop a matrix that contains the specific volume f or an ideal gas for which the rows indicate values of T from 200K to 1000K in increments of 200K, and the colunms indicate the values of p from 1 atm to 5 atm...
2 views (last 30 days)
Show older comments
...in increments of 1 atm.
R = .08206; T = [200:200:1000]; p = [1:5]'; v = (R.*T)/p
What is wrong
0 Comments
Answers (1)
See Also
Categories
Find more on Thermal Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!