From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3636/CH11/EX11.4/Ex11_4.sce | 15 +++++++++++++++ 3636/CH11/EX11.4/Ex11_4.txt | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 3636/CH11/EX11.4/Ex11_4.sce create mode 100644 3636/CH11/EX11.4/Ex11_4.txt (limited to '3636/CH11/EX11.4') 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 -- cgit