Question

A brick oven of 20 cm thick has the following temperature profile at initial time. (from...

A brick oven of 20 cm thick has the following temperature profile at initial time. (from inside to outside) ?=2?+25 ? [?:?? ??]

Suddenly the inside surface (Left) of the brick oven is being contacted with 1000C and the other side (Right) is being contacted with 300C. The model equation is given as follows:

?.?? (?2?/??2)=??/??

M Make the required corrections and modifications in the following function to Find the temperature profile of the brick oven (for t=20 min, Δx=4 cm and Δt=5)

Note : Give your calculated temperature profile, your command function lines and your modified codes

function CrankNicholson(Tinitial, t, delx, delt, walllength, a)

stability = a*delt/delx^2;

nt=t/delt+1;

x = 0:delx:walllength;

nx = length(x);

Td(1:nt,1)=Tinitial;

Td(1,1:nx)=2*x;

for j=1:nt-1

for k=1:nx-1

   if k == 1

     M(k, k) = -1-stability;

     M(k, k+1) = stability/2;

    elseif k > 1 && k <= nx-2

      M(k, k-1) =stability/2;

      M(k, k) = -1-stability;

      M(k, k+1) = stability/2;

    else

      M(k, k-1) = 2*stability/2;

      M(k, k) = -1-stability;

   end

    if k+2 <= nx

      S(k) =-stability/2*Td(j, k)+(stability-1)* Td(j, k+1)-stability/2* Td(j, k+2);  

    else

      S(k) =-stability*Td(j, k)+(stability-1)* Td(j, k+1);

   end

end

aa = inv(M) * S';

end

disp(aa);

end

0 0
Add a comment Improve this question Transcribed image text
Request Professional Answer

Request Answer!

We need at least 10 more requests to produce the answer.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the answer will be notified once they are available.
Know the answer?
Add Answer to:
A brick oven of 20 cm thick has the following temperature profile at initial time. (from...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Similar Homework Help Questions
  • You need not run Python programs on a computer in solving the following problems. Place your...

    You need not run Python programs on a computer in solving the following problems. Place your answers into separate "text" files using the names indicated on each problem. Please create your text files using the same text editor that you use for your .py files. Answer submitted in another file format such as .doc, .pages, .rtf, or.pdf will lose least one point per problem! [1] 3 points Use file math.txt What is the precise output from the following code? bar...

  • Cryptography, the study of secret writing, has been around for a very long time, from simplistic...

    Cryptography, the study of secret writing, has been around for a very long time, from simplistic techniques to sophisticated mathematical techniques. No matter what the form however, there are some underlying things that must be done – encrypt the message and decrypt the encoded message. One of the earliest and simplest methods ever used to encrypt and decrypt messages is called the Caesar cipher method, used by Julius Caesar during the Gallic war. According to this method, letters of the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT