Skip to content

Commit d108e80

Browse files
committed
Update sitemap and tutorial files
1 parent bf981a3 commit d108e80

4 files changed

Lines changed: 9 additions & 6 deletions

File tree

sitemap.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,21 @@
1616
<loc>https://feascript.com/tutorials/HeatConduction1DWall.html</loc>
1717
<priority>0.8</priority>
1818
</url>
19+
<url>
20+
<loc>https://feascript.com/tutorials/HeatConduction1DWallPlatform.html</loc>
21+
<priority>0.4</priority>
22+
</url>
1923
<url>
2024
<loc>https://feascript.com/tutorials/HeatConduction2DFinPlatform.html</loc>
21-
<priority>0.8</priority>
25+
<priority>0.4</priority>
2226
</url>
2327
<url>
2428
<loc>https://feascript.com/tutorials/HeatConduction2DFinGmsh.html</loc>
2529
<priority>0.8</priority>
2630
</url>
2731
<url>
2832
<loc>https://feascript.com/tutorials/HeatConduction2DPerfomanceTest.html</loc>
29-
<priority>0.8</priority>
33+
<priority>0.4</priority>
3034
</url>
3135
<url>
3236
<loc>https://feascript.com/tutorials/SolidificationFront2D.html</loc>

tutorials/AdvectionDiffusion1D.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ <h2 id="solvingwithfeascript"><a name="Solving with FEAScript"></a>Solving with
140140

141141
// Create and configure model
142142
const model = new FEAScriptModel();
143-
144-
// Set solver configuration with coefficient functions
145143
model.setSolverConfig("generalFormPDEScript", {
146144
coefficientFunctions: {
147145
// Equation d²u/dx² - 10 du/dx = 10 * exp(-200 * (x - 0.5)²)

tutorials/HeatConduction1DWall.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ <h2 id="solvingwithfeascript"><a name="Solving with FEAScript"></a>Solving with
135135
window.addEventListener("DOMContentLoaded", (event) => {
136136
// Print FEAScript version in the console
137137
printVersion();
138+
138139
// Create and configure model
139140
const model = new FEAScriptModel();
140141
model.setSolverConfig("heatConductionScript");

tutorials/HeatConduction2DFinGmsh.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h2 id="gmshfileimport"><a name="gmshfileimport"></a>Gmsh File Import</h2>
123123
const model = new FEAScriptModel();
124124
model.setSolverConfig("heatConductionScript");
125125

126-
// Parse the mesh file first
126+
// Parse the mesh file
127127
const result = await importGmshQuadTri(meshFile);
128128

129129
// Define mesh configuration with the parsed result
@@ -341,7 +341,7 @@ <h2 id="results"><a name="results"></a>Results</h2>
341341
// Set solver configuration
342342
gmshModel.setSolverConfig("heatConductionScript");
343343

344-
// Parse the mesh file first
344+
// Parse the mesh file
345345
const result = await importGmshQuadTri(meshFile);
346346

347347
// Define mesh configuration with the parsed result

0 commit comments

Comments
 (0)