Computational Mathematics
eBook - ePub

Computational Mathematics

Models, Methods, and Analysis with MATLAB and MPI, Second Edition

Robert E. White

Buch teilen
  1. 500 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Computational Mathematics

Models, Methods, and Analysis with MATLAB and MPI, Second Edition

Robert E. White

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Computational Mathematics: Models, Methods, and Analysis with MATLAB and MPI is a unique book covering the concepts and techniques at the core of computational science. The author delivers a hands-on introduction to nonlinear, 2D, and 3D models; nonrectangular domains; systems of partial differential equations; and large algebraic problems requirin

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Computational Mathematics als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Computational Mathematics von Robert E. White im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Mathematik & Zahlentheorie. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2015
ISBN
9781482235180
Auflage
2

Chapter 1

Discrete Time–Space Models

The first three sections introduce diffusion of heat in one direction. This is an example of model evolution with the simplest model being for the temperature of a well-stirred liquid where the temperature does not vary with space. The model is then enhanced by allowing the mass to have different temperatures in different locations. Because heat flows from hot to cold regions, the subsequent model will be more complicated. In Section 1.4 a similar model is considered, and the application will be to the prediction of the pollutant concentration in a stream resulting from a source of pollution upstream. Both of these models are discrete versions of the continuous model that are partial differential equations. Section 1.5 indicates how these models can be extended to heat and mass transfer in two directions, which is discussed in more detail in Chapters 3 and 4. In the last section variations of the mean value theorem are used to estimate the errors made by replacing the continuous model by a discrete model. Additional introductory materials can be found in G. D. Smith [29], and in R. L. Burden and J. D. Faires [7].

1.1 Newton Cooling Models

1.1.1 Introduction

Many quantities change as time progresses such as money in a savings account or the temperature of a refreshing drink or any cooling mass. Here we will be interested in making predictions about such changing quantities. A simple mathematical model has the form u+ = au + b where a and b are given real numbers, u is the present amount and u+ is the next amount. This calculation is usually repeated a number of times and is a simple example of an algorithm. A computer is used to do a large number calculations.
Computers use a finite subset of the rational numbers (a ratio of two integers) to approximate any real number. This set of numbers may depend on the computer being used. However, they do have the same general form and are called floating point numbers. Any real number x can be represented by an infinite decimal expansion x = ±(.x1 · · · xd · · · )10e, and by truncating this we can define the chopped floating point numbers.
Let x be any real number and denote a floating point number by
fl(x)=±.x1xd10e=±(x1/10++xd/10d)10e.
This is a floating point number with base equal to 10 where x1 is not equal to zero, xi are integers between 0 and 9, the exponent e is also a bounded integer and d is an integer called the precision of the floating point system. Associated with each real number, x, and its floating point approximate number, fl(x), is the floating point error, fl(x) − x. In general, this error decreases as the precision, d, increases. Each...

Inhaltsverzeichnis