diff options
Diffstat (limited to '147/CH9/EX9.15/Example9_15.sce')
-rw-r--r-- | 147/CH9/EX9.15/Example9_15.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/147/CH9/EX9.15/Example9_15.sce b/147/CH9/EX9.15/Example9_15.sce new file mode 100644 index 000000000..07ae50122 --- /dev/null +++ b/147/CH9/EX9.15/Example9_15.sce @@ -0,0 +1,15 @@ +close();
+clear;
+clc;
+Idss1 = 10; //mA
+T1 = 25 + 273; //K
+T2 = 100 + 273; //K
+
+//(a)
+Idss2 = Idss1*(T2/T1)^(-3/2); //A
+mprintf("(a) Saturation current for operating temperature of %d degree C = %0.2f mA\n\n",T2-273, Idss2);
+//(b)
+//temperature at which saturation current reduces to Idss3
+Idss3 = 5; //mA
+T3 = T1*(Idss1/Idss3)^(2/3); //K
+mprintf("(b) Temperature at which saturation current reduces to %d mA at %d degree C",Idss3, T3-273);
\ No newline at end of file |