summaryrefslogtreecommitdiff
path: root/3754/CH15
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH15')
-rw-r--r--3754/CH15/EX15.1/15_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH15/EX15.1/15_1.sce b/3754/CH15/EX15.1/15_1.sce
new file mode 100644
index 000000000..8235e22db
--- /dev/null
+++ b/3754/CH15/EX15.1/15_1.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+PDmax = 500 //Maximum Power dissipation at 25 degree Celsius (in milli-watt)
+DF = 2.28 //derating factor (in milli-watt per degree Celsius)
+T = 70 //Temperaure (in degree Celsius)
+
+//Calculation
+
+PDmax70 = PDmax - DF * (T - 25) //Maximum Power dissipation at 70 degree Celsius (in milli-watt)
+
+//Result
+
+printf("\n Maximum power dissipation at 70 degree Celsius is %0.0f mW." ,PDmax70)