Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
%Application to steady state heat conduction%Clearing the screen, workspace and closing all plots
clear
clc
close all
%%
%Defining parametres
L=1; %L=1m
T0=500; %T0=500K
k=40; %k=40W/(m*K)
points=200;
q0=1000; %q0=1000W/m^2
sigma1=0.5; %sigma=0.5
sigma2=0.05; %sigma=0.05
x01=0.3; %x=0.3m
x02=0.8; %x=0.8m
n=points;
%%...