From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 728/CH9/EX9.1/Ex9_1.sce | 9 +++++++++ 728/CH9/EX9.1/Ex9_1.txt | 9 +++++++++ 728/CH9/EX9.1/Ex9_1_ans.txt | 5 +++++ 3 files changed, 23 insertions(+) create mode 100755 728/CH9/EX9.1/Ex9_1.sce create mode 100755 728/CH9/EX9.1/Ex9_1.txt create mode 100755 728/CH9/EX9.1/Ex9_1_ans.txt (limited to '728/CH9/EX9.1') diff --git a/728/CH9/EX9.1/Ex9_1.sce b/728/CH9/EX9.1/Ex9_1.sce new file mode 100755 index 000000000..ede2a92c1 --- /dev/null +++ b/728/CH9/EX9.1/Ex9_1.sce @@ -0,0 +1,9 @@ +//Caption:Calculate operating frequency of IMPATT diode +//Exa:9.1 +clc; +clear; +close; +v_d=10^7*10^-2;//drift velocity(in m/s) +L=2*10^-6;//drift length(in m) +f=v_d/(2*L);//in Hz +disp(f/10^9,'Operating Frequency (in GHz) ='); \ No newline at end of file diff --git a/728/CH9/EX9.1/Ex9_1.txt b/728/CH9/EX9.1/Ex9_1.txt new file mode 100755 index 000000000..ede2a92c1 --- /dev/null +++ b/728/CH9/EX9.1/Ex9_1.txt @@ -0,0 +1,9 @@ +//Caption:Calculate operating frequency of IMPATT diode +//Exa:9.1 +clc; +clear; +close; +v_d=10^7*10^-2;//drift velocity(in m/s) +L=2*10^-6;//drift length(in m) +f=v_d/(2*L);//in Hz +disp(f/10^9,'Operating Frequency (in GHz) ='); \ No newline at end of file diff --git a/728/CH9/EX9.1/Ex9_1_ans.txt b/728/CH9/EX9.1/Ex9_1_ans.txt new file mode 100755 index 000000000..20ac8c613 --- /dev/null +++ b/728/CH9/EX9.1/Ex9_1_ans.txt @@ -0,0 +1,5 @@ + + Operating Frequency (in GHz) = + + 25. + \ No newline at end of file -- cgit