Skip to content

Commit

Permalink
Update solution
Browse files Browse the repository at this point in the history
  • Loading branch information
schmoelder committed May 21, 2024
1 parent 233829c commit d4649c5
Show file tree
Hide file tree
Showing 58 changed files with 11,650 additions and 6,959 deletions.
105 changes: 105 additions & 0 deletions 00 Introduction Python/00_Introduction_Python.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "7a1631e2",
"metadata": {},
"source": [
"# Introduction to Python\n",
"\n",
"## Why Python?\n",
"- Simplicity: Easy to code, easy to read.\n",
"- Availability: Free and open source and compatible with all major operating systems.\n",
"- \"Batteries included\": Robust standard library provides wide range of modules to add functionality to the Python application.\n",
"- Excellent third party libraries:\n",
"\n",
"***The Python ecosystem:***\n",
"\n",
"```{figure} ./images/python_ecosystem.png\n",
":alt: Python Ecosystem\n",
":width: 500px\n",
":align: center\n",
"```\n",
"\n",
"- In this course we will be using:\n",
" - [NumPy](https://www.numpy.org/) for array-computing\n",
" - [SciPy](https://www.scipy.org/) for numerical routines\n",
" - [Matplotlib](https://www.matplotlib.org/) for data visualization\n",
"\n",
"- Widespread Adoption in Science and Education:\n",
"\n",
"\n",
"```{figure} ./images/stackoverflow-growth.png\n",
":alt: Python Growth\n",
":width: 500px\n",
":align: center\n",
"```\n",
"\n",
"### Tutorial objectives\n",
"This tutorial covers the following topics:\n",
"- Installation of Python\n",
"- `help`, `print`, `type`\n",
"- Variables\n",
"- Operators\n",
"- Basic Functions\n",
"- Import of packages\n",
"- Introduction to numpy\n",
"- Introduction to matplotlib"
]
},
{
"cell_type": "markdown",
"id": "d694d962",
"metadata": {},
"source": [
"___"
]
},
{
"cell_type": "markdown",
"id": "b32180da",
"metadata": {},
"source": [
"## Python Installation\n",
"- In this course, we will be using the Conda Python distribution. Conda is an open source package management system and environment management system that runs on Windows, macOS and Linux. Conda quickly installs, runs and updates packages and their dependencies completely seprate from any system Python installations and withoud needing administrative rights.\n",
"- Download Miniconda from [here](https://docs.conda.io/en/latest/miniconda.html)\n",
"- Installation remarks:\n",
" - Accept License Agreement\n",
" - Select *Install Just Me*\n",
" - Select Destination Folder: use recommended\n",
" - Do *not* add Anaconda to your PATH\n",
" - Click install\n",
" - To install additional packages, open the anaconda prompt from the windows menu and enter:\n",
" ```\n",
" conda install numpy scipy matplotlib jupyterlab\n",
" ```\n",
"- The tutorial and exercises will be presented using jupyter notebooks. Jupyterlab is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text.\n",
" - Markdown cells are used for formatted text\n",
" - Code cells contain executable code\n",
"\n",
"***Task:*** Start Jupyterlab Server by entering ``` jupyter-lab ``` in the anaconda prompt, create a new notebook and a new cell and convert the type to 'Markdown'."
]
},
{
"cell_type": "markdown",
"id": "0eedf740",
"metadata": {},
"source": [
"## Further Watching\n",
"You can find plenty of great resources for (Python) programming online.\n",
"- [Corey Schafer](https://www.youtube.com/user/schafer5) is focused on general programming aspectes, mainly in Python, but also has good introductions to *Bash*, *Git*, *SQL*, and many more.\n",
"- [APMonitor](https://www.youtube.com/user/APMonitorCom) has a lot of engineering examples in *Python*, *Matlab* or on *paper*. In fact, some of this course's exercises are based heavily on his work.\n",
"- [3Blue1Brown](https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw) makes great videos series on a broad range of (physical) math topics such as *linear algebra*, *calculus*, and *differential equations*."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
86 changes: 0 additions & 86 deletions 00 Introduction Python/00_Introduction_Python.md

This file was deleted.

104 changes: 104 additions & 0 deletions 00 Introduction Python/01_markdown.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "e750a2cd",
"metadata": {},
"source": [
"## Markdown\n",
"Markdown is a lightweight markup language with plain text formatting syntax. You can find more information and examples [here](https://en.wikipedia.org/wiki/Markdown).\n",
"___\n",
"\n",
"### Example: Raw input"
]
},
{
"cell_type": "raw",
"id": "3651754f",
"metadata": {},
"source": [
"It's very easy to make some words **bold** and other words *italic* with Markdown.\n",
"\n",
"You can insert [links](https://www.example.com),\n",
"\n",
"create lists\n",
"- item 1\n",
"- item 2\n",
"\n",
"and Headlines.\n",
"# Heading\n",
"## Sub-heading\n",
"\n",
"Also, mathematical equations are supported using KaTeX notation:\n",
"$\n",
"\\frac{\\partial c(z,t)}{\\partial t} + F \\frac{\\partial q(z,t)}{\\partial t} + u \\frac{\\partial c(z,t)}{\\partial z} = 0\n",
"$"
]
},
{
"cell_type": "markdown",
"id": "118ac3d7",
"metadata": {},
"source": [
"### Example: Output:\n",
"It's very easy to make some words **bold** and other words *italic* with Markdown.\n",
"\n",
"You can insert [links](https://www.example.com),\n",
"\n",
"create lists\n",
"- item 1\n",
"- item 2\n",
"\n",
"and Headlines.\n",
"# Heading\n",
"## Sub-heading\n",
"\n",
"Also, mathematical equations are supported using KaTeX notation:\n",
"$\n",
"\\frac{\\partial c(z,t)}{\\partial t} + F \\frac{\\partial q(z,t)}{\\partial t} + u \\frac{\\partial c(z,t)}{\\partial z} = 0\n",
"$"
]
},
{
"cell_type": "markdown",
"id": "dbd8ef98",
"metadata": {},
"source": [
"___"
]
},
{
"cell_type": "markdown",
"id": "de248ee8",
"metadata": {},
"source": [
"***Task:*** Write a sentence using **bold**, *italic*, as well as ***bold and italic*** highlighting."
]
},
{
"cell_type": "markdown",
"id": "8f7d2afb",
"metadata": {},
"source": [
"***Task:*** Download an image and insert a link with the alternative text 'Figure 1'."
]
},
{
"cell_type": "markdown",
"id": "06f1a166",
"metadata": {},
"source": [
"***Task:*** Write down the equation for your favorite adsorption isotherm."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
71 changes: 0 additions & 71 deletions 00 Introduction Python/01_markdown.md

This file was deleted.

Loading

0 comments on commit d4649c5

Please sign in to comment.