diff options
Diffstat (limited to '2534/CH7/EX7.2/Ex7_2.sce')
-rwxr-xr-x | 2534/CH7/EX7.2/Ex7_2.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2534/CH7/EX7.2/Ex7_2.sce b/2534/CH7/EX7.2/Ex7_2.sce new file mode 100755 index 000000000..76031fd7a --- /dev/null +++ b/2534/CH7/EX7.2/Ex7_2.sce @@ -0,0 +1,10 @@ +//Ex7_2
+clc
+TA = 30
+TJ = 48
+PD = 4
+TR = (TJ - TA)/PD
+disp("TA = "+string(TA)+"degreeC")//ambient temperature at which transistor is operated
+disp("TJ = "+string(TJ)+"degreeC")//junction temperature
+disp("PD = "+string(PD)+"W")//dissipated power
+disp("TR = (TJ - TA)/PD = "+string(TR)+"degreeC/W")//termal resistance
|