Skip to content

Commit 9bcbee2

Browse files
committed
Update title and description in HeatConduction2DSpeedTest.html for clarity; adjust comments for consistency.
1 parent 2eda2de commit 9bcbee2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tutorials/HeatConduction2DSpeedTest.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<html>
1414
<head>
1515
<meta charset="utf-8" />
16-
<title>Frontal Solver Test Using FEAScriptModel</title>
16+
<title>FEAScriptModel Speed Test</title>
1717
<!-- Plotly & Math.js needed by plotSolution -->
1818
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/5.0.0/math.min.js"></script>
1919
<script src="https://cdnjs.cloudflare.com/ajax/libs/plotly.js/2.27.0/plotly.min.js"></script>
@@ -25,7 +25,7 @@
2525
</style>
2626
</head>
2727
<body>
28-
<p>Running frontal solver with FEAScriptModel...</p>
28+
<p>Running FEAScriptModel speed test...</p>
2929
<div id="solutionPlot"></div>
3030
<script type="module">
3131
// Import FEAScript library
@@ -52,13 +52,13 @@
5252
const totalElements = model.meshConfig.numElementsX * model.meshConfig.numElementsY;
5353
console.log(`Total number of elements in mesh: ${totalElements}`);
5454

55-
// Set boundary conditions (matching what's in the frontal solver)
55+
// Set boundary conditions
5656
model.addBoundaryCondition("0", ["constantTemp", 200]);
5757
model.addBoundaryCondition("1", ["symmetry"]);
5858
model.addBoundaryCondition("2", ["convection", 1, 20]);
5959
model.addBoundaryCondition("3", ["constantTemp", 200]);
6060

61-
// Set solver method
61+
// Set solver method (change to test different solvers)
6262
model.setSolverMethod("lusolve");
6363
// model.setSolverMethod("jacobi");
6464
// model.setSolverMethod("frontal");

0 commit comments

Comments
 (0)