Skip to content

Commit

Permalink
added the exercices to modul 1
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaou committed Oct 28, 2024
1 parent a7e3be9 commit 2a4260c
Show file tree
Hide file tree
Showing 116 changed files with 29,537 additions and 263 deletions.
8 changes: 8 additions & 0 deletions WS1/intro_to_ws1.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,13 @@ with examples of upstreams and downstream process modelling. This course was pro

## course plan

| Modele no. | Content |
|--------------|--------------------------------------------------------|
| Module 1 | syntax, statements, and control flow |
| Module 2 | data structures and data visualization |
| Module 3 | operations, solving ODEs, stoichiometry |
| Module 4 | design of reactors, combine mass and energy balances |
| Module 5 | Fed-batch model for E.coli (model A) |
| Module 6&7 | diafiltration and cell lysis (downstream) |


Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Introduction to Python"
"# 1. Introduction to Python"
]
},
{
Expand Down Expand Up @@ -103,6 +103,16 @@
"this course has been taken and adapted from The course [*Chemical Reaction engineering in Python*](https://github.com/FiammettaC/Chemical-Reaction-Engineering-in-Python) by Fiammetta Caccavale.\n",
":::"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": []
}
],
"metadata": {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": "b8630b2e-e580-4247-a4c3-ea2fc7910a78",
"metadata": {},
"source": [
"# Statements and Packaging"
"# 3. Statements and Packaging"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"id": "bcfb1a44-abdb-44b6-a59f-90684ce8322a",
"metadata": {},
"source": [
"# Conditionality and Repetition"
"# 4. Conditionality and Repetition"
]
},
{
Expand All @@ -31,7 +31,12 @@
"source": [
"The `if` statement is based on a **boolean** operation: if the first condition is executed it means that *the condition is* `True`, otherwise, the program moves on to the next statements *until either a `True` statement or the end of the flow* (else, if included). The flow chart below illustrates the conditional process with one if, two elif and one else statements.\n",
"\n",
"![alt text](images/Python-if-elif-else-statement.png)"
"\n",
"<img src=\"../../media/WS1/Python-if-elif-else-statement.png\" \n",
" alt=\"Picture\" \n",
" width=\"600\" \n",
" height=\"400\" \n",
" style=\"display: block; margin: 0 auto\" />"
]
},
{
Expand Down
Loading

0 comments on commit 2a4260c

Please sign in to comment.