diff options
Diffstat (limited to '3793/CH3/EX3.1/exp_3_1.sce')
-rw-r--r-- | 3793/CH3/EX3.1/exp_3_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3793/CH3/EX3.1/exp_3_1.sce b/3793/CH3/EX3.1/exp_3_1.sce new file mode 100644 index 000000000..34ae376bd --- /dev/null +++ b/3793/CH3/EX3.1/exp_3_1.sce @@ -0,0 +1,9 @@ +clear;
+clc;
+//there are 9 distances and self GMD of conducto will be the ninth root of the product of the nine distance
+d12=2;//consider 2 as 2r r=radius
+d23=2;//consider 2 as 2r r=radius
+d13=2; //consider 2 as 2r r=radius
+r1=.7788; // onsider .7788 as .7788r
+SGMD=((((.7788)^3)*(d12^2)*(d23^2)*(d13^2))^(1/9))
+mprintf("Self-GMD = %.4fr",SGMD);
|