You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor helper functions and update documentation: improve version logging, enhance CORS instructions in HTML and README, and remove unused numerical integration script. Implement imposeConvectionBoundaryConditions function and refactor boundary condition handling in solidHeatTransferScript.js. Rename variables to be more appropriate and consistent.
This example demonstrates how to solve a stationary heat transfer problem within a 2D rectangular domain using the FEAScript library. The problem is a typical cooling fin scenario, where cooling fins are used to increase the area available for heat transfer between metal walls and poorly conducting fluids such as air.
3
+
## Heat Conduction in a Two-Dimensional Fin
4
4
5
-
## Files
5
+
This example demonstrates how to solve a stationary heat transfer problem within a 2D rectangular domain using the FEAScript library. The problem is a typical cooling fin scenario.
6
+
7
+
### Files
6
8
7
9
-`meshConfig.json`: Defines the computational mesh parameters.
8
10
-`boundaryConditionsConfig.json`: Specifies the boundary conditions for the problem.
9
-
-`FEAScriptExampleSolidHeatTransfer01.html`: The main HTML file that sets up and runs the example.
11
+
-`FEAScriptExampleSolidHeatTransfer01.html`: The main HTML file that sets up and runs the example.
12
+
13
+
### CORS Configuration
14
+
15
+
<p>
16
+
This example requires Cross-Origin Resource Sharing (CORS) to run if the JSON files are stored locally. To
17
+
enable CORS on Firefox, you can follow these steps:
18
+
</p>
19
+
<ol>
20
+
<li>
21
+
Open Firefox and type <code>about:config</code> in the address bar, then
22
+
press Enter.
23
+
</li>
24
+
<li>Accept the risk and continue to the advanced settings.</li>
0 commit comments