From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2792/CH6/EX6.7/Ex6_7.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 2792/CH6/EX6.7/Ex6_7.sce (limited to '2792/CH6/EX6.7/Ex6_7.sce') diff --git a/2792/CH6/EX6.7/Ex6_7.sce b/2792/CH6/EX6.7/Ex6_7.sce new file mode 100755 index 000000000..6d837f2c7 --- /dev/null +++ b/2792/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,20 @@ +clc +n = 10^18 +disp("n= "+string(n)+"cm^-3") //initializing value of doping +W = 25*10^-4 +disp("W= "+string(W)+"cm") //initializing value of width of the resistor +R = 100*10^3 +disp("R = "+string(R)+"ohm") //initializing value of resistance +e = 1.6*10^-19 +disp("e= "+string(e)+"C")//initializing value of charge of electron +D= 5000*10^-8 +disp("D= "+string(D)+"cm") //initializing value of thickness of film +mu_=100 +disp("mu_= "+string(mu_)+"cm^2(Vs)^-1") //initializing value of mobility +Ro = 1/(n*e*mu_*D) +disp("The sheet resistance of the film is ,Ro = 1/(n*e*mu_*D) = "+string(Ro)+" ohm/square")//calculation +L = (R*W)/Ro +disp("The length of the desired resistor is ,L = (R*W)/Ro = "+string(L)+" cm")//calculation + + + -- cgit