summaryrefslogtreecommitdiff
path: root/587/CH3/EX3.11/example3_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /587/CH3/EX3.11/example3_11.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '587/CH3/EX3.11/example3_11.sce')
-rwxr-xr-x587/CH3/EX3.11/example3_11.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/587/CH3/EX3.11/example3_11.sce b/587/CH3/EX3.11/example3_11.sce
new file mode 100755
index 000000000..1c2de75f5
--- /dev/null
+++ b/587/CH3/EX3.11/example3_11.sce
@@ -0,0 +1,11 @@
+clear;
+clc;
+
+//Example3.11[Selecting a Heat Sink for a Transistor]
+//Given:-
+Q_=60;//Rate of heat transfer from given transistor at at full power[W]
+T_ambient=30;//Temperature of ambient air[degree Celcius]
+T_case=90;//Maximum temperature of case[degree Celcius]
+//Solution:-
+R_sink=(T_case-T_ambient)/Q_;//[degree Celcius/W]
+disp("degree Celcius/W",R_sink,"The thermal resistance b/w the transistor attached to the heat sink and the ambient air for the specified temperature difference is ") \ No newline at end of file