Welcome to Modelling and Simulation TTK4130!

Welcome to Modelling and Simulation TTK4130!#

_images/lorenz.png

Learning outcome#

This site will introduce you to tools for simulation in Python etc….

Prerequisites#

  • Basic programming knowledge

  • Familiarity with Python (from TDT4110 Information Technology, Introduction or similar)

  • Basic Linear Algebra

Why Python?#

Open source, widely supported

print("Hello world!")
Hello world!

And it supports useful tools…

import sympy as sm
sm.init_printing(use_latex='mathjax')

b, t, phi = sm.symbols('b, t, phi')
b, t, phi
\[\displaystyle \left( b, \ t, \ \phi\right)\]

Indices and tables#