diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /587/CH3/EX3.10 | |
download | Scilab-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.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 |