Home > Computing and Information Technology > Computer programming / software engineering > Software Engineering > Building Software for Simulation: Theory and Algorithms, with Applications in C++
14%
Building Software for Simulation: Theory and Algorithms, with Applications in C++

Building Software for Simulation: Theory and Algorithms, with Applications in C++

          
5
4
3
2
1

International Edition


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

Building Software for Simulation A unique guide to the design and implementation of simulation software 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. 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: Working with fundamental abstractions for simulating dynamic systems Developing basic simulation algorithms for continuous and discrete event models Combining continuous and discrete event simulations into a coherent whole Applying strategies for testing a simulation Understanding the theoretical foundations of the modeling constructs and simulation algorithms 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. 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.

Table of Contents:
PREFACE. 1 INTRODUCTION. 1.1 Elements of a Software Architecture. 1.2 Systems Concepts as an Architectural Foundation. 1.3 Summary. 1.4 Organization of the Book. 2 FIRST EXAMPLE: SIMULATING A ROBOTIC TANK. 2.1 Functional Modeling. 2.2 A Robotic Tank. 2.2.1 Equations of Motion. 2.2.2 Motors, Gearbox, and Tracks. 2.2.3 Complete Model of the Tank?s Continuous Dynamics. 2.2.4 The Computer. 2.2.5 Complete Model of the Tank. 2.3 Design of the Tank Simulator. 2.4 Experiments. 2.5 Summary. 3 DISCRETE-TIME SYSTEMS. 3.1 Atomic Models. 3.1.1 Trajectories. 3.1.2 The State Transition and Output Function. 3.1.3 Two Examples of Atomic, Discrete-Time Models. 3.1.4 Systems with Bags for Input and Output. 3.1.5 A Simulator for Atomic Models. 3.2 Network Models. 3.2.1 The Parts of a Network Model. 3.2.2 The Resultant of a Network Model. 3.2.3 An Example of a Network Model and Its Resultant. 3.2.4 Simulating the Resultant. 3.3 A Simulator for Discrete-Time Systems. 3.4 Mealy/Moore-Type Systems. 3.5 Cellular Automata. 3.6 Summary. 4 DISCRETE-EVENT SYSTEMS. 4.1 Atomic Models. 4.1.1 Time and Trajectories. 4.1.2 The State Transition Function. 4.1.3 The Output Function. 4.1.4 Legitimate Systems. 4.1.5 An Example of an Atomic Model. 4.1.6 The Interrupt Handler in the Robotic Tank. 4.1.7 Systems with Bags for Input and Output. 4.1.8 A Simulator for Atomic Models. 4.1.9 Simulating the Interrupt Handler. 4.2 Network Models. 4.2.1 The Parts of a Network Model. 4.2.2 The Resultant of a Network Model. 4.2.3 An Example of a Network Model and Its Resultant. 4.2.4 Simulating the Resultant. 4.3 A Simulator for Discrete-Event Systems. 4.3.1 The Event Schedule. 4.3.2 The Bag. 4.3.3 The Simulation Engine. 4.4 The Computer in the Tank. 4.5 Cellular Automata Revisited. 4.6 Summary. 5 HYBRID SYSTEMS. 5.1 An Elementary Hybrid System. 5.2 Networks of Continuous Systems. 5.3 Hybrid Models as Discrete-Event Systems. 5.4 Numerical Simulation of Hybrid Systems. 5.5 A Simulator for Hybrid Systems. 5.6 Interactive Simulation of the Robotic Tank. 5.6.1 Correcting the Dynamics of a Turn. 5.6.2 A Simplified Model of the Motor. 5.6.3 Updating the Display. 5.6.4 Implementing the Tank Physics. 5.7 Approximating Continuous Interaction Between Hybrid Models. 5.8 A Final Comment on Cellular Automata. 5.8.1 Differential Automata with Constant Derivatives. 5.8.2 Modeling Asynchronous Cellular Automata with Differential Automata. 5.8.3 A Homomorphism from Differential Automata to Asynchronous Cellular Automata. 5.9 Summary. 6 APPLICATIONS. 6.1 Control Through a Packet-Switched Network. 6.1.1 Model of the Pendulum and Its PID Controller. 6.1.2 Integration with an Ethernet Simulator. 6.1.3 Experiments. 6.2 Frequency Regulation in an Electrical Power System. 6.2.1 Generation. 6.2.2 Transmission Network and Electrical Loads. 6.2.3 Frequency Monitoring and Load Actuation. 6.2.4 Software Implementation. 6.2.5 Experiments. 6.3 Summary. 7 THE FUTURE. 7.1 Simulation Programming Languages. 7.2 Parallel Computing and Discrete-Event Simulation. 7.3 The Many Forms of Discrete Systems and Their Simulators. 7.4 Other Facets of Modeling and Simulation. APPENDIX A DESIGN AND TEST OF SIMULATIONS. A.1 Decomposing a Model. A.1.1 Bottom-Up Testing. A.1.2 Invariants and Assertions. A.2 Input and Output Objects. A.2.1 Simple Structures. A.2.2 Unions. A.2.3 Pointers and Hierarchies of Events. A.2.4 Mixing Strategies with Model Wrappers. A.3 Reducing Execution Time. APPENDIX B PARALLEL DISCRETE EVENT SIMULATION. B.1 A Conservative Algorithm. B.1.1 Lookahead. B.1.2 The Algorithm. B.2 Implementing the Algorithm with OpenMP. B.2.1 Pragmas, Volatiles, and Locks. B.2.2 Overview of the Simulator. B.2.3 The LogicalProcess. B.2.4 The MessageQ. B.2.5 The ParSimulator. B.3 Demonstration of Gustafson?s and Amdahl?s Laws. APPENDIX C MATHEMATICAL TOPICS. C.1 System Homomorphisms. C.2 Sinusoidal State-Steady Analysis. REFERENCES. INDEX.


Best Sellers


Product Details
  • ISBN-13: 9780470414699
  • Publisher: John Wiley & Sons Inc
  • Publisher Imprint: John Wiley & Sons Inc
  • Depth: 32
  • Language: English
  • Returnable: N
  • Series Title: English
  • Sub Title: Theory and Algorithms, with Applications in C++
  • Width: 163 mm
  • ISBN-10: 0470414693
  • Publisher Date: 03 Dec 2010
  • Binding: Hardback
  • Height: 246 mm
  • No of Pages: 368
  • Returnable: N
  • Spine Width: 26 mm
  • Weight: 730 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Building Software for Simulation: Theory and Algorithms, with Applications in C++
John Wiley & Sons Inc -
Building Software for Simulation: Theory and Algorithms, with Applications in C++
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Building Software for Simulation: Theory and Algorithms, with Applications in C++

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA