summaryrefslogtreecommitdiff
path: root/3825/CH1/EX1.3
diff options
context:
space:
mode:
Diffstat (limited to '3825/CH1/EX1.3')
-rw-r--r--3825/CH1/EX1.3/Ex1_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3825/CH1/EX1.3/Ex1_3.sce b/3825/CH1/EX1.3/Ex1_3.sce
new file mode 100644
index 000000000..bd07bb2da
--- /dev/null
+++ b/3825/CH1/EX1.3/Ex1_3.sce
@@ -0,0 +1,11 @@
+clc
+Pa=101.325 //atmospheric pressure in kPa
+A=0.05 //cross sectional area of piston in metre square
+k=50 //spring constant in kN/m
+V0=0.1 //initial volume of gas in metre cube
+V=0.2 //volume of gas at any instant during expansion in metre cube
+P=Pa+((k*(V-V0))/(A*A)); //force balance equation
+mprintf("P=%fkPa",P)//final pressure on gas cylinder
+
+
+