diff options
Diffstat (limited to '728/CH9/EX9.5')
-rwxr-xr-x | 728/CH9/EX9.5/Ex9_5.sce | 10 | ||||
-rwxr-xr-x | 728/CH9/EX9.5/Ex9_5.txt | 10 | ||||
-rwxr-xr-x | 728/CH9/EX9.5/Ex9_5_ans.txt | 4 |
3 files changed, 24 insertions, 0 deletions
diff --git a/728/CH9/EX9.5/Ex9_5.sce b/728/CH9/EX9.5/Ex9_5.sce new file mode 100755 index 000000000..5616bbe89 --- /dev/null +++ b/728/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,10 @@ +//Caption:Calculate (i)-power gain in dB ,(ii)-power gain if it is USB converter.
+//Exa:9.5
+clc;
+clear;
+close;
+N_a=2.5*10^16;//per cubic cm
+J=33;//in kA/cm^2
+q=1.6*10^-19;
+V_z=J/(q*N_a);//Avalanche zone velocity (in cm/s)
+disp(V_z,'Avalanche zone velocity (in cm/s) =');
\ No newline at end of file diff --git a/728/CH9/EX9.5/Ex9_5.txt b/728/CH9/EX9.5/Ex9_5.txt new file mode 100755 index 000000000..edc4504f9 --- /dev/null +++ b/728/CH9/EX9.5/Ex9_5.txt @@ -0,0 +1,10 @@ +//Caption:Calculate (i)-power gain in dB ,(ii)-power gain if it is USB converter.
+//Exa:9.5
+clc;
+clear;
+close;
+N_a-2.5*10^16;//per cubic cm
+J=33;//in kA/cm^2
+q=1.6*10^-19;
+V_z=J/(q*N_a);//Avalanche zone velocity (in cm/s)
+disp(V_z,'Avalanche zone velocity (in cm/s) =');
\ No newline at end of file diff --git a/728/CH9/EX9.5/Ex9_5_ans.txt b/728/CH9/EX9.5/Ex9_5_ans.txt new file mode 100755 index 000000000..713d9cc1b --- /dev/null +++ b/728/CH9/EX9.5/Ex9_5_ans.txt @@ -0,0 +1,4 @@ + Avalanche zone velocity (in cm/s) =
+
+ 8250.
+
\ No newline at end of file |