Skip to content

Commit

Permalink
build based on d7d3623
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Jun 29, 2023
1 parent d924932 commit 5f925b3
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dev/MeshData/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

boundary_face_dict = tag_boundary_faces(md, Dict(:bottom => on_bottom_boundary, :top => on_top_boundary))
boundary_node_dict = tag_boundary_nodes(rd, md, Dict(:bottom =&gt; on_bottom_boundary, :top =&gt; on_top_boundary))</code></pre><p>You can also specify a list of boundaries using NamedTuples </p><pre><code class="language-julia hljs">boundary_face_dict = tag_boundary_faces(md, (; :bottom=&gt;on_bottom_boundary,:top=&gt;on_top_boundary))
boundary_node_dict = tag_boundary_nodes(rd, md, (; :bottom=&gt;on_bottom_boundary,:top=&gt;on_top_boundary))</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../RefElemData/">« <code>RefElemData</code></a><a class="docs-footer-nextpage" href="../ex_dg_deriv/">Example: computing DG derivatives »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 0.27.24 on <span class="colophon-date" title="Thursday 29 June 2023 22:26">Thursday 29 June 2023</span>. Using Julia version 1.7.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
boundary_node_dict = tag_boundary_nodes(rd, md, (; :bottom=&gt;on_bottom_boundary,:top=&gt;on_top_boundary))</code></pre></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../RefElemData/">« <code>RefElemData</code></a><a class="docs-footer-nextpage" href="../ex_dg_deriv/">Example: computing DG derivatives »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 0.27.24 on <span class="colophon-date" title="Thursday 29 June 2023 22:26">Thursday 29 June 2023</span>. Using Julia version 1.9.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
2 changes: 1 addition & 1 deletion dev/RefElemData/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
rd = RefElemData(Tri(), SBP{Kubatko{LobattoFaceNodes}}(), N)
rd = RefElemData(Tri(), SBP{Kubatko{LegendreFaceNodes}}(), N) </code></pre><p>Quadrature rules of both degree <code>2*N-1</code> (up to <code>N = 6</code>) and <code>2*N</code> (up to <code>N = 4</code>) are supported on triangles. For <code>Line</code>, <code>Quad</code>, and <code>Hex</code> elements, <code>RefElemData(..., SBP(), N)</code> is the same as the <code>RefElemData</code> for a DG-SEM discretization, though some fields are specialized for the SBP type. These SBP-based <code>RefElemData</code> objects can also be used to initialize a mesh (for example, <code>md = MeshData(uniform_mesh(rd.element_type, 4)..., rd)</code>). </p><p>On triangles, we have the following SBP types with the following properties:</p><ul><li><code>SBP{Kubatko{LobattoFaceNodes}}</code>: degree <code>2N-1</code> accurate quadrature rules with <code>N+2</code> Lobatto nodes on each face. Nodes for <code>N=4</code>: </li></ul><p><img src="../assets/kubatko_lobatto_N4.png" alt="klobatto4"/></p><ul><li><code>SBP{Kubatko{LegendreFaceNodes}}</code>: degree <code>2N-1</code> accurate quadrature rules with <code>N+1</code> Legendre nodes on each face. For <code>N = 1,...,4</code>, these are the same as the nodes constructed by Chen and Shu. Nodes for <code>N=4</code>:</li></ul><p><img src="../assets/kubatko_legendre_N4.png" alt="klegendre4"/></p><ul><li><code>SBP{Hicken}</code>: degree <code>2N</code> accurate quadrature rules with <code>N+2</code> Lobatto nodes on each face. Nodes for <code>N=4</code>:</li></ul><p><img src="../assets/hicken_N4.png" alt="hicken4"/></p><h2 id="Tensor-product-RefElemData-on-wedge-elements"><a class="docs-heading-anchor" href="#Tensor-product-RefElemData-on-wedge-elements">Tensor product <code>RefElemData</code> on wedge elements</a><a id="Tensor-product-RefElemData-on-wedge-elements-1"></a><a class="docs-heading-anchor-permalink" href="#Tensor-product-RefElemData-on-wedge-elements" title="Permalink"></a></h2><div class="admonition is-warning"><header class="admonition-header">Experimental implementation</header><div class="admonition-body"><p>This is an experimental feature and may change in future releases.</p></div></div><p>There is experimental support for <code>RefElemData</code>s created from tensor products of triangular and 1D <code>RefElemData</code> objects. </p><pre><code class="language-julia hljs">line = RefElemData(Line(), N_line)
tri = RefElemData(Tri(), N_tri)
rd = RefElemData(Wedge(), TensorProductWedge(tri, line))</code></pre><p>This new <code>rd::RefElemData</code> can then be used to create a wedge-based <code>MeshData</code>. The individual <code>RefElemData</code> objects can be accessed from <code>rd.approximation_type::TensorProductWedge</code>. </p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../conventions/">« Background and conventions</a><a class="docs-footer-nextpage" href="../MeshData/"><code>MeshData</code> »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 0.27.24 on <span class="colophon-date" title="Thursday 29 June 2023 22:26">Thursday 29 June 2023</span>. Using Julia version 1.7.3.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
rd = RefElemData(Wedge(), TensorProductWedge(tri, line))</code></pre><p>This new <code>rd::RefElemData</code> can then be used to create a wedge-based <code>MeshData</code>. The individual <code>RefElemData</code> objects can be accessed from <code>rd.approximation_type::TensorProductWedge</code>. </p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../conventions/">« Background and conventions</a><a class="docs-footer-nextpage" href="../MeshData/"><code>MeshData</code> »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 0.27.24 on <span class="colophon-date" title="Thursday 29 June 2023 22:27">Thursday 29 June 2023</span>. Using Julia version 1.9.1.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Loading

0 comments on commit 5f925b3

Please sign in to comment.