Heat Transfer
eBook - PDF

Heat Transfer

Gregory Nellis, Sanford Klein

Share book
  1. English
  2. PDF
  3. Available on iOS & Android
eBook - PDF

Heat Transfer

Gregory Nellis, Sanford Klein

Book details
Book preview
Table of contents
Citations

About This Book

This textbook provides engineers with the capability, tools and confidence to solve real-world heat transfer problems. It includes many advanced topics, such as Bessel functions, Laplace transforms, separation of variables, Duhamel's theorem and complex combination, as well as high order explicit and implicit numerical integration algorithms. These analytical and numerical solution methods are applied to topics not considered in most textbooks. Examples include heat exchangers involving fluids with varying specific heats or phase changes; heat exchangers in which axial conduction is a concern; and regenerators. Derivations of important results are presented completely, without skipping steps, which reduces student frustration and improves readability and retention. The examples are not trivial 'textbook' exercises; they are rather complex and timely real-world problems that are inherently interesting. This book integrates the computational software packages Maple, MATLAB®, FEHT and Engineering Equation Solver (EES) directly with the heat transfer material.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Heat Transfer an online PDF/ePUB?
Yes, you can access Heat Transfer by Gregory Nellis, Sanford Klein in PDF and/or ePUB format, as well as other popular books in Technology & Engineering & Mechanical Engineering. We have over one million books available in our catalogue for you to explore.
12
One-Dimensional,
Steady-State
Conduction
which
is
expanded
and
used
with
Fourier’s
law
to
reach:
d
dr
k
A
c
dT
dr
=
0
(1-55)
The
cross-sectional
area
for
heat
transfer
is
the
surface
area
of
a
sphere:
d
dr
k
4
π
r
2

A
c
dT
dr
=
0
(1-56)
Assuming
that
k
is
constant
allows
Eq.
(
1-56
)
to
be
simplified:
d
dr
r
2
dT
dr
=
0
(1-57)
Equation
(1-57)
is
entered
in
Maple:
>
restart;
>
ODE:=diff(rˆ2*diff(T(r),r),r)=0;
ODE
:
=
2
r
d
dr
T(
r
)
+
r
2
d
2
dr
2
T(
r
)
=
0
and
solved:
>
Ts:=dsolve(ODE);
Ts
:
=
T(
r
)
=
C
1
+
C
2
r
The
boundary
conditions
are:
T
r
=
r
in
=
T
H
(1-58)
T
r
=
r
out
=
T
C
(1-59)
These
equations
are
entered
in
Maple:
>
BC1:=rhs(eval(Ts,r=r_in))=T_H;
BC
1
:
=
C
1
+
C
2
r
in
=
T
H
>
BC2:=rhs(eval(Ts,r=r_out))=T_C;
BC
2
:
=
C
1
+
C
2
r
out
=
T
C

Table of contents