diff options
Diffstat (limited to '3753/CH5/EX5.8/Ex5_8.sce')
-rw-r--r-- | 3753/CH5/EX5.8/Ex5_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3753/CH5/EX5.8/Ex5_8.sce b/3753/CH5/EX5.8/Ex5_8.sce new file mode 100644 index 000000000..bab31cff6 --- /dev/null +++ b/3753/CH5/EX5.8/Ex5_8.sce @@ -0,0 +1,15 @@ +//Example 5.8, Page number 5.30 + +clc;clear;close + +// variable declaration +V=2.405//unitless +lamda=1.3 // in m +N_a=0.05//unitless + +// Calculations +a_max=(V*lamda)/(2*%pi*N_a) // in m + +// Result +printf("Maximum core radius = %.2f micro-m",(a_max)) + |