diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2792/CH6/EX6.7/Ex6_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2792/CH6/EX6.7/Ex6_7.sce')
-rwxr-xr-x | 2792/CH6/EX6.7/Ex6_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
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
+
+
+
|