diff options
Diffstat (limited to '1466/CH20/EX20.3/20_3.sce')
-rwxr-xr-x | 1466/CH20/EX20.3/20_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1466/CH20/EX20.3/20_3.sce b/1466/CH20/EX20.3/20_3.sce new file mode 100755 index 000000000..53524c8df --- /dev/null +++ b/1466/CH20/EX20.3/20_3.sce @@ -0,0 +1,10 @@ +
+clc
+//initialisation of variables
+p=24//lb/in^2
+L=5//in
+l=2//in
+//CALCULATIONS
+P=p*L*L/(l*l)
+//RESULTS
+printf ('\n pressure= %.f lb/in^2',P)
|