Details

Building Software for Simulation


Building Software for Simulation

Theory and Algorithms, with Applications in C++
1. Aufl.

von: James J. Nutaro

116,99 €

Verlag: Wiley
Format: PDF
Veröffentl.: 08.02.2011
ISBN/EAN: 9780470877982
Sprache: englisch
Anzahl Seiten: 368

DRM-geschütztes eBook, Sie benötigen z.B. Adobe Digital Editions und eine Adobe ID zum Lesen.

Beschreibungen

<b>Building Software <i>for</i> Simulation</b> <p><b>A unique guide to the design and implementation of simulation software</b> <p>This book offers a concise introduction to the art of building simulation software, collecting the most important concepts and algorithms in one place. Written for both individuals new to the field of modeling and simulation as well as experienced practitioners, this guide explains the design and implementation of simulation software used in the engineering of large systems while presenting the relevant mathematical elements, concept discussions, and code development. <p>The book approaches the topic from the perspective of Zeigler’s theory of modeling and simulation, introducing the theory’s fundamental concepts and showing how to apply them to engineering problems. Readers will learn five necessary skills for building simulations of complicated systems: <ul><li>Working with fundamental abstractions for simulating dynamic systems</li> <li>Developing basic simulation algorithms for continuous and discrete event models</li> <li>Combining continuous and discrete event simulations into a coherent whole</li> <li>Applying strategies for testing a simulation</li> <li>Understanding the theoretical foundations of the modeling constructs and simulation algorithms</li></ul> <p>The central chapters of the book introduce, explain, and demonstrate the elements of the theory that are most important for building simulation tools. They are bracketed by applications to robotics, control and communications, and electric power systems; these comprehensive examples clearly illustrate how the concepts and algorithms are put to use. Readers will explore the design of object-oriented simulation programs, simulation using multi-core processors, and the integration of simulators into larger software systems. <p>The focus on software makes this book particularly useful for computer science and computer engineering courses in simulation that focus on building simulators. It is indispensable reading for undergraduate and graduate students studying modeling and simulation, as well as for practicing scientists and engineers involved in the development of simulation tools.
<b>PREFACE.</b> <p><b>1 INTRODUCTION.</b></p> <p>1.1 Elements of a Software Architecture.</p> <p>1.2 Systems Concepts as an Architectural Foundation.</p> <p>1.3 Summary.</p> <p>1.4 Organization of the Book.</p> <p><b>2 FIRST EXAMPLE: SIMULATING A ROBOTIC TANK.</b></p> <p>2.1 Functional Modeling.</p> <p>2.2 A Robotic Tank.</p> <p>2.2.1 Equations of Motion.</p> <p>2.2.2 Motors, Gearbox, and Tracks.</p> <p>2.2.3 Complete Model of the Tank?s Continuous Dynamics.</p> <p>2.2.4 The Computer.</p> <p>2.2.5 Complete Model of the Tank.</p> <p>2.3 Design of the Tank Simulator.</p> <p>2.4 Experiments.</p> <p>2.5 Summary.</p> <p><b>3 DISCRETE-TIME SYSTEMS.</b></p> <p>3.1 Atomic Models.</p> <p>3.1.1 Trajectories.</p> <p>3.1.2 The State Transition and Output Function.</p> <p>3.1.3 Two Examples of Atomic, Discrete-Time Models.</p> <p>3.1.4 Systems with Bags for Input and Output.</p> <p>3.1.5 A Simulator for Atomic Models.</p> <p>3.2 Network Models.</p> <p>3.2.1 The Parts of a Network Model.</p> <p>3.2.2 The Resultant of a Network Model.</p> <p>3.2.3 An Example of a Network Model and Its Resultant.</p> <p>3.2.4 Simulating the Resultant.</p> <p>3.3 A Simulator for Discrete-Time Systems.</p> <p>3.4 Mealy/Moore-Type Systems.</p> <p>3.5 Cellular Automata.</p> <p>3.6 Summary.</p> <p><b>4 DISCRETE-EVENT SYSTEMS.</b></p> <p>4.1 Atomic Models.</p> <p>4.1.1 Time and Trajectories.</p> <p>4.1.2 The State Transition Function.</p> <p>4.1.3 The Output Function.</p> <p>4.1.4 Legitimate Systems.</p> <p>4.1.5 An Example of an Atomic Model.</p> <p>4.1.6 The Interrupt Handler in the Robotic Tank.</p> <p>4.1.7 Systems with Bags for Input and Output.</p> <p>4.1.8 A Simulator for Atomic Models.</p> <p>4.1.9 Simulating the Interrupt Handler.</p> <p>4.2 Network Models.</p> <p>4.2.1 The Parts of a Network Model.</p> <p>4.2.2 The Resultant of a Network Model.</p> <p>4.2.3 An Example of a Network Model and Its Resultant.</p> <p>4.2.4 Simulating the Resultant.</p> <p>4.3 A Simulator for Discrete-Event Systems.</p> <p>4.3.1 The Event Schedule.</p> <p>4.3.2 The Bag.</p> <p>4.3.3 The Simulation Engine.</p> <p>4.4 The Computer in the Tank.</p> <p>4.5 Cellular Automata Revisited.</p> <p>4.6 Summary.</p> <p><b>5 HYBRID SYSTEMS.</b></p> <p>5.1 An Elementary Hybrid System.</p> <p>5.2 Networks of Continuous Systems.</p> <p>5.3 Hybrid Models as Discrete-Event Systems.</p> <p>5.4 Numerical Simulation of Hybrid Systems.</p> <p>5.5 A Simulator for Hybrid Systems.</p> <p>5.6 Interactive Simulation of the Robotic Tank.</p> <p>5.6.1 Correcting the Dynamics of a Turn.</p> <p>5.6.2 A Simplified Model of the Motor.</p> <p>5.6.3 Updating the Display.</p> <p>5.6.4 Implementing the Tank Physics.</p> <p>5.7 Approximating Continuous Interaction Between Hybrid Models.</p> <p>5.8 A Final Comment on Cellular Automata.</p> <p>5.8.1 Differential Automata with Constant Derivatives.</p> <p>5.8.2 Modeling Asynchronous Cellular Automata with Differential Automata.</p> <p>5.8.3 A Homomorphism from Differential Automata to Asynchronous Cellular Automata.</p> <p>5.9 Summary.</p> <p><b>6 APPLICATIONS.</b></p> <p>6.1 Control Through a Packet-Switched Network.</p> <p>6.1.1 Model of the Pendulum and Its PID Controller.</p> <p>6.1.2 Integration with an Ethernet Simulator.</p> <p>6.1.3 Experiments.</p> <p>6.2 Frequency Regulation in an Electrical Power System.</p> <p>6.2.1 Generation.</p> <p>6.2.2 Transmission Network and Electrical Loads.</p> <p>6.2.3 Frequency Monitoring and Load Actuation.</p> <p>6.2.4 Software Implementation.</p> <p>6.2.5 Experiments.</p> <p>6.3 Summary.</p> <p><b>7 THE FUTURE.</b></p> <p>7.1 Simulation Programming Languages.</p> <p>7.2 Parallel Computing and Discrete-Event Simulation.</p> <p>7.3 The Many Forms of Discrete Systems and Their Simulators.</p> <p>7.4 Other Facets of Modeling and Simulation.</p> <p><b>APPENDIX A DESIGN AND TEST OF SIMULATIONS.</b></p> <p>A.1 Decomposing a Model.</p> <p>A.1.1 Bottom-Up Testing.</p> <p>A.1.2 Invariants and Assertions.</p> <p>A.2 Input and Output Objects.</p> <p>A.2.1 Simple Structures.</p> <p>A.2.2 Unions.</p> <p>A.2.3 Pointers and Hierarchies of Events.</p> <p>A.2.4 Mixing Strategies with Model Wrappers.</p> <p>A.3 Reducing Execution Time.</p> <p><b>APPENDIX B PARALLEL DISCRETE EVENT SIMULATION.</b></p> <p>B.1 A Conservative Algorithm.</p> <p>B.1.1 Lookahead.</p> <p>B.1.2 The Algorithm.</p> <p>B.2 Implementing the Algorithm with OpenMP.</p> <p>B.2.1 Pragmas, Volatiles, and Locks.</p> <p>B.2.2 Overview of the Simulator.</p> <p>B.2.3 The <i>LogicalProcess.</i></p> <p>B.2.4 The <i>MessageQ</i>.</p> <p>B.2.5 The <i>ParSimulator</i>.</p> <p>B.3 Demonstration of Gustafson?s and Amdahl?s Laws.</p> <p><b>APPENDIX C MATHEMATICAL TOPICS.</b></p> <p>C.1 System Homomorphisms.</p> <p>C.2 Sinusoidal State-Steady Analysis.</p> <p><b>REFERENCES.</b></p> <p><b>INDEX.</b></p>
"It is indispensable reading for undergraduate and graduate students studying modeling and simulation, as well as for practicing scientists and engineers involved in the development of simulation tools." (Zentralblatt MATH, 2011)<br /> <br /> <p>"Written by leading experts in the field, this book (which is complementary to Fatigue of Materials and Structures: Application to Damage and Design, also edited by Claude Bathias and Andr Pineau), provides an authoritative, comprehensive and unified treatment of the mechanics and micromechanisms of fatigue in metals, polymers and composites." (PR-Inside.com, 15 March 2011)</p> <p>"This book offers a concise introduction to the art of building simulation software, collecting the most important concepts and algorithms in one place." (Robotics Technology, 15 March 2011)</p>
<p><b>JAMES J. NUTARO, P<small>H</small>D,</b> is an adjunct faculty member at the University of Tennessee in Knoxville and a member of the research staff at Oak Ridge National Laboratory. He has developed simulation software used by industrial, academic, and research organizations including Raytheon, Northrop Grumman, Intel, and several universities. Nutaro has published articles on modeling and simulation in ACM and IEEE journals. He is Associate Editor for <i>SIMULATION: Transactions of the Society for Computer Simulation International</i> as well as for <i>ACM Transactions on Modeling and Computer Simulation</i>, and is a member of the IEEE.</p>
<p><b>A unique guide to the design and implementation of simulation software</b></p> <p>This book offers a concise introduction to the art of building simulation software, collecting the most important concepts and algorithms in one place. Written for both individuals new to the field of modeling and simulation as well as experienced practitioners, this guide explains the design and implementation of simulation software used in the engineering of large systems while presenting the relevant mathematical elements, concept discussions, and code development. <p>The book approaches the topic from the perspective of Zeigler’s theory of modeling and simulation, introducing the theory’s fundamental concepts and showing how to apply them to engineering problems. Readers will learn five necessary skills for building simulations of complicated systems: <ul><li>Working with fundamental abstractions for simulating dynamic systems</li> <li>Developing basic simulation algorithms for continuous and discrete event models</li> <li>Combining continuous and discrete event simulations into a coherent whole</li> <li>Applying strategies for testing a simulation</li> <li>Understanding the theoretical foundations of the modeling constructs and simulation algorithms</li></ul> <p>The central chapters of the book introduce, explain, and demonstrate the elements of the theory that are most important for building simulation tools. They are bracketed by applications to robotics, control and communications, and electric power systems; these comprehensive examples clearly illustrate how the concepts and algorithms are put to use. Readers will explore the design of object-oriented simulation programs, simulation using multi-core processors, and the integration of simulators into larger software systems. <p>The focus on software makes this book particularly useful for computer science and computer engineering courses in simulation that focus on building simulators. It is indispensable reading for undergraduate and graduate students studying modeling and simulation, as well as for practicing scientists and engineers involved in the development of simulation tools.

Diese Produkte könnten Sie auch interessieren:

The CISO Evolution
The CISO Evolution
von: Matthew K. Sharp, Kyriakos Lambros
PDF ebook
33,99 €
Data Mining and Machine Learning Applications
Data Mining and Machine Learning Applications
von: Rohit Raja, Kapil Kumar Nagwanshi, Sandeep Kumar, K. Ramya Laxmi
EPUB ebook
190,99 €