All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
A CHT or Conjugate Heat Transfer analysis is used where there are multiple phases in a simulation and energy transfer in the form of heat occurs between the multiple phases. An example could be a condenser of any type, where the hot working fluid transfers its heat energy to a coolant. A CHT analysis can be used…
Dushyanth Srinivasan
updated on 26 Apr 2022
A CHT or Conjugate Heat Transfer analysis is used where there are multiple phases in a simulation and energy transfer in the form of heat occurs between the multiple phases. An example could be a condenser of any type, where the hot working fluid transfers its heat energy to a coolant. A CHT analysis can be used to calculate the heat transfer coefficient of any part of the condenser system. Further examples include: cooling of an exhaust pipe, cooling of a computer graphics card and heating a moving fluid using a heating coil.
In this project, I will be simulating a system which involves cooling a computer graphics card that generates heat, the cooling process is simple, air at different velocities flow over the graphics card, which has fins to dissipate more heat.
Geometry
The geometry for this project was an .stl file which was imported into spaceclaim, the geometry consists of a base, processor, fins and external enclousure. The multiple components of the geometry have to be merged so that a body fitted mesh can be generated later, this is done by selecting FFF under Structure -> Analysis and set Share Topology to Share. Then, go to Workbench -> Share to start the sharing process. After this process is complete, the geometry is ready for meshing.
Pictures of each component are below:
1. Processor
2. Base
3. Fins
4. Base + Processor + Fins
5. Transparent Enclosure
Meshing
The meshing is done using ANSYS's Mechanical APDL.
The base mesh size is 5mm
An additional control was included to improve the size of mesh in the regions near the graphics card. This improvement is to utilise more computational resources to finely generate temperature and velocity data after the simulation.
Controls -> Face Sizing -> Named Selection -> walls-gfxcard
This is where the body sizing has been applied (front enclousure wall hidden)
This is the final mesh on a sectional plane roughly across the axis:
Zooming in,
The mesh is conformal, this ensures simulation data is accurately transfered between different parts of the geometry.
The mesh metrices indicate that most of the elements have a quality greater than 0.6, which makes the quality satisfactory.
The mesh has 50529 nodes and 285011 elements.
Setup
Materials
The existing materials' properties were used and were left unchanged.
These were the materials used and its properties:
Density of Air: 1.225kg/m3
Specific Heat of Air: 1006.43J/kg.K
Thermal Conductivity of Air: 0.0242W/m.K
Viscosity of Air: 1.7894⋅10−5kg/m.s
Density of Aluminium: 2719kg/m3
Specific Heat of Aluminium: 871J/kg.K
Thermal Conductivity of Aluminium: 202.4W/m.K
Density of Gold: 19320kg/m3
Specific Heat of Gold: 129.81J/kg.K
Thermal Conductivity of Gold: 297.73W/m.K
Density of Titanium: 4850kg/m3
Specific Heat of Titanium: 544.25J/kg.K
Thermal Conductivity of Titanium: 7.44W/m.K
Boundaries
inlet - inlet velocity of 1m/s, 2.5m/s and 5m/s normal to the boundary
outlet - pressure outlet
other surfaces were left unchanged, some were wall and others were interior.
Cell Zones
This step is very important as it lets ANSYS know which regions consists of fluid flow (convection) and which regions consist of solid (conduction)
enclousure - fluid - air
base - solid - titanium
processor - solid - gold
fins - sold - aluminium
The condition that the processor generates heat was also given in this step, the processor was assumed to emit 10W. The input field required the heat to be in W/m3, hence the volume of the processor was calculated using SpaceClaim.
Dimensions of cubiodal processor: 8mm×8mm×1mm
Volume of cubiodal processor: 64×10−9mm3
Heat generated in W/m3: 10/(64×10−9)=156230000W/m3
Viscous
k-epsilon standard with standard near wall treatment was the viscous model used.
Solution - Methods
Simulation Results
The simulation ran until residuals dropped below 10^-3 using the steady state solver and with a hybrid initialisation. The results are below:
Inlet Velocity: 1m/s
Residuals
This was taken in ANSYS Fluent.
The simulation is said to be converged because of the extremely low residuals, even a further decrease in residuals will not alter the final temperature in a significant way.
Cut plane view of temperature
This was taken in CFD-Post.
A plane was created along the XZ plane at Y = 0, and the temperature contours were plotted
Maximum Processor Temperature: 492K
Heat Transfer Coefficient of the Fin: 829.19WKm2
Inlet Velocity: 2.5m/s
Residuals
The simulation is said to be converged because of the extremely low residuals, even a further decrease in residuals will not alter the final temperature in a significant way.
Cut plane view of temperature
This was taken in CFD-Post.
A plane was created along the XZ plane at Y = 0, and the temperature contours were plotted
Maximum Processor Temperature: 414K
Heat Transfer Coefficient of the Fin: 1089.5WKm2
Inlet Velocity: 5m/s
Residuals
The simulation is said to be converged because of the extremely low residuals, even a further decrease in residuals will not alter the final temperature in a significant way.
Cut plane view of temperature
This was taken in CFD-Post.
A plane was created along the XZ plane at Y = 0, and the temperature contours were plotted
Maximum Processor Temperature: 378.86K
Heat Transfer Coefficient of the Fin: 1310.44WKm2
Hotspots
These were taken in CFD-Post.
This shows the regions were temperature is higher than its surroundings:
The temperature is higher in the fins because of easy conduction of heat between processor and fins. Also, a lot of heat is dissipated through the fins, which enables the fins to accept more heat.
A hotspot is noticed at the bottom of the base, below where the processor fits. Heat is concentrated because of lower thermal conductivity of the base, and because there is less heat transfer due to convection.
Animation
This was taken in Fluent and for an inlet velocity of 1m/s.
Observations and Conclusions
1. The heat transfer coeffcient increases as velocity increases, this is an expected qualitative result because there is more air to absorb heat when the velocity is high.
2. The highest temperature on the processor also decreases as velocity of cooling air increases. This is because the increase in heat transfer coefficients.
3. Hotspots were observed at two regions near the processor and the reasons for the accumulation of heat were explained.
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Project 2 - Rankine cycle Simulator
In this project, I will be writing code in MATLAB to simulate a Rankine Cycle for the given parameters. A Rankine Cycle is an ideal thermodynamic heat cycle where mechanical work is extracted from the working fluid as it passes between a heat source and heat sink. This cycle or its derivatives is used in steam engines…
04 Sep 2022 12:52 PM IST
Project 1 - Parsing NASA thermodynamic data
In this project, I will be parsing a data file prepared by NASA. The contents of the data file can be used to generated thermodynamic properties such as Specific Heat at Constant Pressure 'C_p' (J/(kg.K)), Enthalpy HorQ (J) and Entropy S (J/(kg.mol)) at various temperatures. The files will be parsed in MATLAB…
31 Aug 2022 01:07 PM IST
Week 5 - Genetic Algorithm
In this project, I will be generating a stalagmite function in MATLAB and find the global maxima of the function using Genetic Algorithm. A stalagmite function is a function which generates Stalactites, which are named after a natural phenomenon where rocks rise up from the floor of due to accumulation of droppings of…
29 Aug 2022 07:55 AM IST
Week 4.1 - Solving second order ODEs
In this project, I will be writing code in MATLAB to solve the motion of a simple pendulum. A simple pendulum motion's depends on Newton's Second Law. The equation which governs the motion of a simple pendulum is (with damping) d2θdt2+bmdθdt+gLsinθ=0 Where, θ is the angular displacement…
23 Aug 2022 08:06 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.