Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1D unsteady heat conduction equation is given below. at aT = where a material property Using a central discretization in space one can convert
1D unsteady heat conduction equation is given below. at aT = where a material property Using a central discretization in space one can convert the PDE into a system of ODE in the form below where T: unknown temperature vector, A: square matrix resulting from the discretization of the space derivative and bBC: a column vector for the boundary conditions. dT dt = (Ax)2 AT+bBC Write Matlab scripts that solves the ODE system given above using the Backward Euler method. i) ii) www In this method discretizing the time derivative using backward differencing results in a linear system of equation which can be solved using iterative methods (Jacobi or Gauss-Seidel). However, the convergence rate of the iterative methods heavily depends on the diagonal dominance of the resulting linear system mentioned above. In this part of the project, you should write a Matlab script that 1) generates the ODE system from the given PDE according to the number of nodes and boundary conditions 2) generates a linear system as given below using Backward differencing for the time derivative. Abackward T = b www 3) solves the linear system using Jacobi iterative method. You can write Jacobi as a local Matlab function and call it in your main code. 4) solves for T (t = t final) using a constant At
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started