diff options
Diffstat (limited to '2132/CH3/EX3.1')
-rwxr-xr-x | 2132/CH3/EX3.1/Example3_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2132/CH3/EX3.1/Example3_1.sce b/2132/CH3/EX3.1/Example3_1.sce new file mode 100755 index 000000000..80c192384 --- /dev/null +++ b/2132/CH3/EX3.1/Example3_1.sce @@ -0,0 +1,12 @@ +//Example 3.1
+clc;
+clear;
+close;
+format('v',7);
+//Given data :
+D=30*10^-2;//in m
+F=9810;//in N
+A=%pi*D^2/4;//in m^2
+p=F/A;//in N/m^2 or Pa
+p=p/1000;//kPa
+disp(p,"Intensity of pressure at the bottom of container in kPa : ");
|