diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /548/DEPENDENCIES/2_3data.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '548/DEPENDENCIES/2_3data.sci')
-rwxr-xr-x | 548/DEPENDENCIES/2_3data.sci | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/548/DEPENDENCIES/2_3data.sci b/548/DEPENDENCIES/2_3data.sci new file mode 100755 index 000000000..66e4c6941 --- /dev/null +++ b/548/DEPENDENCIES/2_3data.sci @@ -0,0 +1,8 @@ +//Air flowing at high speed in a wind tunnel has a pressure and temperature equal to 0.3 atm and -100 degree celcius,respectively.what is specific volme?
+//1 atm=1.01*10^5 Pa or N/m^2
+P=.3*1.01*10^5;//in N/m^2
+//0 degree=273 Kelvin
+T=-100+273;//in Kelvin
+R=287;//gas constant for air.(j/kg.k)
+density=P/(R*T)
+v=1/density
\ No newline at end of file |