summaryrefslogtreecommitdiff
path: root/728/CH9/EX9.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /728/CH9/EX9.1
downloadScilab-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.1')
-rwxr-xr-x728/CH9/EX9.1/Ex9_1.sce9
-rwxr-xr-x728/CH9/EX9.1/Ex9_1.txt9
-rwxr-xr-x728/CH9/EX9.1/Ex9_1_ans.txt5
3 files changed, 23 insertions, 0 deletions
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