{{:spin:combined.jpg?800x100|}} **ESC201:**Fall 2023: Monday Lecture: 13:00-14:00 Exercises: 14:00-17:00 in Y34-J-01 **TAs**: Stefan Schafroth and Vasileios Dimakopoulos ====== Lectures ====== 18. Sep. 2023: {{ :spin:esc201-hs2023.1.pdf |First Lecture}} 25. Sep. 2023: {{ :spin:esc201-hs2023.2.pdf |Newton's Method and Kepler's Equation}} 02. Oct. 2023: {{ :spin:esc201-hs2023.3.pdf |Population Growth, Chaos and Fractals}} 09. Oct. 2023: {{ :spin:esc201-hs2023.4.pdf |Fractals using Complex Numbers, start of ODEs}} 16. Oct. 2023: {{ :spin:esc201-hs2023.5.pdf |Ordinary Differential Equations, Lotka-Voltera System}} 23. Oct. 2023: {{ :spin:esc201-hs2023.6.pdf |Symplectic Integrators, Simple Pendulum}} 30. Oct. 2023: {{ :spin:esc201-hs2023.7.pdf |The N-body Problem, Simulating the Solar System}} 6. Nov. 2023: {{ :spin:esc201-hs2023.8.pdf |Partial Differential Equations}} 13. Nov. 2023: {{ :spin:esc201-hs2023.9.pdf |Bi-linear and Bi-cubic Interpolation: Electron Beams}} 20. Nov. 2023: {{ :spin:esc201-hs2023.10.pdf |Hyperbolic PDEs, Simple Finite Difference Methods}} 27. Nov. 2023: {{ :spin:esc201-hs2023.11.pdf |Finite Volume Methods}} 4. Dec. 2023: {{ :spin:esc201-hs2023.12.pdf |1-D Hydrodynamics}} 11. Dec. 2023: {{ :spin:esc201-hs2023.13.pdf |Parallel Computing and Christmas Fractals!}} ====== Assignments ====== Your solutions should be handed in 7 days after each assignment has been given, i.e. **Sunday night by 21:00** one week after the Monday lecture. Assignments should be **individual** and should be in python and **provide a correct virtual environment!** (if you stick to standard libraries like numpy, matplotlib, scipy... **you can also just submit your python source code together with the output** of your program) For help getting started with virtual environments, please read carefully [[https://towardsdatascience.com/all-you-need-to-know-about-python-virtual-environments-9b4aae690f97|Python Virtual Environments for Pip]] and [[https://uoa-eresearch.github.io/eresearch-cookbook/recipe/2014/11/20/conda/|Python Virtual Environments for Conda]]. Please hand in the following in Teams: - The working **python source code** - The **requirements.txt** file for your virtual environment (if you used a virtual environment) - A **.pdf** or **.png** image or animation of the output of your program Template: {{template.zip}} ** Instructions: ** Please add the names of the people you work together (if you do) to the comment section of your python scripts. Create a virtual environment using Pip - run **virtualenv yourenv_name** to create a virtual environment - run **source yourenv_name/bin/activate** to activate yourenv_name - install necessary libraries that you want using **pip install package_name** - work in that directory, get your outputs (*.pdf, *.png, *jpeg, *.mp4, etc...) - run **pip freeze > requirements.txt** to get your list of libraries Conda - run **conda create -n yourenvname python=x.x anaconda** to create a virtual environment - run **source activate yourenvname** to activate yourenv_name - install necessary libraries that you want using **conda install -n yourenv_name package_name** - work in that directory, get your outputs (*.pdf, *.png, *jpeg, *.mp4, etc...) - run **conda list --export > requirements.txt** to get your list of libraries ====== List of assignments ====== - Implement the bisection root finding method presented in the first lecture for a function f of your choice (e.g. xx - 100 = 0 or the quadratic function f(x) = ax² + bx + c, for which you can compare to the analytical result)! (**to submit by 24 September 2023, 9pm**) - Plot (and/or animate) the elliptical orbit of a planet around the sun by repeatedly solving Kepler's equation with Newton's method (or the bisection method), as explained in the lecture! (**to submit by 01 October 2023, 9pm**) - Draw a Feigenbaum diagram that results from solving the logistic equation. (Optional: Implement a function that allows you to zoom into the Feigenbaum diagram) (**to submit by 8 October 2023, 9pm**) - Draw some Julia sets with various constants c. You can start with the Mandelbrot set as it was explained in the lecture and the exercise class! (**to submit by 15 October 2023, 9pm**) - Ordinary Differential Equations: Solve the Lotka-Volterra equation using the Euler method and the midpoint Runge-Kutta method (optional: 4th order Runge Kutta method) and compare the results. Make two plots: the time dependence of both populations (mice and foxes), and the phase diagram, using different initial conditions (**to submit by 22 October 2023, 9pm**) - Symplectic Integrators: Use the Leap-Frog method to make a phase plot (p vs q) of the simple pendulum for different total energies. Compare the results with what you get using the Forward Euler method and the midpoint Runge-Kutta method. (**to submit by 29 October 2023, 9pm**). - Make a solar system orrery following the steps outlined in the lecture. Also plot the path of the solar system center of mass.(**to submit by 5 November 2023, 9pm**) - Elliptical partial differential equations: Solve the Poisson equation for the electromagnetic potential using the SOR method described in the lecture, with boundary conditions given by a 1000 Volt stick in the center of a 0 Volt box (as depicted in the lecture notes). Plot the contours of the resulting potential. (**to submit by 12 November 2023, 9pm**) - Interpolation, Part 1: Trace the movement of electrons in an electromagnetic potential (e.g. the one from the last exercise) with Leapfrog or Runge-Kutta. Use bilinear or bicubic interpolation for the potential. Note: This is preparatory work for the electron detector. It can be turned in for verification of electron movement but will not be graded yet.(**to submit by 19 November 2023, 9pm**) - Interpolation, Part 2 (WIN A PRIZE): Design an optimal electron detector (specifics in lecture materials).(**to submit by 26 November 2023, 9pm**) - Hyperbolic PDEs: Solve the linear advection equation by evolving an initial waveform in a periodic grid. See how the waveform behaves after passing through the grid multiple times and compare the results you get when using various methods introduced in the lecture (e.g. the LAX method, upwind scheme, LAX-Wendroff method) (**to submit by 26 November 2023, 9pm**) - 2D advection: Solve the 2D advection problem using two methods introduced in the lecture (CIR and CTU) and compare if and how your solution diffuses numerically. (**to submit by 3 December 2023, 9pm**) - 1D Hydrodynamics: Solve the “shock tube” problem and the Sedov-Taylor blast wave using the three methods provided in the lecture (detailed assignment can be found in the lecture notes). (**to submit by 10 December 2023, 9pm**)