diff options
Diffstat (limited to '2021/CH21/EX21.11/EX21_11.sce')
-rwxr-xr-x | 2021/CH21/EX21.11/EX21_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH21/EX21.11/EX21_11.sce b/2021/CH21/EX21.11/EX21_11.sce new file mode 100755 index 000000000..fb204145d --- /dev/null +++ b/2021/CH21/EX21.11/EX21_11.sce @@ -0,0 +1,11 @@ +//Finding of load on Ram
+//Given
+D=0.2;
+L=6;
+p=588.6*10^4;
+//To Find
+A=(%pi/4)*D^2;
+W=p*A;
+capacity=W*L;
+disp("Load ="+string(W)+" Newtons");
+disp("Capacity of the accumulator ="+string(capacity)+" N-m");
|