diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3636/CH11/EX11.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3636/CH11/EX11.4')
-rw-r--r-- | 3636/CH11/EX11.4/Ex11_4.sce | 15 | ||||
-rw-r--r-- | 3636/CH11/EX11.4/Ex11_4.txt | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/3636/CH11/EX11.4/Ex11_4.sce b/3636/CH11/EX11.4/Ex11_4.sce new file mode 100644 index 000000000..99037e8a9 --- /dev/null +++ b/3636/CH11/EX11.4/Ex11_4.sce @@ -0,0 +1,15 @@ +clear;
+clc;
+TJ_max=150 //in C
+Tamb=27 //in C
+Rth_dp=1.7 //Thermal resistance in C/W
+Rth_pa=40 //in C/W
+Rth_ps=1 //in C/W
+Rth_sa=4 //in C/W
+
+//Calculation
+PD1_max=(TJ_max-Tamb)/(Rth_dp+Rth_pa)
+PD2_max=(TJ_max-Tamb)/(Rth_dp+Rth_sa+Rth_ps)
+
+mprintf("Case(a):No heat sink used :-Maximum power distribution= %1.2f W\n",PD1_max)
+mprintf("Case(b):Heaat sink used :- Maximum power distribution= %2.2f W",PD2_max)
diff --git a/3636/CH11/EX11.4/Ex11_4.txt b/3636/CH11/EX11.4/Ex11_4.txt new file mode 100644 index 000000000..803e2c1df --- /dev/null +++ b/3636/CH11/EX11.4/Ex11_4.txt @@ -0,0 +1,2 @@ + Case(a):No heat sink used :-Maximum power distribution= 2.95 W
+Case(b):Heaat sink used :- Maximum power distribution= 18.36 W
\ No newline at end of file |