Practical MATLAB Modeling with Simulink -  Sulaymon L. Eshkabilov

Practical MATLAB Modeling with Simulink (eBook)

Programming and Simulating Ordinary and Partial Differential Equations
eBook Download: PDF
2020 | 1. Auflage
XXII, 483 Seiten
Apress (Verlag)
978-1-4842-5799-9 (ISBN)
Systemvoraussetzungen
66,99 inkl. MwSt
  • Download sofort lieferbar
  • Zahlungsarten anzeigen
Employ the essential and hands-on tools and functions of MATLAB's ordinary differential equation (ODE) and partial differential equation (PDE) packages, which are explained and demonstrated via interactive examples and case studies. This book contains dozens of simulations and solved problems via m-files/scripts and Simulink models which help you to learn programming and modeling of more difficult, complex problems that involve the use of ODEs and PDEs.

You'll become efficient with many of the built-in tools and functions of MATLAB/Simulink while solving more complex engineering and scientific computing problems that require and use differential equations. Practical MATLAB Modeling with Simulink explains various practical issues of programming and modelling.

After reading and using this book, you'll be proficient at using MATLAB and applying the source code from the book's examples as templates for your own projects in data science or engineering.  

What You Will Learn
  • Model complex problems using MATLAB and Simulink
  • Gain the programming and modeling essentials of MATLAB using ODEs and PDEs
  • Use numerical methods to solve 1st and 2nd order ODEs
  • Solve stiff, higher order, coupled, and implicit ODEs
  • Employ numerical methods to solve 1st and 2nd order linear PDEs
  • Solve stiff, higher order, coupled, and implicit PDEs
Who This Book Is For

Engineers, programmers, data scientists, and students majoring in engineering, applied/industrial math, data science, and scientific computing.  This book continues where Apress' Beginning MATLAB and Simulink leaves off.



Sulaymon L. Eshkabilov, PhD is currently a visiting professor at the Department of Agriculture and Biosystems, North Dakota State University, USA. He obtained his ME diploma from Tashkent Automobile Road Institute, his MSc from Rochester Institute of Technology, NY, USA and his PhD from Cybernetics Institute of Academy Sciences of Uzbekistan in 1994, 2001 and 2005, respectively. He was an associate professor at Tashkent Automobile Road Institute for December 2006 - January 2017. He also held visiting professor and researcher positions at Ohio University, USA for 2010/2011 and Johannes Kepler University, Austria in January - September 2017. He teaches courses: 'MATLAB/Simulink applications for mechanical engineering and numerical analysis' and 'Modeling of Engineering Systems' for undergraduate students, 'Advanced MATLAB/Mechatronics' seminar/class, 'Control applications', 'System identification', 'Experimentation and testing with analog and digital devices' for graduate students. 

His research areas are mechanical vibrations, control, mechatronics and system dynamics. He is an author of over 30 research papers published in peer reviewed journals and conference proceedings in the USA, UK, Uzbekistan, Portugal, Russian Federation, India, Germany and Egypt, and four books published in the USA, Uzbekistan and Sweden. Two of the four books are devoted to MATLAB/Simulink applications for mechanical engineering students and numerical analysis. He has worked as an external academic expert in the European Commission to assess academic projects for 2009 - 2018 and coordinated/authored five institutional joint European projects funded by the European Commission for 2003 - 2016 that involved over two dozen universities from Uzbekistan, UK, Sweden, Italy, Austria, Spain, Portugal, Romania and Belgium.  


Employ the essential and hands-on tools and functions of MATLAB's ordinary differential equation (ODE) and partial differential equation (PDE) packages, which are explained and demonstrated via interactive examples and case studies. This book contains dozens of simulations and solved problems via m-files/scripts and Simulink models which help you to learn programming and modeling of more difficult, complex problems that involve the use of ODEs and PDEs.You'll become efficient with many of the built-in tools and functions of MATLAB/Simulink while solving more complex engineering and scientific computing problems that require and use differential equations. Practical MATLAB Modeling with Simulink explains various practical issues of programming and modelling.After reading and using this book, you'll be proficient at using MATLAB and applying the source code from the book's examples as templates for your own projects in data science or engineering.  What You Will LearnModel complex problems using MATLAB and SimulinkGain the programming and modeling essentials of MATLAB using ODEs and PDEsUse numerical methods to solve 1st and 2nd order ODEsSolve stiff, higher order, coupled, and implicit ODEsEmploy numerical methods to solve 1st and 2nd order linear PDEsSolve stiff, higher order, coupled, and implicit PDEsWho This Book Is ForEngineers, programmers, data scientists, and students majoring in engineering, applied/industrial math, data science, and scientific computing.  This book continues where Apress' Beginning MATLAB and Simulink leaves off.

Table of Contents 5
About the Author 13
About the Technical Reviewer 14
Acknowledgments 15
Introduction 16
Part I: Ordinary Differential Equations 20
Chapter 1: Analytical Solutions for ODEs 21
Classifying ODEs 22
Example 1 23
Example 2 24
Example 3 24
Analytical Solutions of ODEs 26
dsolve() 26
Example 4 26
Example 5 27
Example 6 29
Example 7 29
Second-Order ODEs and a System of ODEs 31
Example 8 31
Example 9 32
Example 10 33
Example 11 34
Example 12 34
Example 13 35
Laplace Transforms 40
Example 14 42
laplace/ilaplace 43
Example 15 43
Example 16 44
Example 17 44
Example 18 44
Example 19 48
Example 20 52
Example 21 54
References 58
Chapter 2: Numerical Methods for First-Order ODEs 59
Euler Method 59
Example 1 60
Improved Euler Method 62
Backward Euler Method 63
Example 2 65
Midpoint Rule Method 68
Example 3 69
Ralston Method 73
Runge-Kutta Method 74
Example 4 75
Runge-Kutta-Gill Method 78
Runge-Kutta-Fehlberg Method 81
Adams-Bashforth Method 84
Example 5 84
Milne Method 90
Example 6 91
Taylor Series Method 93
Example 7 93
Adams-Moulton Method 96
Example 8 98
MATLAB’s Built-in ODE Solvers 103
Example 9 105
The OPTIONS, ODESET, and ODEPLOT Tools of Solvers 111
Example 10 113
Example 11 116
Simulink Modeling 121
Example 12 121
SIMSET 129
References 130
Chapter 3: Numerical Methods for Second-Order ODEs 131
Euler Method 132
Example 1 132
Example 2 136
Example 3 138
Example 4 140
Example 5 142
Runge-Kutta Method 146
Example 6 146
Example 7 149
Example 8 152
Example 9 154
Example 10 156
Adams-Moulton Method 159
Example 11 159
Example 12 164
Simulink Modeling 169
Example 13 169
Example 14 171
Example 15 174
Example 16 175
Nonzero Starting Initial Conditions 176
Example 17 177
ODEx Solvers 180
Example 18 181
Example 19 183
Example 20 184
Example 21 187
diff() 190
Example 22 190
Chapter 4: Stiff ODEs 194
Example 1 194
Example 2 196
Example 3 197
Example 4 200
Jacobian Matrix 202
Example 5 203
Example 6 206
Chapter 5: Higher-Order and Coupled ODEs 210
Fourth-Order ODE Problem 210
Robertson Problem 214
Akzo-Nobel Problem 216
HIRES Problem 223
Reference 228
Chapter 6: Implicit ODEs 229
Example 1 230
Example 2 234
Example 3 236
Example 4 239
Example 5 242
Example 6 245
References 248
Chapter 7: Comparative Analysis of ODE Solution Methods 249
Example 1 250
Drill Exercises 267
Exercise 1 267
Exercise 2 268
Exercise 3 268
Exercise 4 269
Exercise 5 269
Exercise 6 270
Exercise 7 271
Exercise 8 272
Exercise 9 273
Exercise 10 274
Exercise 11 274
Exercise 12 275
Exercise 13 275
Part II: Boundary Value Problems in Ordinary Differential Equations 276
Chapter 8: Boundary Value Problems 277
Dirichlet Boundary Condition Problem 281
Example 1 281
Example 2 285
Robin Boundary Condition Problem 288
Example 3 288
Sturm-Liouville Boundary Value Problem 293
Example 4 294
Stiff Boundary Value Problem 299
Example 5 299
References 303
Drill Exercises 303
Exercise 1 304
Exercise 2 304
Exercise 3 304
Exercise 4 304
Exercise 5 304
Exercise 6 305
Exercise 7 305
Exercise 8 305
Exercise 9 305
Exercise 10 306
Exercise 11 306
Exercise 12 306
Exercise 13 306
Part III: Applications of Ordinary Differential Equations 307
Chapter 9: Spring-Mass-Damper Systems 308
Single Degree of Freedom System 308
Case 1: Free Vibration (Motion) 308
Case 2: Forced Vibration (Motion) 322
Two Degrees of Freedom System 333
Three Degrees of Freedom System 341
Matrix Approach for n-Degree of Freedom System 349
References 356
Chapter 10: Electromechanical and Mechanical Systems 358
Modeling a DC Motor 358
Modeling a DC Motor with Flexible Load 363
Modeling a Microphone 369
Modeling Motor: Pump Gear Box 374
Modeling Double Pendulum 384
Reference 397
Chapter 11: Trajectory Problems 398
Falling Object 398
Thrown Ball Trajectories 401
References 413
Chapter 12: Simulation Problems 414
Lorenz System 414
Lotka-Voltera Problem 420
References 424
Drill Exercises 425
Exercise 1 425
Exercise 2 426
Exercise 3 426
Exercise 4 426
Exercise 5 427
Exercise 6 427
Exercise 7 428
Exercise 8 428
Exercise 9 429
Exercise 10 429
Exercise 11 429
Exercise 12 430
Exercise 13 430
Exercise 14 431
Exercise 15 432
Exercise 16 433
Exercise 17 435
Exercise 18 436
Part IV: Partial Differential Equations 439
Chapter 13: Solving Partial Differential Equations 440
pdepe() 441
One-Dimensional Heat Transfer Problem 442
Example 1 443
Two-Dimensional Heat Transfer: Solving an Elliptic PDE with the Gauss-Seidel Method 447
Example 2 449
del2(): Laplace Operator 454
Example 3 455
Wave Equation 458
Solving a One-Dimensional Wave Equation 459
Example 4 462
Solving a Two-Dimensional Wave Equation 466
Example 5 467
References 470
Drill Exercises 471
Exercise 1 471
Exercise 2 471
Exercise 3 471
Exercise 4 472
Exercise 5 472
Exercise 6 472
Exercise 7 472
Exercise 8 472
Exercise 9 473
Exercise 10 473
Exercise 11 473
Exercise 12 474
Exercise 13 474
Index 475

Erscheint lt. Verlag 7.4.2020
Zusatzinfo XXII, 473 p. 242 illus., 229 illus. in color.
Sprache englisch
Themenwelt Mathematik / Informatik Informatik Programmiersprachen / -werkzeuge
Informatik Theorie / Studium Compilerbau
Mathematik / Informatik Mathematik Analysis
Mathematik / Informatik Mathematik Angewandte Mathematik
Mathematik / Informatik Mathematik Computerprogramme / Computeralgebra
Schlagworte applied math • Code • Computational • Data Science • Development • Differential Equations • engineer • Functions • Math • MATLAB • ODE • ordinary differential • Ordinary differential equations • partial differential • PDE • Practical • programming • SIMULINK • Software • Tutorial
ISBN-10 1-4842-5799-5 / 1484257995
ISBN-13 978-1-4842-5799-9 / 9781484257999
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 23,6 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Zusätzliches Feature: Online Lesen
Dieses eBook können Sie zusätzlich zum Download auch online im Webbrowser lesen.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
An In-Depth Guide to the Spring Framework

von Iuliana Cosmina; Rob Harrop; Clarence Ho; Chris Schaefer

eBook Download (2023)
Apress (Verlag)
62,99
A Complete Guide to How Your Arduino Language and Hardware Work …

von Norman Dunbar

eBook Download (2024)
Apress (Verlag)
56,99