diff options
Diffstat (limited to '3636/CH12/EX12.3')
-rw-r--r-- | 3636/CH12/EX12.3/Ex12_3.sce | 15 | ||||
-rw-r--r-- | 3636/CH12/EX12.3/Ex12_3.txt | 2 |
2 files changed, 17 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)
+
diff --git a/3636/CH12/EX12.3/Ex12_3.txt b/3636/CH12/EX12.3/Ex12_3.txt new file mode 100644 index 000000000..e999ec168 --- /dev/null +++ b/3636/CH12/EX12.3/Ex12_3.txt @@ -0,0 +1,2 @@ + Sheet resistance= 250 ohm
+average resistivity= 0.025 ohm-cm
\ No newline at end of file |