diff options
Diffstat (limited to '181/CH2/EX2.38/example2_38.sce')
-rwxr-xr-x | 181/CH2/EX2.38/example2_38.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/181/CH2/EX2.38/example2_38.sce b/181/CH2/EX2.38/example2_38.sce new file mode 100755 index 000000000..4be752217 --- /dev/null +++ b/181/CH2/EX2.38/example2_38.sce @@ -0,0 +1,19 @@ +// Temperature coefficient of Avalanche diode
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 2-38 in page 113
+
+clear; clc; close;
+
+// Given data
+V=12; // Voltage of avalanche diode in V
+T=1.7*10^-3; // Temperature coeff of Si diode
+
+// Calculation
+A=(T/V)*100;
+printf("Temperature coeff in percentage = %0.4f percent/degree-C",A);
+
+// Result
+// Temperature coeff in percentage = 0.0142 %/degree-C
\ No newline at end of file |