diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /728/CH9/EX9.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '728/CH9/EX9.11')
-rwxr-xr-x | 728/CH9/EX9.11/Ex9_11.sce | 14 | ||||
-rwxr-xr-x | 728/CH9/EX9.11/Ex9_11.txt | 14 | ||||
-rwxr-xr-x | 728/CH9/EX9.11/Ex9_11_ans.txt | 8 |
3 files changed, 36 insertions, 0 deletions
diff --git a/728/CH9/EX9.11/Ex9_11.sce b/728/CH9/EX9.11/Ex9_11.sce new file mode 100755 index 000000000..690020d67 --- /dev/null +++ b/728/CH9/EX9.11/Ex9_11.sce @@ -0,0 +1,14 @@ +//Caption:Calculate (i)-breakdown voltage ,(ii)-breakdown electric field.
+//Exa:9.11
+clc;
+clear;
+close;
+E_r=11.8;
+E_o=8.85*10^-12;
+N=3*10^21;//in per cubic meter
+L=6.2*10^-6;//in meter
+q=1.6*10^-19;//in coulombs
+V_bd=q*N*L^2/(E_o*E_r);
+E_bd=V_bd/L;
+disp(V_bd,'Breakdown voltage (in volts) =');
+disp(E_bd,'Breakdown electric field (in V/m) =');
\ No newline at end of file diff --git a/728/CH9/EX9.11/Ex9_11.txt b/728/CH9/EX9.11/Ex9_11.txt new file mode 100755 index 000000000..690020d67 --- /dev/null +++ b/728/CH9/EX9.11/Ex9_11.txt @@ -0,0 +1,14 @@ +//Caption:Calculate (i)-breakdown voltage ,(ii)-breakdown electric field.
+//Exa:9.11
+clc;
+clear;
+close;
+E_r=11.8;
+E_o=8.85*10^-12;
+N=3*10^21;//in per cubic meter
+L=6.2*10^-6;//in meter
+q=1.6*10^-19;//in coulombs
+V_bd=q*N*L^2/(E_o*E_r);
+E_bd=V_bd/L;
+disp(V_bd,'Breakdown voltage (in volts) =');
+disp(E_bd,'Breakdown electric field (in V/m) =');
\ No newline at end of file diff --git a/728/CH9/EX9.11/Ex9_11_ans.txt b/728/CH9/EX9.11/Ex9_11_ans.txt new file mode 100755 index 000000000..4fe1ffb5a --- /dev/null +++ b/728/CH9/EX9.11/Ex9_11_ans.txt @@ -0,0 +1,8 @@ + Breakdown voltage (in volts) =
+
+ 176.68486
+
+ Breakdown electric field (in V/m) =
+
+ 28497558.
+
\ No newline at end of file |