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/CH6/EX6.3/6_3.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 377/CH6/EX6.3/6_3.sce (limited to '377/CH6/EX6.3/6_3.sce') diff --git a/377/CH6/EX6.3/6_3.sce b/377/CH6/EX6.3/6_3.sce new file mode 100644 index 000000000..401293f1b --- /dev/null +++ b/377/CH6/EX6.3/6_3.sce @@ -0,0 +1,14 @@ +disp("σn=q*μe*n and σp=q*μh*p"); +n=10^16;p=10^4; +a=626; //say μe=a +b=292; //say μh=b +q=1.6*10^-19; +c=q*a*n; //say c=σn +d=q*b*p*10^13; //say d=σp +printf('\n The value of σn is %f/ohm/cm',c); +printf('\n The value of σp is %f*10^-13/ohm/cm',d); +e=c+(d*10^-13); //say e=σ=σn+σp +A=2*10^-2; +l=2.5; +R=l/(e*A); +printf('\n The value of resistance is %fohm',R); \ No newline at end of file -- cgit