summaryrefslogtreecommitdiff
path: root/2459/CH15/EX15.10/Ex15_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH15/EX15.10/Ex15_10.sce')
-rw-r--r--2459/CH15/EX15.10/Ex15_10.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2459/CH15/EX15.10/Ex15_10.sce b/2459/CH15/EX15.10/Ex15_10.sce
new file mode 100644
index 000000000..4c683c021
--- /dev/null
+++ b/2459/CH15/EX15.10/Ex15_10.sce
@@ -0,0 +1,12 @@
+//chapter15
+//example15.10
+//page333
+
+P_total=4 // W
+T_Jmax=90 // degree celcius
+theta=10 // degree celcius per watt
+
+// P_total=(T_Jmax-Tamb)/theta so making Tamb as subject we get
+Tamb=T_Jmax-P_total*theta
+
+printf("maximum ambient temperature at which transistor can be operated = %.3f degree C \n",Tamb)