From 37b74697f92bed0c80d4564531bd8b225916a2a9 Mon Sep 17 00:00:00 2001 From: Jean Ragusa Date: Wed, 14 Aug 2024 14:03:18 -0500 Subject: [PATCH] final touches for first version --- Step0.md | 4 +++- Step1.md | 2 ++ Step2.md | 1 + Step3.md | 2 ++ 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Step0.md b/Step0.md index c638bbe..22848bc 100644 --- a/Step0.md +++ b/Step0.md @@ -1,6 +1,8 @@ # Step-0 -**For equations to display correctly online, you may have to click the `Raw` button**. +**For equations to display correctly online, you may have to click the `Raw` button.** + +**However, you need to exit `Raw` mode to display the Jupyter Notebook correctly.** In [[the Step-0 Jupyter Notebook]](./Learning_FEM_1D_step0.ipynb), I provide a basic introduction. diff --git a/Step1.md b/Step1.md index 0854fd4..a2a1a02 100644 --- a/Step1.md +++ b/Step1.md @@ -2,6 +2,8 @@ **For equations to display correctly online, you may have to click the `Raw` button**. +**However, you need to exit `Raw` mode to display the Jupyter Notebook correctly.** + In [the Step-1 Jupyter Notebook](./Learning_FEM_1D_step1.ipynb), we do two upgrades to Step-0: - the integrals for the reference-element matrices are computed using a numerical quadrature. diff --git a/Step2.md b/Step2.md index 003a529..59f335d 100644 --- a/Step2.md +++ b/Step2.md @@ -2,6 +2,7 @@ **For equations to display correctly online, you may have to click the `Raw` button**. +**However, you need to exit `Raw` mode to display the Jupyter Notebook correctly.** In [the Step-2 Jupyter Notebook](./Learning_FEM_1D_step2.ipynb), we develop a class for the MESH - we handle material property layout diff --git a/Step3.md b/Step3.md index 67795bc..5cd406b 100644 --- a/Step3.md +++ b/Step3.md @@ -2,6 +2,8 @@ **For equations to display correctly online, you may have to click the `Raw` button**. +**However, you need to exit `Raw` mode to display the Jupyter Notebook correctly.** + In [the Step-3 Jupyter Notebook](./Learning_FEM_1D_step3.ipynb), we continue using **classes**. - we discuss additional boundary conditions (namely, Neumann BC and Robin BC in addition to the Dirichlet BC we have been using so far) - we code an FEM class