diff options
Diffstat (limited to '2231/CH1/EX1.2')
-rwxr-xr-x | 2231/CH1/EX1.2/Ex_1_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2231/CH1/EX1.2/Ex_1_2.sce b/2231/CH1/EX1.2/Ex_1_2.sce new file mode 100755 index 000000000..209ec6816 --- /dev/null +++ b/2231/CH1/EX1.2/Ex_1_2.sce @@ -0,0 +1,11 @@ +//Example 1_2
+clc;
+clear;close;
+
+//Given data
+dv_dt=190;//V/µs
+IC=8*10^-3;//A
+
+//Solution :
+C=IC/(dv_dt/10^-6);//F
+disp(C,"Capacitance of depletion layer in F : ");
|