diff options
Diffstat (limited to '1052/CH24/EX24.4/244.sce')
-rwxr-xr-x | 1052/CH24/EX24.4/244.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1052/CH24/EX24.4/244.sce b/1052/CH24/EX24.4/244.sce new file mode 100755 index 000000000..0525d89d9 --- /dev/null +++ b/1052/CH24/EX24.4/244.sce @@ -0,0 +1,10 @@ +clc;
+//Exmple 24.4
+//page no 354
+printf("Example 24.4 page no 354\n\n");
+//a particle is spining in a 3 inch ID centrifuge
+r=3/12//radius of centrifuge,ft
+omega=30//rotational speed,rad/s
+g=32.2
+G=round(r*omega^2/g)
+printf("\n G=%f ",G);
|