Skip to content

Commit 08d87c7

Browse files
committed
Fix typos
1 parent c809b55 commit 08d87c7

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

index.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,16 +167,17 @@ <h2 id="features"><a name="Features"></a>Features</h2>
167167
<li>
168168
<b>Parallelization</b>
169169
<ul>
170-
<li>Web workers support for multi-threaded computation</li>
170+
<li>Web worker support for multi-threaded computation</li>
171171
</ul>
172172
</li>
173173
<li>
174174
<b>Geometry and Meshing</b>
175175
<ul>
176176
<li>Simple mesh generation (1D and rectangular 2D domains)</li>
177177
<li>
178-
Import of MSH (<a href="https://gmsh.info/" target="_blank"
179-
>Gmsh
178+
Unstructured mesh import from
179+
<a href="https://gmsh.info/" target="_blank">
180+
Gmsh
180181
<img
181182
src="https://upload.wikimedia.org/wikipedia/commons/4/44/Icon_External_Link.svg"
182183
alt="External Link Icon"
@@ -186,15 +187,17 @@ <h2 id="features"><a name="Features"></a>Features</h2>
186187
vertical-align: middle;
187188
margin-left: 2px;
188189
margin-bottom: 4px;
189-
" /></a
190-
>) files
190+
"
191+
/>
192+
</a>
193+
(.msh file format)
191194
</li>
192195
</ul>
193196
</li>
194197
<li>
195198
<b>Visualization</b>
196199
<ul>
197-
<li>Lines and surfaces plots</li>
200+
<li>Line and surface plotting</li>
198201
</ul>
199202
</li>
200203
</ul>

tutorials/HeatConduction2DFinGmsh.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ <h3 id="gmshgeofile"><a name="gmshgeofile"></a>Example Gmsh .geo File</h3>
241241
Physical Surface("domain") = {1};
242242

243243
// Generate 2D mesh
244-
Recombine Surface{1}; // Turns triangle mesh into quads
245-
Mesh 2;
246-
</pre>
244+
Recombine Surface{1}; // Turn triangle elements into quadrilaterals
245+
Mesh.ElementOrder = 2; // Set quadratic elements
246+
Mesh 2;</pre>
247247

248248
<p>
249249
Note how the physical line tags in the geo file correspond to the boundary conditions in our FEAScript

0 commit comments

Comments
 (0)