EBK NUMERICAL METHODS FOR ENGINEERS
EBK NUMERICAL METHODS FOR ENGINEERS
7th Edition
ISBN: 9780100254145
Author: Chapra
Publisher: YUZU
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 29, Problem 1P

Use Liebmann's method to solve for the temperature of the square heated plate in Fig. 29.4, but with the upper boundary condition increased to 150 ° C and the left boundary insulated. Use a relaxation factor of 1.2 and iterate to ε S = 1 % .

Expert Solution & Answer
Check Mark
To determine

To calculate: The temperature of the square heated plate in the provided figure by Liebmann’s method with the upper boundary condition increased to 150°C and the left boundary insulated;with the use of a relaxation factor of 1.2 and with iteration to εs=1%.

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 1P , additional homework tip  1

Answer to Problem 1P

Solution:

The temperature of the square heated plate is,

0°C67.8609  88.3949  85.715533.0467  50.0069  54.465914.2989  24.1186  32.1467 0°C150°C50°C

Explanation of Solution

Given information:

The upper boundary condition increased to 150°C and the left boundary insulated and with the use of a relaxation factor of 1.2 and with iteration to εs=1%. The provided figure is,

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 1P , additional homework tip  2

Calculation:

The following formula is used to calculate the temperature at (i,j) node as,

Ti,j=Ti+1,j+Ti1,j+Ti,j+1+Ti,j14

And the percent relative errors is,

|(εa)i,j|=|Ti,jnewTi,joldTi,jnew|100%

With the help of the above formula, the following code implements the procedure of Liebmann’s method to solve for the temperatures on the platewith the given conditions, that is, theleft boundary is insulated and the upper boundary raised to 150°C(from the previous 100 °C). The code can be written with the following script in MATLAB:

Code:

clear;

% initial boundary conditions are given

T =zeros(5);

T(:,1)=0;% left boundary condition

T(5,:)=150;% upper boundary condition

T(:,5)=50;% right boundary condition

T(1,:)=0;% bottom boundary condition

% relaxation and error threshold are defined

lambda =1.2;

epsilon =0.01;

% error matrix definition is given.

errors =ones(3);

iter=0;

whilemax(errors(:))> epsilon

for j =2:4

fori=2:4

Told = T(i,j);

% compute new T at (i, j)

T(i,j)=0.25*(T(i+1,j)+T(i-1,j)+T(i,j+1)+T(i,j-1));

% apply overrelaxation

Tnew= lambda*T(i,j)+(1-lambda)*Told;

T(i,j)=Tnew;

% compute error

errors(i-1,j-1)= abs(Tnew- Told)/abs(Tnew);

end

end

% print result values with iteration

iter=iter+1;

T(2:4,2:4)

maximun_ea=max(errors(:))*100;

disp(maximun_ea)

% print maximum error

end

Output:

On executing the above script, the program finds the stopping condition on the seventh iteration with a maximum error of 0.5169%.

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 1P , additional homework tip  3

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 1P , additional homework tip  4

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 1P , additional homework tip  5

From the above output, the final result can be shown as:

0°C67.8609  88.3949  85.715533.0467  50.0069  54.465914.2989  24.1186  32.1467 0°C150°C50°C

And the maximum Error is 0.5169.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
An unpressurized cylindrical tank with a 100-foot diameter holds a 40-foot column of water.  What is total force acting against the bottom of the tank?
7. In the following problems check to see if the set S is a vector subspace of the corresponding R. If it is not, explain why not. If it is, then find a basis and the dimension. (a) S = (b) S = {[],+,"} X1 x12x2 = x3 CR³ {[1], 4+4 = 1} CR³ X2
AAA Show laplace transform on 1; (+) to L (y(+)) : SY(s) = x (0) Y(s) = £ [lx (+)] = 5 x(+) · est de 2 -St L [ y (^) ] = So KG) et de D 2 D D AA Y(A) → Y(s) Ŷ (+) → s Y(s) -y
Knowledge Booster
Background pattern image
Mechanical Engineering
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, mechanical-engineering and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Principles of Heat Transfer (Activate Learning wi...
Mechanical Engineering
ISBN:9781305387102
Author:Kreith, Frank; Manglik, Raj M.
Publisher:Cengage Learning
01 - What Is A Differential Equation in Calculus? Learn to Solve Ordinary Differential Equations.; Author: Math and Science;https://www.youtube.com/watch?v=K80YEHQpx9g;License: Standard YouTube License, CC-BY
Higher Order Differential Equation with constant coefficient (GATE) (Part 1) l GATE 2018; Author: GATE Lectures by Dishank;https://www.youtube.com/watch?v=ODxP7BbqAjA;License: Standard YouTube License, CC-BY
Solution of Differential Equations and Initial Value Problems; Author: Jefril Amboy;https://www.youtube.com/watch?v=Q68sk7XS-dc;License: Standard YouTube License, CC-BY