From 07cfa964fb8f761ae6fb8223722378573ccfe509 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Wed, 15 Oct 2025 10:53:46 -0600 Subject: Post meeting commit. --- admin/meeting-notes/2025-09-29.md | 16 ++++++++++++- admin/meeting-notes/2025-10-13.md | 32 +++++++++++++++++++++++++ tutorials/module_3/3_3_numerical_integration.md | 4 ++-- 3 files changed, 49 insertions(+), 3 deletions(-) create mode 100644 admin/meeting-notes/2025-10-13.md diff --git a/admin/meeting-notes/2025-09-29.md b/admin/meeting-notes/2025-09-29.md index aef2451..de1a2b8 100644 --- a/admin/meeting-notes/2025-09-29.md +++ b/admin/meeting-notes/2025-09-29.md @@ -18,5 +18,19 @@ and questions --- ## Actions + +- Email Dr. Bechara and Dr. Baker +- Prepare an outline for Dr. McGilvray - Based on the Gantt Chart with deliverables. +- Add to the Tutorials, delivrables and objects to be added to an outline for the project. + - Make deliverables/milestones, with a gantt chart + - share this with Ciprian, Amanda and Kirk. + - A high level overview + - project objective decription + - Timescale: months +- Ask Dr. McGilvray -> if d. bechara counts as an external advisor. otherwise I could Add him. +- Send Textbooks to Ciprian +- Add visuals to module 3 (diagrams and flowcharts) -- + + +![[Pasted image 20250929113251.png]] diff --git a/admin/meeting-notes/2025-10-13.md b/admin/meeting-notes/2025-10-13.md new file mode 100644 index 0000000..85ed266 --- /dev/null +++ b/admin/meeting-notes/2025-10-13.md @@ -0,0 +1,32 @@ +## Updates +- https://pythonnumericalmethods.studentorg.berkeley.edu/notebooks/Index.html +- Numerical Methods for Engineers Steven C Chapra + +--- +## Topics +and questions + +- Decide on textbook + +--- +## Discussion + + +--- +## Actions +- Send Ciprian PDF of Numerical methods PDF + + +- Ciprian to look at textbook in more detail and make a decision by next time. +- Christian to send PDF of the second book by Steven Chapra + +Module 4: Data Analysis and Processing + +- 4.1. Introduction to Data Analysis (describe the Panda Toolbox)  -> One Lecture +- 4.2. We should focus on effective ways of looking at data  (philosophy of making that make sense) -> One Lecture +- 4.2. I/O file handling (different types of data files: ASCII, CSV, TXT, JPEG,...) -> Here they will learn how to read/handle: datasets including images. -> One Lecture +- 4.3. Statistical Analysis (mean/averaging, standard deviation, variance...) -> **_Reminder: Ciprian to send application from Spectroscopy and CFD -> One Lecture_** +- 4.4. Data Cleaning (linear regression, least square fitting, extrapolation, moving average) -> One Lecture +- 4.5. Data Filtering & Signal Processing (filters: Gaussian Filter, Sobel edge detection, Kalman, Butterworth, FFT) -> We need to give a lecture of what is/how it works Digital filter design (lowpass, highpass, bandpass, filter response curves, how does one select a given filter). One lecture all theory so that in the second lecture they learn how to select different filters. -> Two lectures +- 4.6 Image processing: apply some of the filtering to make images sharper/crispier, teach them how to make videos/gifs out of images. -> One Lecture. Possible application: **_from CFD density data obtain Synthetic Schlieren images (Ciprian will send you this!)_** + \ No newline at end of file diff --git a/tutorials/module_3/3_3_numerical_integration.md b/tutorials/module_3/3_3_numerical_integration.md index 5e5bf91..209e833 100644 --- a/tutorials/module_3/3_3_numerical_integration.md +++ b/tutorials/module_3/3_3_numerical_integration.md @@ -14,7 +14,7 @@ $$ I \approx \sum_{i=0}^m w_i f(x_i). $$ Here, $x_i$ are the chosen evaluation points and $w_i$ are their associated weights. - +[Add diagrams] ### Midpoint Rule The midpoint rule divides the interval into $n$ sub-intervals of equal width $h = (b-a)/n$ and evaluates the function at the midpoint of each sub-interval: @@ -205,4 +205,4 @@ print(f"Error (3-point): {err3:.2e}") -[[3_4_More_integral]] \ No newline at end of file +[[3_4_More_integral]] -- cgit v1.2.3