diff options
Diffstat (limited to '3648/CH25/EX25.10/Ex25_10.sce')
-rw-r--r-- | 3648/CH25/EX25.10/Ex25_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH25/EX25.10/Ex25_10.sce b/3648/CH25/EX25.10/Ex25_10.sce new file mode 100644 index 000000000..4d364a398 --- /dev/null +++ b/3648/CH25/EX25.10/Ex25_10.sce @@ -0,0 +1,11 @@ +//Example 25_10
+clc();
+clear;
+//To calculate the be-broglies wavelength
+h=6.63*10^-34 //units in J
+c=5*10^7 //units in meters/sec
+m=9.1*10^-31 //Units in Kg
+lamda=h/(m*c) //units in meters
+printf("The be-broglies wavelength is lamda=")
+disp(lamda)
+printf("Meters")
|