You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 30 Next »

Unable to render {include} The included page could not be found.

6. Results

If necessary , download the solution by right-clicking the following link: conduction 2d.zip

Temperature

To view the Temperature over the surface, select Solution > Temperature from the tree on the left.

Click Here for Higher ResolutionVisit page in new window


Total Heat Flux


We would now like to view the Total Heat Flux as vectors, in order to better visualize it, as well as to check the perfectly insulated boundaries.  In order to do so, select Solution > Total Heat Flux from the tree on the left. Then (Click) Vectors, . The sliders in the top bar can be used to change the size and number of vectors displayed. At this point, the heat flux should appear similar to the image below.



Click Here for Higher ResolutionVisit page in new window

X Direction Heat Flux



Click Here for Higher ResolutionVisit page in new window


Temperature along Y=1m line

At this point we are interested in extracting the temperature values along the horizontal line, y=1m. First, (Right Click) Model > Insert > Construction Geometry as shown below.


Click Here for Higher ResolutionVisit page in new window


Next, (Right Click) Construction Geometry > Insert > Path as shown in the following image.


Click Here for Higher ResolutionVisit page in new window


Then, set Number of Sampling Points to 100, set Start X Coordinate to 0, set Start Y Coordinate to 1, set End X Coordinate to 1, and set End Y Coordinate to 1 as shown below.


Click Here for Higher ResolutionVisit page in new window


At this point another temperature output must be created. In order to create the temperature output (Right Click) Solution > Insert > Thermal > Temperature. In the "Details of Temperature 2" table set the Scoping Method to Path as shown below. Then, set Path to Path. Your "Details of Temperature 2" table should now look like the following image.


Click Here for Higher ResolutionVisit page in new window


Now,(Click) Solve, , and ANSYS will find the temperature on the line y=1 m as a function of x position. ANSYS will obtain the temperature for 100 points on the line y=1m. The data points are displayed in a table and can be exported to MATLAB or EXCEL. The following image shows, the graph that ANSYS outputs. The y axis is non-dimensional temperature and the x axis is x position on the line y=1m.


Click Here for Higher ResolutionVisit page in new window


Directional Heat Flux along Y=0m line

Now we are interested in calculating the heat flux through the bottom boundary.  First, construct a path, following steps similar to those above, but with the start and end points at the bottom corners of the surface. (Right Click) Model > Insert > Construction Geometry.  Next, (Right Click) Construction Geometry > Insert > Path. Then, set Number of Sampling Points to 200, set Start X Coordinate to 0, set Start Y Coordinate to 0, set End X Coordinate to 1, and set End Y Coordinate to 0 as shown below.


Click Here for Higher ResolutionVisit page in new window

Similar to the Temperature inserted along the first path, now insert Directional Heat Flux results along Path 2. (Right Click) Solution > Insert > Thermal > Directional Heat Flux. Choose Path for the Scoping Method, set Path 2 for the Path and Y axis for Orientation, as seen below.

Click Here for Higher ResolutionVisit page in new window

Now,(Click) Solve, and ANSYS will find the Directional Heat Flux on the line y=0m as a function of x position.  We would like to find the Total Heat Flux through the bottom, and to do this we will export the data to MATLAB.  To do so, right click in the tabular data displayed in the lower righthand corner of the screen.  Select all (Ctrl+A), right-click and select Export.  Save the file as "qy_bot.txt" in your MATLAB working directory.

Next, open MATLAB and use the following code to integrate along the path:

clear all; clc;
qy_bot = dlmread('qy_bot.txt', '', 'B2..C50');
qy_bot_tot = trapz(qy_bot(:,1),qy_bot(:,2));

The dlmread function is used to read the data from the text file, while the trapz function performs numerical integration using trapezoids.  The variable 'qy_bot_tot' calculated in MATLAB represents the total dimensionless heat flux through the bottom, y=0 line.

Save

Save the project now.

 
Go to Step 7: Verification and Validation

See and rate the complete Learning Module

Go to all ANSYS Learning Modules

  • No labels