Graph Plotting the differential equation

조회 수: 4 (최근 30일)
Dhananjay Singh
Dhananjay Singh 2020년 11월 23일
댓글: Stephan 2020년 11월 23일
How I plot qSol(r) wrt r and TSol(r) wrt r ?
%heat conduction with an electrical heat source in copper wire
clc; clear;
close all;
%parameters
R = 0.2; % radius in m
L = 10; % length of wire in m
ke = 60000000; % electrical conductivity of copper in S/m
k = 401; % thermal conductivity of copper in W/m.K
I = 10; % electrical current in Amp
Se = (I*I)/ke; % rate of heat production per unit volume
T0 = 20 % Temp in Celcius
%Energy Balance in cylindrical shell of thickness del(r) and length L
% Doing the energy balance and taking del(r) common and limiting it to 0, a
% linear differential equation is formed.
% SOLVING DIFFERENTIAL EQUATION
syms q(r) %q is the heat flux
ode = diff(r*q,r) == Se*r
cond = q(0)==0 %B.C at r = 0,q~=inf gives a expression which states that at r = 0 , q = 0
qSol(r)=dsolve(ode,cond)
%Temperature Profile
syms T(r)
ode = diff(T,r) ==(-Se*r/(2*k))
cond = T(R)==T0;
TSol(r)=dsolve(ode,cond)
%Plot Flux profile

채택된 답변

Stephan
Stephan 2020년 11월 23일
편집: Stephan 2020년 11월 23일
yyaxis left
fplot(qSol,[0, 100])
yyaxis right
fplot(TSol,[0, 100])
  댓글 수: 2
Dhananjay Singh
Dhananjay Singh 2020년 11월 23일
Thank You
Stephan
Stephan 2020년 11월 23일
Did you notice that you can accept and/or vote for useful answers?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by