Skip to content

Commit b679f4d

Browse files
committed
Rename gmshQuadReader to gmshReaderScript for naming consistency
1 parent aec298d commit b679f4d

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

examples/solidHeatTransferScript/HeatConduction1DWall/HeatConduction1DWall.html

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ <h1>Heat Conduction Through a Wall Example</h1>
4444
document.getElementById("currentYear").innerHTML = new Date().getFullYear();
4545
</script>
4646

47-
<!-- Import FEAScript library -->
4847
<script type="module">
4948
import { FEAScriptModel, plotSolution, printVersion } from "https://core.feascript.com/src/index.js";
5049

examples/solidHeatTransferScript/HeatConduction2DFin/HeatConduction2DFin.html

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ <h1>Heat Conduction in a Two-Dimensional Fin Example</h1>
4343
document.getElementById("currentYear").innerHTML = new Date().getFullYear();
4444
</script>
4545

46-
<!-- Import FEAScript library -->
4746
<script type="module">
4847
import { FEAScriptModel, plotSolution, printVersion } from "https://core.feascript.com/src/index.js";
4948

examples/solidHeatTransferScript/HeatConduction2DFin/HeatConduction2DFinWorker.html

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ <h1>Heat Conduction in a Two-Dimensional Fin Example (Worker)</h1>
4949
document.getElementById("currentYear").innerHTML = new Date().getFullYear();
5050
</script>
5151

52-
<!-- Import FEAScript library -->
5352
<script type="module">
5453
import { FEAScriptWorker, plotSolution, printVersion } from "https://core.feascript.com/src/index.js";
5554

src/mesh/meshGenerationScript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Class to handle the generation of structured finite element meshes
1313
*/
1414

15-
import { importGmshQuadTri } from "../readers/gmshQuadReader.js";
15+
import { importGmshQuadTri } from "../readers/gmshReaderScript.js";
1616
import { errorLog } from "../utilities/loggingScript.js";
1717

1818
export class meshGeneration {

src/readers/gmshQuadReader.js renamed to src/readers/gmshReaderScript.js

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
// ______ ______ _____ _ _ //
2+
// | ____| ____| /\ / ____| (_) | | //
3+
// | |__ | |__ / \ | (___ ___ ____ _ ____ | |_ //
4+
// | __| | __| / /\ \ \___ \ / __| __| | _ \| __| //
5+
// | | | |____ / ____ \ ____) | (__| | | | |_) | | //
6+
// |_| |______/_/ \_\_____/ \___|_| |_| __/| | //
7+
// | | | | //
8+
// |_| | |_ //
9+
// Website: https://feascript.com/ \__| //
10+
111
const importGmshQuadTri = async (file) => {
212
let result = {
313
nodesXCoordinates: [],

0 commit comments

Comments
 (0)