summaryrefslogtreecommitdiff
path: root/275/CH1/EX1.1.50/Ch1_1_50.sce
diff options
context:
space:
mode:
Diffstat (limited to '275/CH1/EX1.1.50/Ch1_1_50.sce')
-rwxr-xr-x275/CH1/EX1.1.50/Ch1_1_50.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/275/CH1/EX1.1.50/Ch1_1_50.sce b/275/CH1/EX1.1.50/Ch1_1_50.sce
new file mode 100755
index 000000000..5fbbe9983
--- /dev/null
+++ b/275/CH1/EX1.1.50/Ch1_1_50.sce
@@ -0,0 +1,10 @@
+clc
+disp("Example 1.50")
+printf("\n")
+disp("Find the maximum power at 80c")
+T1=25
+PT1=1000*10^-3 //maximum power dissipation at 25c
+T2=80
+D=4*10^-3 //derating factor
+PT2=PT1-((T2-T1)*D) //maximum power dissipation at 80c
+printf("Maximum Power dissipated at 80c=\n%f watt\n",PT2)