diff options
Diffstat (limited to '2243/CH13/EX13.9/Ex13_9.sce')
-rwxr-xr-x | 2243/CH13/EX13.9/Ex13_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2243/CH13/EX13.9/Ex13_9.sce b/2243/CH13/EX13.9/Ex13_9.sce new file mode 100755 index 000000000..1c6f9e124 --- /dev/null +++ b/2243/CH13/EX13.9/Ex13_9.sce @@ -0,0 +1,8 @@ +clc();
+clear;
+//Given :
+m = 9.109*10^-31;// eletcron mass in kg
+e = 1.6*10^-19; // electron charge in C
+//T = (2*pi*m)/(B*e) , here B is not given
+T = (2*%pi*m)/e;// time in s
+printf("T = %.2f x 10^-11 / B ",T*10^11);
|