Skip to content

Commit

Permalink
Merge pull request #77 from festim-dev/polishing
Browse files Browse the repository at this point in the history
Polishing
  • Loading branch information
RemDelaporteMathurin authored Sep 29, 2024
2 parents 258129d + ea0e04a commit 5ee22a8
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 37 deletions.
19 changes: 9 additions & 10 deletions tasks/task01.ipynb

Large diffs are not rendered by default.

27 changes: 19 additions & 8 deletions tasks/task02.ipynb

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions tasks/task03.ipynb

Large diffs are not rendered by default.

25 changes: 19 additions & 6 deletions tasks/task04.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tasks/task05.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
"version": "3.11.10"
},
"orig_nbformat": 4,
"vscode": {
Expand Down
4 changes: 2 additions & 2 deletions tasks/task06.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"source": [
"my_model.materials = F.Material(id=1, D_0=1, E_D=0)\n",
"\n",
"my_model.T = F.Temperature(500)\n",
"my_model.T = 500\n",
"\n",
"my_model.boundary_conditions = [\n",
" F.DirichletBC(field=0, surfaces=top_and_bottom_id, value=0),\n",
Expand Down Expand Up @@ -409,7 +409,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
"version": "3.11.10"
},
"orig_nbformat": 4,
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion tasks/task09.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
"version": "3.11.10"
},
"orig_nbformat": 4,
"vscode": {
Expand Down
4 changes: 2 additions & 2 deletions tasks/task10.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"\n",
" # Define the material temperature evolution\n",
" ramp = 5 # K/s\n",
" synthetic_TDS.T = F.Temperature(value=300 + ramp * (F.t))\n",
" synthetic_TDS.T = 300 + ramp * (F.t)\n",
"\n",
" # Define the simulation settings\n",
" synthetic_TDS.dt = F.Stepsize(\n",
Expand Down Expand Up @@ -1097,7 +1097,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
"version": "3.11.10"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions tasks/task11.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"]\n",
"\n",
"\n",
"my_model.T = F.Temperature(300)"
"my_model.T = 300"
]
},
{
Expand Down Expand Up @@ -287,7 +287,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.9"
"version": "3.11.10"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 5ee22a8

Please sign in to comment.