diff options
Diffstat (limited to '3754/CH13/EX13.2')
-rw-r--r-- | 3754/CH13/EX13.2/13_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3754/CH13/EX13.2/13_2.sce b/3754/CH13/EX13.2/13_2.sce new file mode 100644 index 000000000..34e88d57f --- /dev/null +++ b/3754/CH13/EX13.2/13_2.sce @@ -0,0 +1,17 @@ +clear//
+
+//Variables
+
+PZM = 500 //Power rating of zener diode (in milli-watt)
+df = 3.33 //derating factor (in milli-watt)
+T1 = 75 //Temperature (in degree Celsius)
+T2 = 50 //Temperature (in degree Celsius)
+
+//Calculation
+
+Tdf = df * (T1 - T2) //Total derating factor (in milli-watt)
+PZ = PZM - Tdf //Maximimum power dissipating for the device (in milli-watt)
+
+//Result
+
+printf("\n The maximum power dissipation for the device is %0.3f mW." ,PZ)
|