Skip to content

Commit

Permalink
Update asset path
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoscham committed Nov 30, 2024
1 parent 5c87158 commit eaff170
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://feascript.github.io/FEAScript-website/images/FEAScriptLogo.png" width="80">
<img src="https://feascript.github.io/FEAScript-website/assets/FEAScriptLogo.png" width="80">

## FEAScript-website

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<html>
<head>
<title>FEAScript: A JavaScript Finite Element Simulation Library</title>
<link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="keywords"
Expand All @@ -29,7 +29,7 @@
<h1 class="top">
<a href="index.html">
<img
src="./images/FEAScriptLogo.png"
src="./assets/FEAScriptLogo.png"
alt="FEAScript Logo"
id="responsive-logo"
style="vertical-align: middle"
Expand All @@ -38,8 +38,8 @@ <h1 class="top">
</h1>

<div id="banner">
<!--<img src="./images/tutorialSolidHeatTransferResults01.png" alt="" />-->
<img src="./images/tutorialSolidHeatTransferMesh01.png" alt="" />
<!--<img src="./assets/tutorialSolidHeatTransferResults01.png" alt="" />-->
<img src="./assets/HeatConduction2DFinMeshResults.png" alt="" />
</div>

<h1>A JavaScript Finite Element Simulation Library</h1>
Expand All @@ -53,7 +53,7 @@ <h1>A JavaScript Finite Element Simulation Library</h1>
<a href="https://github.com/FEAScript/FEAScript" target="_blank">
FEAScript on GitHub
<img
src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
src="https://github.githubassets.com/assets/modules/logos_page/GitHub-Mark.png"
alt="GitHub"
style="width: 16px; height: 16px; vertical-align: middle; margin-left: 2px; margin-bottom: 4px"
/>
Expand All @@ -65,7 +65,7 @@ <h1>A JavaScript Finite Element Simulation Library</h1>
FEAScript is a lightweight finite element simulation library built in JavaScript. It enables the
creation and running of client-side, browser-based simulations for physics and engineering problems
without the need for additional installations. FEAScript can be an excellent tool for building
interactive web applications as well as hands-on learning of computational mechanics.
interactive web applications as well as performing hands-on learning of computational mechanics.
</p>

<h2 id="gettingstarted"><a name="Getting Started"></a>Getting Started</h2>
Expand All @@ -74,7 +74,7 @@ <h2 id="gettingstarted"><a name="Getting Started"></a>Getting Started</h2>
browser, without the need for any cloud services. The entire workflow is performed using JavaScript
objects directly in the HTML file. Below is a live example demonstrating FEAScript in action (in case
you are using a phone, please turn it to horizontal position to see the results):
<script async src="//jsfiddle.net/nikoscham/prhezsgv/7/embed/js,result/"></script>
<script async src="//jsfiddle.net/nikoscham/prhezsgv/8/embed/js,result/"></script>
</p>

<h2 id="features"><a name="Features"></a>Features</h2>
Expand Down Expand Up @@ -136,7 +136,7 @@ <h3>Tutorials</h3>
</li>
<li>
<a
href="https://feascript.com/tutorialSolidHeatTransfer01/tutorialSolidHeatTransfer01.html"
href="https://feascript.com/tutorials/HeatConduction2DFin.html"
target="_blank"
>Heat conduction in a two-dimensional fin</a
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<html>
<head>
<title>FEAScript: Heat Conduction in a Two-Dimensional Fin Tutorial</title>
<link rel="icon" type="image/x-icon" href="../images/favicon.ico" />
<link rel="icon" type="image/x-icon" href="../assets/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
name="keywords"
Expand Down Expand Up @@ -54,7 +54,7 @@
<h1 class="top">
<a href="../index.html">
<img
src="../images/FEAScriptLogo.png"
src="../assets/FEAScriptLogo.png"
alt="FEAScript Logo"
id="responsive-logo"
style="vertical-align: middle"
Expand All @@ -80,7 +80,7 @@ <h2 id="mathematicalformulation"><a name="Mathematical formulation"></a>Mathemat
Steady heat conduction is described by the Laplace equation: \(\nabla^{2}T(x,y) = 0\), where \(T\)
signifies the temperature values.
</p>
<img src="../images/tutorialSolidHeatTransfer01.png" width="300" />
<img src="../assets/HeatConduction2DFin.png" width="300" />
<p>
The above schematic illustrates the problem domain and outlines the associated boundary conditions. The
constant temperature boundary conditions are implemented as Dirichlet types in the finite element code.
Expand Down Expand Up @@ -191,7 +191,7 @@ <h2 id="results"><a name="Results"></a>Results</h2>
Below is the 2D contour plot of the computed temperature distribution. This plot is generated in real
time using FEAScript. You can find a minimal example of this tutorial in the
<a
href="https://github.com/FEAScript/FEAScript/tree/main/examples/solidHeatTransferScript/exampleSolidHeatTransfer01"
href="https://github.com/FEAScript/FEAScript/tree/main/examples/solidHeatTransferScript/HeatConduction2DFin"
target="_blank"
>example directory</a
>.
Expand Down

0 comments on commit eaff170

Please sign in to comment.