SlideShare a Scribd company logo
1 of 4
Steven Surgnier<br />Advanced Numerical Methods<br />Final Project – 4/3/2010<br />Find the steady-state temperature distribution on a rectangular printed circuit board 8 cm×10 cm with two power sources as shown in the figure below. <br />Assume: <br />(a) Thermal resistance per square is R□=0.5 K/W <br />(b) Thermal conductance per square centimeter between PC board and ambient is GTH=2.5 W/(K×cm2) <br />(c) The radiation is proportional to area A and it is the function of the absolute temperature Prad=3×10-10×T4 W/cm2 <br />(d) Both initial and radiator temperatures are 10C <br />Power dissipation P1=2W and P2=5W as shown in the figure below. Please use 81×101 uniform mesh. <br />(1) Analyze the temperature distribution in the printed circuit board. Plot the temperature distribution <br />(2) Consider the thermal capacitance of each node is C=0.001 W×s/K. Plot the temperature distribution after 1, 2, 3, 4 and 5 minutes <br />-34290021209000In order to secure accurate solution please use very small time increment (like 0.1ms) <br />,[object Object]
clear all; format compact;n=101; m=81; T=zeros(n,m)+10+273;P=zeros(n,m); Ta=10+273;A = 1/100; % unit surface area cm^2K=A*3e-10; G=A*2.5; R=0.5;P(21:46,16:41)=5; % 5 Watt sourceP(71:91,41:61)=2; % 2 Watt sourcefor ite=1:500    for j=2:n-1        for i=2:m-1            t=T(j-1,i)+T(j+1,i)+T(j,i-1)+T(j,i+1);            T(j,i)= (t/R + Ta*G - K*T(j,i)^4 + P(j,i))/(4/R + G);                            end;    end;    T(1:56,61:81)=20+273; % radiator temp    %Boundary conditions:    T(n,:)=T(n-1,:);    T(1,:)=T(2,:);    T(:,m)=T(:,m-1);    T(:,1)=T(:,2);end;figure(8); mesh(T-273); axis ([0 81 0 101 10 130]);zlabel('Temp (C)'); title('Steady State'); view(43,28);
Transient Response
clear all; format compact; clc;n=101; m=81; T=zeros(n,m)+10+273;T1=zeros(n,m); T2=zeros(n,m); T3=zeros(n,m);T4=zeros(n,m); T5=zeros(n,m);P=zeros(n,m); SS=zeros(n,m);A = 1/100; % unit surface area cm^2Ta=10+273; K=A*3e-10; G=A*2.5; R=0.5; C=0.001;  P(21:46,16:41)=5; % 5 Watt sourceP(71:91,41:61)=2; % 2 Watt sourceTs=70e-3; %  70 ms simulation timedt=100e-6; % time stepk=Ts/dt;for x=1:k        for j=2:n-1            for i=2:m-1                t=T(j-1,i)+T(j+1,i)+T(j,i-1)+T(j,i+1); %  cm^2 area                Tx=T(j,i);                p = (t-4*Tx)/R + (Ta-Tx)*G - K*Tx^4 + P(j,i);                T(j,i)=Tx+dt*(p)/C;            end;        end;        T(1:56,61:81)=20+273; % radiator temp%         Boundary conditions:        T(n,:)=T(n-1,:);        T(1,:)=T(2,:);        T(:,m)=T(:,m-1);        T(:,1)=T(:,2);        if (x==1e-3/dt) T1=T; end; % after 1 ms        if (x==5e-3/dt) T2=T; end; % after 5 ms        if (x==10e-3/dt) T3=T; end; % after 10 ms        if (x==20e-3/dt) T4=T; end; % after 20 ms        if (x==40e-3/dt) T5=T; end; % after 50 msend;figure(1); mesh(T1-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 1 ms'); view(43,28);figure(2); mesh(T2-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 5 ms'); view(43,28);figure(3); mesh(T3-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 10 ms'); view(43,28);figure(4); mesh(T4-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 20 ms'); view(43,28);figure(5); mesh(T5-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 40 ms'); view(43,28);figure(6); mesh(T-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 70 ms'); view(43,28);

More Related Content

What's hot

signal and system Lecture 2
signal and system Lecture 2signal and system Lecture 2
signal and system Lecture 2iqbal ahmad
 
"Super" Worried Father Solution (edited)
"Super" Worried Father Solution (edited)"Super" Worried Father Solution (edited)
"Super" Worried Father Solution (edited)blindsh0t
 
Question 1 Solutions
Question 1 SolutionsQuestion 1 Solutions
Question 1 Solutionsblindsh0t
 
Quartile deviation
Quartile deviationQuartile deviation
Quartile deviationNadeem Uddin
 
Lo3 position and time plots
Lo3   position and time plotsLo3   position and time plots
Lo3 position and time plotsJessica Weng
 
Summary of formulae_from_chapter_4.en
Summary of formulae_from_chapter_4.enSummary of formulae_from_chapter_4.en
Summary of formulae_from_chapter_4.enAda Darmon
 
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of Gaziantep
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of GaziantepFormul me-3074683 Erdi Karaçal Mechanical Engineer University of Gaziantep
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of GaziantepErdi Karaçal
 
49214733 ejemplo-muros-de-gravedad
49214733 ejemplo-muros-de-gravedad49214733 ejemplo-muros-de-gravedad
49214733 ejemplo-muros-de-gravedadAlex Valverde
 
Lecture 3 ctft
Lecture 3   ctftLecture 3   ctft
Lecture 3 ctftfmuddeen
 
16100lectre14 cg
16100lectre14 cg16100lectre14 cg
16100lectre14 cgArun Nema
 
free Video lecture in india
free Video lecture in indiafree Video lecture in india
free Video lecture in indiaEdhole.com
 
Free video lecture in india
Free video lecture in indiaFree video lecture in india
Free video lecture in indiaCss Founder
 
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...Erdi Karaçal
 

What's hot (18)

Dsp class 2
Dsp class 2Dsp class 2
Dsp class 2
 
signal and system Lecture 2
signal and system Lecture 2signal and system Lecture 2
signal and system Lecture 2
 
"Super" Worried Father Solution (edited)
"Super" Worried Father Solution (edited)"Super" Worried Father Solution (edited)
"Super" Worried Father Solution (edited)
 
Deber corte
Deber corteDeber corte
Deber corte
 
Deber 9
Deber 9Deber 9
Deber 9
 
Question 1 Solutions
Question 1 SolutionsQuestion 1 Solutions
Question 1 Solutions
 
Quartile deviation
Quartile deviationQuartile deviation
Quartile deviation
 
Lo3 position and time plots
Lo3   position and time plotsLo3   position and time plots
Lo3 position and time plots
 
process control
process controlprocess control
process control
 
Sol3
Sol3Sol3
Sol3
 
Summary of formulae_from_chapter_4.en
Summary of formulae_from_chapter_4.enSummary of formulae_from_chapter_4.en
Summary of formulae_from_chapter_4.en
 
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of Gaziantep
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of GaziantepFormul me-3074683 Erdi Karaçal Mechanical Engineer University of Gaziantep
Formul me-3074683 Erdi Karaçal Mechanical Engineer University of Gaziantep
 
49214733 ejemplo-muros-de-gravedad
49214733 ejemplo-muros-de-gravedad49214733 ejemplo-muros-de-gravedad
49214733 ejemplo-muros-de-gravedad
 
Lecture 3 ctft
Lecture 3   ctftLecture 3   ctft
Lecture 3 ctft
 
16100lectre14 cg
16100lectre14 cg16100lectre14 cg
16100lectre14 cg
 
free Video lecture in india
free Video lecture in indiafree Video lecture in india
free Video lecture in india
 
Free video lecture in india
Free video lecture in indiaFree video lecture in india
Free video lecture in india
 
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...
Me307 machine elements formula sheet Erdi Karaçal Mechanical Engineer Univers...
 

Viewers also liked

Evaluación de los sistemas técnicos
Evaluación de los sistemas técnicosEvaluación de los sistemas técnicos
Evaluación de los sistemas técnicosJoorge Fuentes
 
Heello.com 101
Heello.com 101Heello.com 101
Heello.com 101teamping
 
Heello HTML5 Mobile App
Heello HTML5 Mobile AppHeello HTML5 Mobile App
Heello HTML5 Mobile Appteamping
 
Panduan untuk Heello.com
Panduan untuk Heello.comPanduan untuk Heello.com
Panduan untuk Heello.comteamping
 
Artefact powerpoint
Artefact powerpointArtefact powerpoint
Artefact powerpointamyyyv
 
Technet profile
Technet profileTechnet profile
Technet profileBoaz Shani
 
Conurbation lecture 2010
Conurbation lecture 2010Conurbation lecture 2010
Conurbation lecture 2010drnicolaheadlam
 
Health economics pharma lab ppt
Health economics pharma lab pptHealth economics pharma lab ppt
Health economics pharma lab pptTon Mausisa
 
RIZAL CHAPTER 23 LAST TRIP ABROAD
RIZAL CHAPTER 23 LAST TRIP ABROADRIZAL CHAPTER 23 LAST TRIP ABROAD
RIZAL CHAPTER 23 LAST TRIP ABROADTon Mausisa
 

Viewers also liked (17)

Evaluación de los sistemas técnicos
Evaluación de los sistemas técnicosEvaluación de los sistemas técnicos
Evaluación de los sistemas técnicos
 
Rtpi may final
Rtpi may finalRtpi may final
Rtpi may final
 
Bolton lecture
Bolton lectureBolton lecture
Bolton lecture
 
Heello.com 101
Heello.com 101Heello.com 101
Heello.com 101
 
Heello HTML5 Mobile App
Heello HTML5 Mobile AppHeello HTML5 Mobile App
Heello HTML5 Mobile App
 
Panduan untuk Heello.com
Panduan untuk Heello.comPanduan untuk Heello.com
Panduan untuk Heello.com
 
Artefact powerpoint
Artefact powerpointArtefact powerpoint
Artefact powerpoint
 
Cities and society
Cities and societyCities and society
Cities and society
 
Proyecto de ingles 2016 2017
Proyecto de ingles 2016 2017Proyecto de ingles 2016 2017
Proyecto de ingles 2016 2017
 
Technet profile
Technet profileTechnet profile
Technet profile
 
Ping it!
Ping it!Ping it!
Ping it!
 
Conurbation lecture 2010
Conurbation lecture 2010Conurbation lecture 2010
Conurbation lecture 2010
 
Irregular verbs
Irregular verbsIrregular verbs
Irregular verbs
 
Queueing theory
Queueing theoryQueueing theory
Queueing theory
 
MUD
MUDMUD
MUD
 
Health economics pharma lab ppt
Health economics pharma lab pptHealth economics pharma lab ppt
Health economics pharma lab ppt
 
RIZAL CHAPTER 23 LAST TRIP ABROAD
RIZAL CHAPTER 23 LAST TRIP ABROADRIZAL CHAPTER 23 LAST TRIP ABROAD
RIZAL CHAPTER 23 LAST TRIP ABROAD
 

Similar to Heat Map Modeling Using Resistive Network

Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With Memory
Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With MemoryAutomatic Control Via Thermostats Of A Hyperbolic Stefan Problem With Memory
Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With MemoryCrystal Sanchez
 
Application of Numerical Methods (Finite Difference) in Heat Transfer
Application of Numerical Methods (Finite Difference) in Heat TransferApplication of Numerical Methods (Finite Difference) in Heat Transfer
Application of Numerical Methods (Finite Difference) in Heat TransferShivshambhu Kumar
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equationsDr.Jagadish Tawade
 
heat diffusion equation.ppt
heat diffusion equation.pptheat diffusion equation.ppt
heat diffusion equation.ppt056JatinGavel
 
heat diffusion equation.ppt
heat diffusion equation.pptheat diffusion equation.ppt
heat diffusion equation.ppt056JatinGavel
 
Contemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualContemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualto2001
 
Ray : modeling dynamic systems
Ray : modeling dynamic systemsRay : modeling dynamic systems
Ray : modeling dynamic systemsHouw Liong The
 
Hull White model presentation
Hull White model presentationHull White model presentation
Hull White model presentationStephan Chang
 
03C -Chapter 3 - Sec 3.6.ppt
03C -Chapter 3 - Sec 3.6.ppt03C -Chapter 3 - Sec 3.6.ppt
03C -Chapter 3 - Sec 3.6.pptsomnathmahapatra6
 
Fourier3
Fourier3Fourier3
Fourier3bubud75
 
On problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectOn problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectCemal Ardil
 

Similar to Heat Map Modeling Using Resistive Network (20)

Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With Memory
Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With MemoryAutomatic Control Via Thermostats Of A Hyperbolic Stefan Problem With Memory
Automatic Control Via Thermostats Of A Hyperbolic Stefan Problem With Memory
 
Application of Numerical Methods (Finite Difference) in Heat Transfer
Application of Numerical Methods (Finite Difference) in Heat TransferApplication of Numerical Methods (Finite Difference) in Heat Transfer
Application of Numerical Methods (Finite Difference) in Heat Transfer
 
Heatequationincfd
HeatequationincfdHeatequationincfd
Heatequationincfd
 
HT1D
HT1DHT1D
HT1D
 
Partial differential equations
Partial differential equationsPartial differential equations
Partial differential equations
 
ME_541_HW_04
ME_541_HW_04ME_541_HW_04
ME_541_HW_04
 
heat diffusion equation.ppt
heat diffusion equation.pptheat diffusion equation.ppt
heat diffusion equation.ppt
 
heat diffusion equation.ppt
heat diffusion equation.pptheat diffusion equation.ppt
heat diffusion equation.ppt
 
Contemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manualContemporary communication systems 1st edition mesiya solutions manual
Contemporary communication systems 1st edition mesiya solutions manual
 
Ray : modeling dynamic systems
Ray : modeling dynamic systemsRay : modeling dynamic systems
Ray : modeling dynamic systems
 
002 ray modeling dynamic systems
002 ray modeling dynamic systems002 ray modeling dynamic systems
002 ray modeling dynamic systems
 
002 ray modeling dynamic systems
002 ray modeling dynamic systems002 ray modeling dynamic systems
002 ray modeling dynamic systems
 
Hull White model presentation
Hull White model presentationHull White model presentation
Hull White model presentation
 
03C -Chapter 3 - Sec 3.6.ppt
03C -Chapter 3 - Sec 3.6.ppt03C -Chapter 3 - Sec 3.6.ppt
03C -Chapter 3 - Sec 3.6.ppt
 
D021018022
D021018022D021018022
D021018022
 
assignment_2
assignment_2assignment_2
assignment_2
 
numerical.ppt
numerical.pptnumerical.ppt
numerical.ppt
 
Tut09
Tut09Tut09
Tut09
 
Fourier3
Fourier3Fourier3
Fourier3
 
On problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectOn problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-object
 

Recently uploaded

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 

Heat Map Modeling Using Resistive Network

  • 1.
  • 2. clear all; format compact;n=101; m=81; T=zeros(n,m)+10+273;P=zeros(n,m); Ta=10+273;A = 1/100; % unit surface area cm^2K=A*3e-10; G=A*2.5; R=0.5;P(21:46,16:41)=5; % 5 Watt sourceP(71:91,41:61)=2; % 2 Watt sourcefor ite=1:500 for j=2:n-1 for i=2:m-1 t=T(j-1,i)+T(j+1,i)+T(j,i-1)+T(j,i+1); T(j,i)= (t/R + Ta*G - K*T(j,i)^4 + P(j,i))/(4/R + G); end; end; T(1:56,61:81)=20+273; % radiator temp %Boundary conditions: T(n,:)=T(n-1,:); T(1,:)=T(2,:); T(:,m)=T(:,m-1); T(:,1)=T(:,2);end;figure(8); mesh(T-273); axis ([0 81 0 101 10 130]);zlabel('Temp (C)'); title('Steady State'); view(43,28);
  • 4. clear all; format compact; clc;n=101; m=81; T=zeros(n,m)+10+273;T1=zeros(n,m); T2=zeros(n,m); T3=zeros(n,m);T4=zeros(n,m); T5=zeros(n,m);P=zeros(n,m); SS=zeros(n,m);A = 1/100; % unit surface area cm^2Ta=10+273; K=A*3e-10; G=A*2.5; R=0.5; C=0.001; P(21:46,16:41)=5; % 5 Watt sourceP(71:91,41:61)=2; % 2 Watt sourceTs=70e-3; % 70 ms simulation timedt=100e-6; % time stepk=Ts/dt;for x=1:k for j=2:n-1 for i=2:m-1 t=T(j-1,i)+T(j+1,i)+T(j,i-1)+T(j,i+1); % cm^2 area Tx=T(j,i); p = (t-4*Tx)/R + (Ta-Tx)*G - K*Tx^4 + P(j,i); T(j,i)=Tx+dt*(p)/C; end; end; T(1:56,61:81)=20+273; % radiator temp% Boundary conditions: T(n,:)=T(n-1,:); T(1,:)=T(2,:); T(:,m)=T(:,m-1); T(:,1)=T(:,2); if (x==1e-3/dt) T1=T; end; % after 1 ms if (x==5e-3/dt) T2=T; end; % after 5 ms if (x==10e-3/dt) T3=T; end; % after 10 ms if (x==20e-3/dt) T4=T; end; % after 20 ms if (x==40e-3/dt) T5=T; end; % after 50 msend;figure(1); mesh(T1-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 1 ms'); view(43,28);figure(2); mesh(T2-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 5 ms'); view(43,28);figure(3); mesh(T3-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 10 ms'); view(43,28);figure(4); mesh(T4-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 20 ms'); view(43,28);figure(5); mesh(T5-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 40 ms'); view(43,28);figure(6); mesh(T-273); axis ([0 81 0 101 10 130]); zlabel('Temp (C)'); title('After 70 ms'); view(43,28);