From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3755/CH6/EX6.36/Ex6_36.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 3755/CH6/EX6.36/Ex6_36.sce (limited to '3755/CH6/EX6.36/Ex6_36.sce') diff --git a/3755/CH6/EX6.36/Ex6_36.sce b/3755/CH6/EX6.36/Ex6_36.sce new file mode 100644 index 000000000..8a2bc2d4f --- /dev/null +++ b/3755/CH6/EX6.36/Ex6_36.sce @@ -0,0 +1,22 @@ +clear +// +// +// + +//Variable declaration +h=6.63*10^-34; //planck's constant(J-sec) +e=1.602*10^-19; //charge of electron(c) +L=0.2*10^-9; //width(m) +n5=5; +En=10^3; //energy(eV) +E5=230; //energy of particle(eV) + +//Calculations2 +E5=230*e; //energy(J) +E1=E5/n5^2; //energy in 1st state(J) +m=h^2/(8*E1*L^2); //mass of particle(kg) +n=sqrt(En*e/E1); //quantum state + +//Result +printf("\n mass of particle is %0.1f *10^-31 kg",m*10^31) +printf("\n quantum state is %0.1f ",n) -- cgit