diff options
Diffstat (limited to '3769/CH5/EX5.19/Ex5_19.sce')
-rw-r--r-- | 3769/CH5/EX5.19/Ex5_19.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3769/CH5/EX5.19/Ex5_19.sce b/3769/CH5/EX5.19/Ex5_19.sce new file mode 100644 index 000000000..1bc0d6d00 --- /dev/null +++ b/3769/CH5/EX5.19/Ex5_19.sce @@ -0,0 +1,15 @@ +clear +//Given +m=0.45 //Kg +R=0.0014 //ohm +a=1.78*10**-8 //ohm +d=8.93*10**3 //Kg/m**3 + +//Calculation +// +l=sqrt(R*m/(a*d)) +r=sqrt(m/(%pi*d*1.99)) + +//Result +printf("\n The value of length is %0.2f m",l) +printf("\n The value of radius is %0.2f mm",r*10**3) |