diff options
Diffstat (limited to '587/CH3/EX3.11/example3_11.sce')
-rwxr-xr-x | 587/CH3/EX3.11/example3_11.sce | 11 |
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 |