summaryrefslogtreecommitdiff
path: root/2498/CH3/EX3.4/ex3_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2498/CH3/EX3.4/ex3_4.sce')
-rwxr-xr-x2498/CH3/EX3.4/ex3_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2498/CH3/EX3.4/ex3_4.sce b/2498/CH3/EX3.4/ex3_4.sce
new file mode 100755
index 000000000..1b59f80a9
--- /dev/null
+++ b/2498/CH3/EX3.4/ex3_4.sce
@@ -0,0 +1,14 @@
+// Exa 3.4
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+P_ZM = 1500;// in mW
+Deratingfactor = 3.33;// in mW
+T1 = 85;// in degree C
+T2 = 60;// in degree C
+total = Deratingfactor*(T1-T2);// total derating factor in mW
+// The maximum power dissipation
+P_ZM = P_ZM - total;// in mW
+disp(P_ZM,"The maximum power dissipation in mW is");