diff options
Diffstat (limited to '3636/CH5/EX5.7/Ex5_7.sce')
-rw-r--r-- | 3636/CH5/EX5.7/Ex5_7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3636/CH5/EX5.7/Ex5_7.sce b/3636/CH5/EX5.7/Ex5_7.sce new file mode 100644 index 000000000..9a5562200 --- /dev/null +++ b/3636/CH5/EX5.7/Ex5_7.sce @@ -0,0 +1,12 @@ +clc;
+clear;
+Na=10^17 //in cm^-3
+epsilon_0=8.85*10^-14 //in F/cm
+Emax=5*10^5 //peak electric field in V/cm
+e=1.6*10^-19 //in J
+epsilon_si=88.76*10^-14 //in F/cm
+
+//Calculation
+E=(Emax*Emax*epsilon_si)/(e*Na)
+
+mprintf("Breakdown voltage= %2.2f V",E) //The answers vary due to round off error
|