diff options
Diffstat (limited to '3636/CH12/EX12.3/Ex12_3.sce')
-rw-r--r-- | 3636/CH12/EX12.3/Ex12_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3636/CH12/EX12.3/Ex12_3.sce b/3636/CH12/EX12.3/Ex12_3.sce new file mode 100644 index 000000000..15894b9f9 --- /dev/null +++ b/3636/CH12/EX12.3/Ex12_3.sce @@ -0,0 +1,15 @@ +clear;
+clc;
+Length=4 //in micro-m
+Width=1 //in micro-m
+R=1000 //in ohm
+xj=1*10^-4 //junction depth in cm
+
+//Calculation
+N=Length/Width
+R0=R/N
+rho=R0*xj
+
+mprintf("Sheet resistance= %i ohm\n",R0)
+mprintf("average resistivity= %0.3f ohm-cm",rho)
+
|