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 --- 377/CH1/EX1.5/1_5.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 377/CH1/EX1.5/1_5.sce (limited to '377/CH1/EX1.5/1_5.sce') diff --git a/377/CH1/EX1.5/1_5.sce b/377/CH1/EX1.5/1_5.sce new file mode 100644 index 000000000..5a770cfb5 --- /dev/null +++ b/377/CH1/EX1.5/1_5.sce @@ -0,0 +1,16 @@ +disp("T=16*exp(-2αβ/((1+β/α)^2)*((1+α/β)^2)))"); +E=1; +V0=4; +pi=3.14; +m0=1.67*(10^-27)*1.6*(10^-13); +h=1.055*10^-34; +disp("β^2=4*pi^2*m0*(V0-E)/(h^2)"); +printf('\n'); +disp("α^2=4*pi^2*m0*E/(h^2)"); +b1=sqrt(2*m0*(V0-E)/(h^2)); +printf('\n The value of β is %f*10^14',b1*10^-14); +c=3^0.5; //say c=β/α +a=1.9*10^14; +b=10^-14; +T=16*(exp(((-2)*a*b))/(((1+c)^2)*((1+(1/c))^2))); +printf('\n The value of T is %fpercent',T*100); \ No newline at end of file -- cgit