summaryrefslogtreecommitdiff
path: root/3763/CH4/EX4.1/Ex4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3763/CH4/EX4.1/Ex4_1.sce')
-rw-r--r--3763/CH4/EX4.1/Ex4_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3763/CH4/EX4.1/Ex4_1.sce b/3763/CH4/EX4.1/Ex4_1.sce
new file mode 100644
index 000000000..3140018cc
--- /dev/null
+++ b/3763/CH4/EX4.1/Ex4_1.sce
@@ -0,0 +1,16 @@
+clear
+//
+//
+//
+
+//Variable declaration
+E=10**4*1.6*10**-19 //kinetic energy(J)
+m=1.675*10**-27 //mass(kg)
+h=6.625*10**-34 //planck's constant
+
+//Calculation
+v=sqrt(2*E/m) //velocity(m/s)
+lamda=h/(m*v) //de broglie wavelength(m)
+
+//Result
+printf("\n de broglie wavelength is %0.5f angstrom",lamda*10**10)