-
Notifications
You must be signed in to change notification settings - Fork 57
/
NOTES
32 lines (21 loc) · 1007 Bytes
/
NOTES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- add to Ch 1 a review of numerical methods:
. truncation vs. roundoff error
. numerical differentiation and integration
. ODEs
. linear algebra
-- add section to each chapter: "Numerical Explorations"
. create a separate, non-pyro git repo that has basic examples for all
of the methods in 1-d also add discussions from pyro.
. start with simple grid class and BC discussion
. 1-d advection example
-- preface:
"Each of the main chapters has 2 sections at the end: "Numerical
Explorations" and "Going further". The first guides the reader
through some exercises using the codes in the git repo associated
with these notes. The latter briefly discusses some of the popular
extensions done to the core algorithms discussed here, with pointers
to the relevant papers in the literature.
-- burgers:
http://onlinelibrary.wiley.com/doi/10.1002/fld.1650030302/abstract
Generating exact solutions of the two-dimensional Burgers' equations
Clive A. J. Fletcher