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 /1052/CH11/EX11.2/112.sce | |
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 '1052/CH11/EX11.2/112.sce')
-rwxr-xr-x | 1052/CH11/EX11.2/112.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1052/CH11/EX11.2/112.sce b/1052/CH11/EX11.2/112.sce new file mode 100755 index 000000000..6f3b218e2 --- /dev/null +++ b/1052/CH11/EX11.2/112.sce @@ -0,0 +1,15 @@ +clc;
+//Example 11.2
+//Page no. 113
+printf("Example 11.2-Page no.113\n\n")
+//given
+//Pressure(P),Temp.(T),Molecular wt. of gas(M)
+P=1//atm
+T_d=60//degree F
+M=29//gram
+//Gas constant R
+R=.73
+T=T_d+460// rankin
+//density of gaS
+rho=(P*M)/(R*T)
+printf("density of gas rho =%flb/ft^3",rho)
|