diff options
Diffstat (limited to '3636/CH6/EX6.4/Ex6_4.sce')
-rw-r--r-- | 3636/CH6/EX6.4/Ex6_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3636/CH6/EX6.4/Ex6_4.sce b/3636/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..7cdbad1f7 --- /dev/null +++ b/3636/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,11 @@ +clc;
+clear;
+Ip0=0.5*10^-3 //in A
+tau_p0=5*10^-7 //in s
+Const=0.026 //constant for kT/e in V
+
+//Calculation
+Cd0=(1/(2*Const))*tau_p0*Ip0
+
+mprintf("Diffusion Capacitance= %.1e F",Cd0)
+//The answers vary due to round off error
|