Write the numerical scheme for two IVP solvers

Assignment Help Engineering Mathematics
Reference no: EM132275444

Heat Transfer Numerical Analysis Problems -

Instructions - Write a report with comments, equations, figures, and algorithms. You are free to organize the plots in an effective manner. Submit all your Matlab scripts in a .zip archive into which you will also include your report.

Introduction - For purposes of heat-sink manufacturing, you are required to perform steady-state and time-variant heat transfer analysis for a rectangular fin design. The heat-sink is made of copper and is assumed to be submerged in an air flow. Specifically, the two-dimensional rectangular fin depicted in Fig. 1 with a uniform (6 x 11) grid of nodes (xi, yj) is considered. Point A is located at (0 cm, 0 cm) and point B at (1cm, 2cm). The partial differential equation that represents the heat transfer problem is given by

- ∇ · (k(x, y, T)∇T) = f(x, y) on Ω (1)

where ∇ stands for the gradient differential operator, k(x, y, T) is the spatially varying thermal conductivity of the fin material , and f(x, y), for the heat generated inside the body. Of course, the fin itself generates no heat. However, the edge ∂ΩB, where the fin is in contact with the heat source:

T = T + g(x)(Tb - T) on ∂ΩB (2)

where g(x) describes the temperature profile at the base of the fin. Furthermore, the other sides are in contact with air. As a result, natural convection occurs and convective heat transfer is given by

-k(x, y, T)∇T · n = h(x, y)(T - T) on ∂ΩL, ∂ΩR, ∂ΩT (3)

where h(x, y) denotes the heat transfer coefficient of the surrounding fluid, and n denotes the outward-pointing normal to the boundary. The temperature on edge δΩB is kept constant at Tb = 420K with distribution g(x) = 1.05x(1 - x), the ambient air temperature is T = 370K. Note that x here is given to you in terms of centimeters such that the corner of the base have a temperature of T.

2412_figure.png

Steady-State Analysis -

We are interested in the temperature distribution throughout the fin by numerically approximating the temperature field T(x, y). Assuming k = ka and h = ha are constant. Provide reference and justification for your choice of ka and ha:

1. Discretize the problem

(a) Provide the expression of ∇ in Cartesian coordinates.

(b) Using a finite-differences scheme in two dimensions, suggest a second-order accurate approximation of PDE in the domain -∇·(k(x, y, T)∇T) = f(x, y) at point (xi, yj) in the domain.

(c) Using a finite-differences scheme in two dimensions, suggest a first-order accurate approximation of the quantity k(x, y, T)∇T·n (boundary condition equation) at point (xi, yj) on the boundaries.

(d) For a uniform 3 x 5 grid, write down the 15 equations required to solve the 15 unknowns. Use any notation for temperatures on the grid, explain using a schematic of the surface in Fig. 1.

2. You should have a system of linear equations Ax = b.

(a) Use LU decomposition (code it yourself) to solve this linear system and find the temperature distribution, for grids of size (6 x 11), (16 x 31), (46 x 91), and (61 x 121). One a single plot, show the temperature distribution along the x = 0 axis for all four grids. Note that you may compare your results using backslash \.

(b) In a table, report the total number of unknowns, the CPU time (MATLAB function tic, toc) required to solve the temperature distribution on each grid, and the memory required to store your matrix A (remember that a double requires 8 bytes of storage). Estimate the required time and memory to solve this on a grid of size 181 x 361 using interpolation.

(c) For the (46 x 91) grid, prove that Jacobi converges to the unique solution.

Bonus Question - Use Jacobi, Gauss-Seidel, or SOR to solve for the temperature distribution for grids of size (6 x 11), (16 x 31), (46 x 91), (61 x 121), (181 x 361). Provide the convergence plots of the problem. Compare your results and performance with the Gaussian elimination. Note that to get the any marks, your solver should be coded such that you can solve the (181 x 361) problem.

Transient Analysis -

For transient heat analysis of the fin, it is presumed that heat is dissipated from the object through time. Hence, the heat generated inside the body is now a function of T and time, t:

f(x, y, T, t) = - ρ Cp ∂T/∂t (4)

where ρ is the density of the object and Cp is the object's heat capacity at constant pressure. As well, The temperature profile of the source is time-variant:

g(x, t) = 1.05x(1 - x)Φ(t) (5)

At last, assume that, initially, the fin is at T uniformily.

Case 1 - Given

307_figure1.png

1. Write the numerical scheme for two IVP solvers presented in class applied on a 3 x 5 grid. Plot the temperature for t ∈ [0; 4] at the point (0.3- cm, 0.4 cm) for both IVPs on the same plot. Discuss the stability and consistency of the chosen IVP solvers.

2. Find the solution at t = 4s using two of the IVP solvers presented in the course. For a grid of 16 x 31 with Δt = 1 x 10-4. Compare the two methods in terms of convergence to the solution in Δt = 1 x 10-4 and computation time. Use plots to support your claims.

3. Find the solution as t → ∞. Does the solution converge? Elaborate.

4. Bonus Question - In most engineering applications, it is assumed that k(x, y, T) = ka(1 - β(T - T)). Without using any numerical computation, how would this affect your choice of solvers for the transient analysis and steady state analysis?

Case 2 -

For Φ(t) = 1, it is possible to construct a scheme such that:

T(t = 0) = T0

T· = CT + r (7)

where T represents a vector array of the temperatures used as functions of time. An upper-dot, o·, denotes differentiation in time. As well, C and r do not depend on time. The system in (7) can be decoupled by performing an eigen-decomposition of the matrix C such that:

C = PDP-1 (8)

where D is a diagonal matrix containing all eigen-values and P is a matrix containing all corresponding normalized-eigenvectors. Hence, a solution can be represented as:

T(t) = PeDtP-1(T0 + C-1r) - C-1r (9)

Use of MATLAB's backslash function is allowed. For eDt please refer to the Wikipedia article Matrix Exponentiation.

1. Show explicitly all the components of equation (7) when applied to a 3 x 5 grid.

2. Using the methods presented in class, develop a scheme to find D and P and find both for a uniform grid of 3 x 5. All eigen-values found in D should be negative. Compare your answers using the eig function in MATLAB.

3. Compare the solution found by your scheme with one of the IVP solvers presented in class. Answer in terms of computation time and accuracy in application to arbitrary grids.

4. Bonus Questions -

1. Should the analytic solution converge to a steady-state solution as t → ∞? Does T (t) for a grid 3 x 5 converge to a steady-state solution? Elaborate.

2. Show that (9) is a solution to (7).

3. Explain why (9) is not representative of the solution for non-constant Φ(t).

Note - Need help with mainly is the "Transient Analysis" part and the bonus questions in each section.

Attachment:- Assignment File.rar

Reference no: EM132275444

Questions Cloud

Average in overall customer satisfaction : Customer satisfaction is emphasized but private market research and public surveys show that Premier is slightly below average in overall customer satisfaction.
What interventions could have been implemented : Choose a celebrity, musician, child star (Demi Lovato, Drew Barrymore, Oprah, Tyler Perry, Mark Wahlberg, Eminem, etc.), who has overcome significant adversity.
Essay on attracting and retaining staff : HRMT20024 - Managing Human Resources - CQ University - write an essay on the key challenges in attracting and retaining a workforce in your selected sector
What type of method do you think researcher was utilizing : Discuss the following: What type of method do you think the researcher was utilizing? Can you identify the hypothesis and/or theory?
Write the numerical scheme for two IVP solvers : Heat Transfer Numerical Analysis Problems - Write the numerical scheme for two IVP solvers presented in class applied on a 3 x 5 grid
What are some of the implications of independence : To prepare for this discussion, please read Chapters 2 and 3 of your textbook (Feenstra, 2013). In addition, read Culture as Patterns: An Alternative Approach.
Design and development of a product prototype : Project Management involves planning, controlling and directing the unusual activities facing the firm.
Evaluate the general motor program theory : Write an essay of 1,250-1,500 words in which you evaluate the General Motor Program Theory (GMP) and the Dynamical Systems Theory. In your essay.
How an organizations structure can shape the roles : MBA 200 :Review an article that describes how an organization's structure can shape the roles of a project manager and project team throughout the duration.

Reviews

len2275444

4/4/2019 11:26:38 PM

Need help with mainly is the "Transient Analysis" part in section 4 and the bonus questions in each section. Bonus points will roll over to your final grade. For example, if you get 120/100 on this project worth 20%, you will have a total of 4 bonus marks on your final grade. Changed boundary condition to make it more realistic. Correction of convective boundaries. A minus sign has been added. Normal to boundary is pointing outwards and definition of physical property h. Addition of discussion on stability and consistency of IVP solvers in question 1 section 4.1. Typo at question 1 of section 4.1.

Write a Review

Engineering Mathematics Questions & Answers

  Prime number theorem

Dirichlet series

  Proof of bolzano-weierstrass to prove the intermediate value

Every convergent sequence contains either an increasing, or a decreasing subsequence.

  Antisymmetric relations

How many relations on A are both symmetric and antisymmetric?

  Distributed random variables

Daily Airlines fies from Amsterdam to London every day. The price of a ticket for this extremely popular flight route is $75. The aircraft has a passenger capacity of 150.

  Prepare a system of equations

How much money will Dave and Jane raise for charity

  Managing ashland multicomm services

This question is asking you to compare the likelihood of your getting 4 or more subscribers in a sample of 50 when the probability of a subscription has risen from 0.02 to 0.06.]  Talk about the comparison of probabilities in your explanation.

  Skew-symmetric matrices

Skew-symmetric matrices

  Type of taxes and rates in spokane wa

Describe the different type of taxes and their rates in Spokane WA.

  Stratified random sample

Suppose that in the four player game, the person who rolls the smallest number pays $5.00 to the person who rolls the largest number. Calculate each player's expected gain after one round.

  Find the probability density function

Find the probability density function.

  Develop a new linear programming for an aggregate production

Linear programming applied to Aggregate Production Planning of Flat Screen Monitor

  Discrete-time model for an economy

Discrete-time model for an economy

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd