diff options
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)
|