blob: 6d987c9aa48bd08d2e7a17d43da755eb9ab3614c (
plain)
1
2
3
4
5
6
7
|
// determine the absolute pressure in the tank
clc
patom=47.2 // pressure of an atom
pg=40 // pressure at 40kpa from table
pa=patom-pg
mprintf('\n absoulte pressure in the tank is %f kPa',pa)
|