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 /172/CH6/EX6.2/ex2.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 '172/CH6/EX6.2/ex2.sce')
-rwxr-xr-x | 172/CH6/EX6.2/ex2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/172/CH6/EX6.2/ex2.sce b/172/CH6/EX6.2/ex2.sce new file mode 100755 index 000000000..29798c1aa --- /dev/null +++ b/172/CH6/EX6.2/ex2.sce @@ -0,0 +1,9 @@ +//example 2
+//work done for adding the fluid
+clear
+clc
+P=600 //pressure in kPa
+m=1 //in kg
+v=0.001 //specific volume in m^3/kg
+W=P*m*v //necessary work in kJ for adding the fluid
+printf(" \n hence,the work involved in this process is W=%.3f kJ. \n",W)
\ No newline at end of file |