Skip to content

Commit a8605a0

Browse files
committed
Fix broken links
1 parent 00506aa commit a8605a0

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

examples/frontPropagationScript/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This directory contains Node.js examples demonstrating how to use the FEAScript
66

77
## Examples
88

9-
#### 1. Solidification Front Propagation in a 2D Domain
9+
#### 1. Solidification Front Propagation in a 2D Domain (solidificationFront2D)
1010

1111
This example demonstrates solving an eikonal equation in a 2D domain to track the movement of a solidification interface. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/solidification-front-2d.html) in the FEAScript website.
1212

@@ -29,3 +29,5 @@ npm install feascript mathjs
2929
```bash
3030
node SolidificationFront2D.js
3131
```
32+
33+
(for the "Solidification Front Propagation in a 2D Domain" example)

examples/generalFormPDEScript/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This directory contains Node.js examples demonstrating how to use the FEAScript
66

77
## Examples
88

9-
#### 1. Advection-Diffusion with Gaussian Source
9+
#### 1. Advection-Diffusion with Gaussian Source (advectionDiffusion1D)
1010

1111
This example demonstrates solving a one-dimensional advection-diffusion problem with a Gaussian source term. The problem models the transport of a substance under the effects of both diffusion and advection. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/advection-diffusion-1d.html) in the FEAScript website.
1212

@@ -29,3 +29,5 @@ npm install feascript mathjs
2929
```bash
3030
node advectionDiffusion1D.js
3131
```
32+
33+
(for the "Advection-Diffusion with Gaussian Source" example)

examples/heatConductionScript/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ This directory contains Node.js examples demonstrating how to use the FEAScript
66

77
## Examples
88

9-
#### 1. Heat Conduction Through a Wall
9+
#### 1. Heat Conduction Through a Wall (heatConduction1DWall)
1010

1111
This example demonstrates a heat flow case through a building wall. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/heat-conduction-1d-wall.html) in the FEAScript website.
1212

13-
#### 2. Heat Conduction in a 2D Fin
13+
#### 2. Heat Conduction in a 2D Fin (heatConduction2DFin)
1414

1515
This example demonstrates a typical cooling fin scenario. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/heat-conduction-2d-fin.html) in the FEAScript website. There are two Node.js implementations:
1616

@@ -42,4 +42,4 @@ npm install feascript mathjs
4242
node HeatConduction1DWall.js
4343
```
4444

45-
(for the "Heat Conduction Through a Wall" case)
45+
(for the "Heat Conduction Through a Wall" example)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<img src="https://feascript.github.io/FEAScript-website/assets/FEAScriptHeatTransfer.png" width="80" alt="FEAScript Heat Conduction Logo">
1+
<img src="https://feascript.github.io/FEAScript-website/assets/feascript-logo.png" width="80" alt="FEAScript Logo">
22

33
## Heat Conduction Through a Wall
44

5-
This example demonstrates a heat flow case through a building wall. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/HeatConduction1DWall.html) in the FEAScript website.
5+
This example demonstrates a heat flow case through a building wall. For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/heat-conduction-1d-wall.html) in the FEAScript website.

examples/heatConductionScript/heatConduction2DFin/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://feascript.github.io/FEAScript-website/assets/FEAScriptHeatTransfer.png" width="80" alt="FEAScript Logo">
1+
<img src="https://feascript.github.io/FEAScript-website/assets/feascript-logo.png" width="80" alt="FEAScript Logo">
22

33
## Heat Conduction in a 2D Fin
44

@@ -10,4 +10,6 @@ Basic implementation using the FEAScriptModel class
1010

1111
#### ii. Gmsh Version (`heatConduction2DFinGmsh.js`)
1212

13-
Implementation using an unstructured mesh generated by [Gmsh](https://gmsh.info/) (the mesh file, `rect_quad_unstruct.msh`, is also located in the current directory). For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/HeatConduction2DFin.html) in the FEAScript website.
13+
Implementation using an unstructured mesh generated by [Gmsh](https://gmsh.info/) (the mesh file, `rect_quad_unstruct.msh`, is also located in the current directory).
14+
15+
For detailed information on the model setup refer to the corresponding [tutorial](https://feascript.com/tutorials/heat-conduction-2d-fin.html) in the FEAScript website.

0 commit comments

Comments
 (0)