diff options
Diffstat (limited to '3769/CH24/EX24.17/Ex24_17.sce')
-rw-r--r-- | 3769/CH24/EX24.17/Ex24_17.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3769/CH24/EX24.17/Ex24_17.sce b/3769/CH24/EX24.17/Ex24_17.sce new file mode 100644 index 000000000..093761a09 --- /dev/null +++ b/3769/CH24/EX24.17/Ex24_17.sce @@ -0,0 +1,15 @@ +clear +//Given +E=-13.6*1.9*10**-19 //J +m=9*10**9 +e=1.6*10**-19 +n=1 +c=3*10**8 + +//Calculation +r=(-e**2*m)/(2.0*E) +v=c/(137*n) + +//Result +printf("\n Orbital radius is %0.1f *10**-11 m",r*10**11) +printf("\n Velocity of the electron is %0.1f *10**6 m/s",v*10**-6) |