summaryrefslogtreecommitdiff
path: root/2132/CH2/EX2.7
diff options
context:
space:
mode:
Diffstat (limited to '2132/CH2/EX2.7')
-rwxr-xr-x2132/CH2/EX2.7/Example2_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2132/CH2/EX2.7/Example2_7.sce b/2132/CH2/EX2.7/Example2_7.sce
new file mode 100755
index 000000000..ae74b6cb6
--- /dev/null
+++ b/2132/CH2/EX2.7/Example2_7.sce
@@ -0,0 +1,14 @@
+//Example 2.7
+clc;
+clear;
+close;
+
+//Given data :
+format('v',5);
+d=6;//in mm
+d=d/1000;//in m
+sigma=0.0755;//N/m
+//At equillibrium : p*%pi*r^2=sigma*2*%pi*r
+r=d/2;//in m
+p=2*sigma/r;//N/m^2
+disp(p,"Intensity of pressure in N/m^2 or Pascals : ");