EBK NUMERICAL METHODS FOR ENGINEERS
EBK NUMERICAL METHODS FOR ENGINEERS
7th Edition
ISBN: 8220100254147
Author: Chapra
Publisher: MCG
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 29, Problem 7P
To determine

To calculate: The temperature on the heated plate with fixed temperature at the boundaries and round corners at upper right and lower left corners; considering the value of weighing factor for overrelaxation as 1.5 and performing iteration up to εs=1%.

Expert Solution & Answer
Check Mark

Answer to Problem 7P

Solution:

Heated plate having rounded upper right and lower left corners has the temperature distribution with the desired level of accuracy as,

EBK NUMERICAL METHODS FOR ENGINEERS, Chapter 29, Problem 7P

Explanation of Solution

Given Information:

The fixed temperature at top and right boundary is 100 °C and the fixed temperature at the left and lower boundary is 50 °C.

For overrelaxation the weighing factor is 1.5.

Limiting condition for iteration is εs1%

Formula used:

For a square grid, that is, Δx=Δy, the Laplacian difference equation is written using Liebmann’s method as,

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

With i varying from 1 to m and j varying from 1 to n.

Overrelaxation is applied using the following expression after each iteration,

Ti,jnew=λTi,jnew+(1λ)Ti,jold

In the above expression, Ti,jold and Ti,jnew being the Ti,j values from the previous and present iteration.

The percent relative error is calculated using the following expression,

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

Laplacian equation for a node adjacent to an irregular boundary is solved for temperature distribution as,

2Δx2[Ti1,jTi,jα1(α1+α2)+Ti+1,jTi,jα2(α1+α2)]+2Δy2[Ti,j1Ti,jβ1(β1+β2)+Ti,j+1Ti,jβ2(β1+β2)]=0

Calculation:

Consider, Δx=Δy.

Consider the value of the parameters as,

α1=0.732α2=1β1=0.732β2=1

The temperature at the node (4,2) adjacent to the lower left round corner or the irregular boundary is calculated as,

2Δx2[T3,2T4,20.732(0.732+1)+T5,2T4,21(0.732+1)]+2Δy2[T4,1T4,20.732(0.732+1)+T4,3T4,21(0.732+1)]=0[T3,2T4,20.732(0.732+1)+T5,2T4,21(0.732+1)]+[T4,1T4,20.732(0.732+1)+T4,3T4,21(0.732+1)]=0

Thus,

4T4,2+0.8453T5,2+0.8453T4,3=1.1547(T3,2+T4,1)

Further, the temperature at the node (2,4) adjacent to the upper right round corner or the irregular boundary is calculated as,

2Δx2[T1,4T2,40.732(0.732+1)+T3,4T2,41(0.732+1)]+2Δy2[T2,3T2,40.732(0.732+1)+T2,5T2,41(0.732+1)]=0[T1,4T2,40.732(0.732+1)+T3,4T2,41(0.732+1)]+[T2,3T2,40.732(0.732+1)+T2,5T2,41(0.732+1)]=0

Thus,

4T2,4+0.8453T3,4+0.8453T2,5=1.1547(T1,4+T2,3)

Liebmann’s method is used to solve the temperature on the heated plate iteratively in MATLAB, until the percent relative error falls below 1%.

Use the following MATLAB code to implement the Liebmann’s method and the equation at the nodes (4,2)&(2,4) to solve for the temperature distribution on the heated plate with fixed boundary conditions as,

clear;clc;

% Enter the initial temperature distribution

T = zeros(5,5);

% Enter the initial conditions

T(1,1:4) = 100;

T(2:5,5) = 100;

T(5,2:4) = 50;

T(1:4,1) = 50;

ans

n = length(T(:,1));

m = length(T(1,:));

% Enter the Weighing factor

lambda = 1.5;

iteration = 0;

A = ((1/(0.732*1.732))*2/((1/(0.732*1.732))+(1/(1.732))));

B = ((1/(1.732))*2/((1/(0.732*1.732))+(1/(1.732))));

% Start the loop and run it until Ea < 1

while 1

for i = 2:m-1

for j = 2:n-1

Told(i,j) = T(i,j);

% for lower left and upper right corner nodes

if (i == 4 && j == 2) || (i == 2 && j == 4)

T(i,j) = (-(A*(T(i-1,j)+T(i,j-1)))-(B*T(i+1,j))...

-(B*T(i,j+1)))/(-4);

else

% Liebmann's method for rest of the interior nodes

T(i,j) = (T(i+1,j)+T(i-1,j)+T(i,j+1)+T(i,j-1))/4;

% Percent relative error

Ea(i,j) = abs((T(i,j)-Told(i,j))/T(i,j))*100;

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

end

end

end

iteration = iteration+1;

if max(Ea(:,:)) < 1

break

end

end

T

iteration

Execute the above code to obtain the temperature distribution and the number of iterations performed, in the output as shown below,

T =

50.0000 100.0000 100.0000 100.0000 0

50.0000 75.0538 85.8151 92.8540 100.0000

50.0000 64.3565 75.0200 85.7216 100.0000

50.0000 57.1402 64.2716 75.0977 100.0000

0 50.0000 50.0000 50.0000 100.0000

iteration =

9

Hence, the temperature on the heated plate with desired accuracy is achieved after 9 iterations as obtained in the above MATLAB output.

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
Assignment 10, Question 4, Problem Book #202 Problem Statement An ideal Brayton cycle with a two-stage compressor, a two-stage turbine, and a regenerator operates with a mass flow rate of 25 kg/s. The regenerator cold inlet is at 490 K and its effectiveness is 60%. Ambient conditions are 90 kPa and 20°C. The intercooler operates at 450 kPa and the reheater operates at 550 kPa. The temperature at the exit of the combustion chamber is 1,400 K. Heat is removed in the intercooler at a rate of 2.5 MW and heat is added in the reheater at a rate of 10 MW. Determine the thermal efficiency and the back work ratio. Use a cold air standard analysis with cp = 1.005 kJ/(kg K) and k = 1.4. . Answer Table Stage Description Your Answer Correct Answer Due Date Grade (%) 1 Thermal efficiency (%) Dec 5, 2024 11:59 pm 0.0 1 Weight Attempt Action/Message 1/5 Part Type Submit 1 Back work ratio (%) Dec 5, 2024 11:59 pm 0.0 1 * Correct answers will only show after due date has passed.
Assignment 10, Question 3, Problem Book #198 Problem Statement Consider a Brayton cycle with a regenerator. The regenerator has an effectiveness of 75%. The compressor inlet conditions are 1.2 bar and 300 K and the mass flowrate is 4.5 kg/s. The compressor outlet pressure is 9 bar. Both the compressor and turbine consist of a single isentropic stage. What minimum power output must be achieved before the regenerator begins to have a benefit? Use an air-standard analysis. Answer Table Correct Answer Stage Description Your Answer Due Date Grade (%) Part Weight Attempt Action/Message Туре 1 Power output (MW) Dec 5, 2024 11:59 pm 0.0 1 1/5 Submit * Correct answers will only show after due date has passed.
Q-3 Consider an engine operating on the ideal Diesel cycle with air as the working fluid. The volume of the cylinder is 1200 cm³ at the beginning of the Compression process, 75 cm³ at the end, and 150 cm³ after the heat addition process. Air is at 17°c and lookpa at the beginning of the compression proc ess. Determine @ The pressure at the beginning of the heat rejection process. the net work per cycle in kjⒸthe mean effective pressur. Answers @264.3 KN/m² ②0.784 kj or 544-6 kj © 697 KN 19 2 m
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
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
Text book image
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
Text book image
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
Text book image
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
Text book image
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
Text book image
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
What is a Function? Business Mathematics and Statistics; Author: Edmerls;https://www.youtube.com/watch?v=fcGNFyqRzuI;License: Standard YouTube License, CC-BY
FUNCTIONS CONCEPTS FOR CBSE/ISC/JEE/NDA/CET/BANKING/GRE/MBA/COMEDK; Author: Neha Agrawal Mathematically Inclined;https://www.youtube.com/watch?v=hhbYynJwBqk;License: Standard YouTube License, CC-BY