diff options
Diffstat (limited to '587/CH3/EX3.10')
-rwxr-xr-x | 587/CH3/EX3.10/example3_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/587/CH3/EX3.10/example3_10.sce b/587/CH3/EX3.10/example3_10.sce new file mode 100755 index 000000000..c9e4cda75 --- /dev/null +++ b/587/CH3/EX3.10/example3_10.sce @@ -0,0 +1,12 @@ +clear;
+clc;
+
+//Example3.10[Maximum Power dissipation of a Transistor]
+//Given:-
+T_ambient=25;//Ambient temperature[degree Celcius]
+T_case=85;//Maximum temperature of the case[degree Celcius]
+R_case_ambient=20;//Resistance for convection b/w case and ambient [degree Celcius/W]
+//Solution:-
+Q_=(T_case-T_ambient)/R_case_ambient;//[W]
+disp("W",Q_,"The given power transistor should not be operated at power levels above")
+disp("if is its case temperature is not to exceed 85 degree Celcius")
\ No newline at end of file |