Skip to content

Commit 6b9821e

Browse files
authored
Change all instances of "solidHeatTransferScript" to "heatConductionScript" and "solidHeatTransfer" to "heatConduction" (#47)
1 parent 184b115 commit 6b9821e

File tree

17 files changed

+28
-28
lines changed

17 files changed

+28
-28
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Here is a minimal browser-based example using the JavaScript API. Adapt paths, s
123123
const model = new FEAScriptModel();
124124
125125
// Set the solver type for your problem
126-
model.setSolverConfig("solverType"); // Example: "solidHeatTransferScript"
126+
model.setSolverConfig("solverType"); // Example: "heatConductionScript"
127127
128128
// Configure the mesh
129129
model.setMeshConfig({
@@ -148,7 +148,7 @@ Here is a minimal browser-based example using the JavaScript API. Adapt paths, s
148148

149149
**Note:** The code above uses placeholder values that you should replace with appropriate options, e.g.:
150150

151-
- "solverType" should be replaced with an actual solver type such as "solidHeatTransferScript" for heat conduction problems
151+
- "solverType" should be replaced with an actual solver type such as "heatConductionScript" for heat conduction problems
152152
- "conditionType" should be replaced with an actual boundary condition type such as "constantTemp"
153153
- "boundaryIndex" should be replaced with a string identifying the boundary
154154

dist/feascript.cjs.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.cjs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.umd.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/feascript.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

examples/solidHeatTransferScript/HeatConduction1DWall/HeatConduction1DWall.js renamed to examples/heatConductionScript/heatConduction1DWall/heatConduction1DWall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ console.log("FEAScript Version:", printVersion);
2121
const model = new FEAScriptModel();
2222

2323
// Set solver configuration
24-
model.setSolverConfig("solidHeatTransferScript");
24+
model.setSolverConfig("heatConductionScript");
2525

2626
// Define mesh configuration
2727
model.setMeshConfig({

0 commit comments

Comments
 (0)