diff options
Diffstat (limited to '2219/CH6/EX6.9')
-rwxr-xr-x | 2219/CH6/EX6.9/Ex6_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2219/CH6/EX6.9/Ex6_9.sce b/2219/CH6/EX6.9/Ex6_9.sce new file mode 100755 index 000000000..16dd34878 --- /dev/null +++ b/2219/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,14 @@ +// Chapter 6 example 9
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+f = 20*10^9; // oscillating freq. of Gunn device
+Vs = 10^5; // saturation carrier velocity in m/s
+
+// Calculations
+L = Vs/f // length of device
+
+// output
+mprintf('length of device = %d µm',L*10^6);
+//-------------------------------------------------------------------------------
|