Skip to content

Commit 53c013a

Browse files
committed
Rename rect_quad_unstruct.msh to rect_quad.msh in the node.js examples
1 parent 8eaebca commit 53c013a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/heatConductionScript/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Basic implementation using the FEAScriptModel class
2020

2121
#### ii. Gmsh Version (`heatConduction2DFinGmsh.js`)
2222

23-
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).
23+
Implementation using an unstructured mesh generated by [Gmsh](https://gmsh.info/) (the mesh file, `rect_quad.msh`, is also located in the current directory).
2424

2525
## Running the Examples
2626

examples/heatConductionScript/heatConduction2DFin/heatConduction2DFinGmsh.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ console.log("FEAScript Version:", printVersion);
2525
const __dirname = path.dirname(fileURLToPath(import.meta.url));
2626

2727
// Read the mesh file
28-
const meshFilePath = path.join(__dirname, "rect_quad_unstruct.msh");
28+
const meshFilePath = path.join(__dirname, "rect_quad.msh");
2929
const meshContent = fs.readFileSync(meshFilePath, "utf8");
3030

3131
async function main() {
@@ -38,7 +38,7 @@ async function main() {
3838
// Create a mock File object for Node.js environment
3939
const mockFile = {
4040
text: async () => meshContent,
41-
name: "rect_quad_unstruct.msh",
41+
name: "rect_quad.msh",
4242
};
4343

4444
// Parse the mesh data

examples/heatConductionScript/heatConduction2DFin/rect_quad_unstruct.msh renamed to examples/heatConductionScript/heatConduction2DFin/rect_quad.msh

File renamed without changes.

0 commit comments

Comments
 (0)