Computer simulation in physics and engineering
This work is a needed reference for widely used techniques and methods of computer simulation in physics and other disciplines, such as materials science. The work conveys both: the theoretical foundations of computer simulation as well as applications and ""tricks of the trade""...
Saved in:
Main Author: | |
---|---|
Format: | eBook |
Language: | English |
Published: |
Berlin :
Walter de Gruyter GmbH & Co. KG,
2013.
|
Subjects: | |
ISBN: | 9781680152050 168015205X 9783110256062 3110256061 9781299720336 1299720331 9783110255904 3110255901 |
Physical Description: | 1 online resource (xix, 508 pages) : illustrations |
LEADER | 06335cam a2200529 a 4500 | ||
---|---|---|---|
001 | kn-ocn844342387 | ||
003 | OCoLC | ||
005 | 20240717213016.0 | ||
006 | m o d | ||
007 | cr cn||||||||| | ||
008 | 121016s2013 gw a ob 001 0 eng d | ||
040 | |a E7B |b eng |e pn |c E7B |d CDX |d OCLCF |d CUS |d OCLCO |d KNOVL |d OCLCQ |d YDXCP |d N$T |d IDEBK |d COO |d EBLCP |d DEBSZ |d OCLCO |d ZCU |d OCLCQ |d OCLCO |d AZK |d OCLCO |d LOA |d UAB |d AGLDB |d MOR |d VT2 |d PIFAG |d VGM |d STF |d MERUC |d OCLCQ |d U3W |d WRM |d OCLCQ |d VTS |d COCUF |d CEF |d NRAMU |d ICG |d INT |d AU@ |d OCLCQ |d WYU |d OCLCQ |d DKC |d OCLCQ |d AJS |d UKBTH |d OCLCO |d OCLCQ |d OCLCO |d OCLCL |d OCLCQ |d SXB | ||
020 | |a 9781680152050 |q (electronic bk.) | ||
020 | |a 168015205X |q (electronic bk.) | ||
020 | |a 9783110256062 |q (e-book) | ||
020 | |a 3110256061 |q (e-book) | ||
020 | |a 9781299720336 |q (MyiLibrary) | ||
020 | |a 1299720331 |q (MyiLibrary) | ||
020 | |z 9783110255904 | ||
020 | |z 3110255901 | ||
024 | 7 | |a 10.1515/9783110256062 |2 doi | |
024 | 8 | |a 99952894009 | |
035 | |a (OCoLC)844342387 |z (OCoLC)826293771 |z (OCoLC)826482326 |z (OCoLC)948656127 |z (OCoLC)961675351 |z (OCoLC)961848457 |z (OCoLC)962600283 |z (OCoLC)966151675 |z (OCoLC)987921396 |z (OCoLC)987933330 |z (OCoLC)988533034 |z (OCoLC)988675867 |z (OCoLC)991987773 |z (OCoLC)999517621 |z (OCoLC)1000396369 |z (OCoLC)1037794180 |z (OCoLC)1038660418 |z (OCoLC)1045485820 |z (OCoLC)1058607725 |z (OCoLC)1058993517 |z (OCoLC)1097126171 |z (OCoLC)1162423099 |z (OCoLC)1290092966 |z (OCoLC)1296540353 |z (OCoLC)1300674963 | ||
100 | 1 | |a Steinhauser, M. O. |q (Martin Oliver), |e author. |1 https://id.oclc.org/worldcat/entity/E39PBJtH7RcqGBJRCWRdMPvGpP | |
245 | 1 | 0 | |a Computer simulation in physics and engineering / |c Martin Oliver Steinhauser. |
260 | |a Berlin : |b Walter de Gruyter GmbH & Co. KG, |c 2013. | ||
300 | |a 1 online resource (xix, 508 pages) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
504 | |a Includes bibliographical references and index. | ||
505 | 0 | |a Preface; 1 Introduction to computer simulation; 1.1 Physics and computational physics; 1.2 Choice of programming language; 1.3 Outfitting your PC for scientific computing; 1.4 History of computing in a nutshell; 1.5 Number representation: bits and bytes in computer memory; 1.5.1 Addition and subtraction of dual integer numbers; 1.5.2 Basic data types; 1.6 The role of algorithms in scientific computing; 1.6.1 Efficient and inefficient calculations; 1.6.2 Asymptotic analysis of algorithms; 1.6.3 Merge sort and divide-and-conquer; 1.7 Theory, modeling and computer simulation. | |
505 | 8 | |a 1.7.1 What is a theory?1.7.2 What is a model?; 1.7.3 Model systems: particles or fields?; 1.7.4 The linear chain as a model system; 1.7.5 From modeling to computer simulation; 1.8 Exercises; 1.8.1 Addition of bit patterns of 1 byte duals; 1.8.2 Subtracting dual numbers using two's complement; 1.8.3 Comparison of running times; 1.8.4 Asymptotic notation; 1.9 Chapter literature; 2 Scientific Computing in C; 2.1 Introduction; 2.1.1 Basics of a UNIX/Linux programming environment; 2.2 First steps in C; 2.2.1 Variables in C; 2.2.2 Global variables; 2.2.3 Operators in C; 2.2.4 Control structures. | |
505 | 8 | |a 2.2.5 Scientific "Hello world!"2.2.6 Streams -- input/output functionality; 2.2.7 The preprocessor and symbolic constants; 2.2.8 The function scanf(); 2.3 Programming examples of rounding errors and loss of precision; 2.3.1 Algorithms for calculating e-x; 2.3.2 Algorithm for summing 1/n; 2.4 Details on C-Arrays; 2.4.1 Direct initialization of certain array elements (C99); 2.4.2 Arrays with variable length (C99); 2.4.3 Arrays as function parameters; 2.4.4 Pointers; 2.4.5 Pointers as function parameters; 2.4.6 Pointers to functions as function parameters; 2.4.7 Strings. | |
505 | 8 | |a 2.5 Structures and their representation in computer memory2.5.1 Blending structs and arrays; 2.6 Numerical differentiation and integration; 2.6.1 Numerical differentiation; 2.6.2 Case study: the second derivative of ex; 2.6.3 Numerical integration; 2.7 Remarks on programming and software engineering; 2.7.1 Good software development practices; 2.7.2 Reduction of complexity; 2.7.3 Designing a program; 2.7.4 Readability of a program; 2.7.5 Focus your attention by using conventions; 2.8 Ways to improve your programs; 2.9 Exercises; 2.9.1 Questions; 2.9.2 Errors in programs. | |
505 | 8 | |a 2.9.3 printf()-statement2.9.4 Assignments; 2.9.5 Loops; 2.9.6 Recurrence; 2.9.7 Macros; 2.9.8 Strings; 2.9.9 Structs; 2.10 Projects; 2.10.1 Decimal and binary representation; 2.10.2 Nearest machine number; 2.10.3 Calculating e -x; 2.10.4 Loss of precision; 2.10.5 Summing series; 2.10.6 Recurrence in orthogonal functions; 2.10.7 The Towers of Hanoi; 2.10.8 Spherical harmonics and Legendre polynomials; 2.10.9 Memory diagram of a battle; 2.10.10 Computing derivatives numerically; 2.11 Chapter literature; 3 Fundamentals of statistical physics; 3.1 Introduction and basic ideas. | |
506 | |a Plný text je dostupný pouze z IP adres počítačů Univerzity Tomáše Bati ve Zlíně nebo vzdáleným přístupem pro zaměstnance a studenty | ||
520 | |a This work is a needed reference for widely used techniques and methods of computer simulation in physics and other disciplines, such as materials science. The work conveys both: the theoretical foundations of computer simulation as well as applications and ""tricks of the trade"", that often are scattered across various papers. Thus it will meet a need and fill a gap for every scientist who needs computer simulations for his/her task at hand. In addition to being a reference, case studies and exercises for use as course reading are included. | ||
590 | |a Knovel |b Knovel (All titles) | ||
650 | 0 | |a Physics |x Data processing. | |
650 | 0 | |a Physics |x Computer simulation. | |
650 | 0 | |a Engineering |x Data processing. | |
650 | 0 | |a Engineering |x Computer simulation. | |
655 | 7 | |a elektronické knihy |7 fd186907 |2 czenas | |
655 | 9 | |a electronic books |2 eczenas | |
776 | 0 | 8 | |i Print version: |a Steinhauser, M.O. (Martin Oliver). |t Computer simulation in physics and engineering. |d Berlin : De Gruyter, 2013 |z 3110255901 |w (DLC) 2012031111 |w (OCoLC)846529916 |
856 | 4 | 0 | |u https://proxy.k.utb.cz/login?url=https://app.knovel.com/hotlink/toc/id:kpCSPE0002/computer-simulation-in?kpromoter=marc |y Full text |