diff options
Diffstat (limited to '3647/CH2/EX2.2/2_2.sce')
-rw-r--r-- | 3647/CH2/EX2.2/2_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3647/CH2/EX2.2/2_2.sce b/3647/CH2/EX2.2/2_2.sce new file mode 100644 index 000000000..c7d940264 --- /dev/null +++ b/3647/CH2/EX2.2/2_2.sce @@ -0,0 +1,12 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//radius of gyration
+//initialisation of variables
+m=2.58065//slug ft^3
+w=2.144//in
+//CALCULATIONS
+R=sqrt(m/w)//ft
+//RESULTS
+printf('The radius of gyration=% f ft',R)
|