Skip to content

Commit

Permalink
build based on 31096cb
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Sep 18, 2024
1 parent c870a35 commit 798585b
Show file tree
Hide file tree
Showing 93 changed files with 1,293 additions and 614 deletions.
2 changes: 1 addition & 1 deletion dev/.documenter-siteinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-16T09:22:26","documenter_version":"1.5.0"}}
{"documenter":{"julia_version":"1.10.5","generation_timestamp":"2024-09-18T12:04:51","documenter_version":"1.5.0"}}
2 changes: 1 addition & 1 deletion dev/changelog/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/cited-literature/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/devdocs/FEValues/index.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dev/devdocs/dofhandler/index.html

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dev/devdocs/elements/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/devdocs/index.html

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dev/devdocs/interpolations/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/devdocs/performance/index.html

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions dev/devdocs/reference_cells/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/devdocs/special_datastructures/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
for (ind, val) in some_data
push_at_index!(buffer, val, ind)
end
end</code></pre><p><code>sizehint</code> tells how much space to allocate for the index <code>ind</code> if no <code>val</code> has been added to that index before, or how much more space to allocate in case all previously allocated space for <code>ind</code> has been used up.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/19214c7530999365979c0f01765a452fc11e3d7c/src/CollectionsOfViews.jl#L85-L104">source</a></section><section><div><pre><code class="language-julia hljs">ArrayOfVectorViews(b::CollectionsOfViews.ConstructionBuffer)</code></pre><p>Creates the <code>ArrayOfVectorViews</code> directly from the <code>ConstructionBuffer</code> that was manually created and filled.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/19214c7530999365979c0f01765a452fc11e3d7c/src/CollectionsOfViews.jl#L112-L116">source</a></section><section><div><pre><code class="language-julia hljs">ArrayOfVectorViews(indices::Vector{Int}, data::Vector{T}, lin_idx::LinearIndices{N}; checkargs = true)</code></pre><p>Creates the <code>ArrayOfVectorViews</code> directly where the user is responsible for having the correct input data. Checking of the argument dimensions can be elided by setting <code>checkargs = false</code>, but incorrect dimensions may lead to illegal out of bounds access later.</p><p><code>data</code> is indexed by <code>indices[i]:indices[i+1]</code>, where <code>i = lin_idx[idx...]</code> and <code>idx...</code> are the user-provided indices to the <code>ArrayOfVectorViews</code>.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/19214c7530999365979c0f01765a452fc11e3d7c/src/CollectionsOfViews.jl#L137-L146">source</a></section></article><article class="docstring"><header><a class="docstring-article-toggle-button fa-solid fa-chevron-down" href="javascript:;" title="Collapse docstring"></a><a class="docstring-binding" id="Ferrite.CollectionsOfViews.ConstructionBuffer" href="#Ferrite.CollectionsOfViews.ConstructionBuffer"><code>Ferrite.CollectionsOfViews.ConstructionBuffer</code></a><span class="docstring-category">Type</span></header><section><div><pre><code class="language-julia hljs">ConstructionBuffer(data::Vector, dims::NTuple{N, Int}, sizehint)</code></pre><p>Create a buffer for creating an <a href="#ArrayOfVectorViews"><code>ArrayOfVectorViews</code></a>, representing an array with <code>N</code> axes. <code>sizehint</code> sets the number of elements in <code>data</code> allocated when a new index is added via <code>push_at_index!</code>, or when the current storage for the index is full, how much many additional elements are reserved for that index. Any content in <code>data</code> is overwritten, but performance is improved by pre-allocating it to a reasonable size or by <code>sizehint!</code>ing it.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/19214c7530999365979c0f01765a452fc11e3d7c/src/CollectionsOfViews.jl#L19-L27">source</a></section></article><article class="docstring"><header><a class="docstring-article-toggle-button fa-solid fa-chevron-down" href="javascript:;" title="Collapse docstring"></a><a class="docstring-binding" id="Ferrite.CollectionsOfViews.push_at_index!" href="#Ferrite.CollectionsOfViews.push_at_index!"><code>Ferrite.CollectionsOfViews.push_at_index!</code></a><span class="docstring-category">Function</span></header><section><div><pre><code class="language-julia hljs">push_at_index!(b::ConstructionBuffer, val, indices::Int...)</code></pre><p><code>push!</code> the value <code>val</code> to the <code>Vector</code> view at the index given by <code>indices</code>, typically called inside the <a href="#ArrayOfVectorViews"><code>ArrayOfVectorViews</code></a> constructor do-block. But can also be used when manually creating a <code>ConstructionBuffer</code>.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/19214c7530999365979c0f01765a452fc11e3d7c/src/CollectionsOfViews.jl#L33-L39">source</a></section></article></article><nav class="docs-footer"><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.5.0 on <span class="colophon-date" title="Monday 16 September 2024 09:22">Monday 16 September 2024</span>. Using Julia version 1.10.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
end</code></pre><p><code>sizehint</code> tells how much space to allocate for the index <code>ind</code> if no <code>val</code> has been added to that index before, or how much more space to allocate in case all previously allocated space for <code>ind</code> has been used up.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/31096cb09cfdd20465159f6442c68ee94a4987c2/src/CollectionsOfViews.jl#L85-L104">source</a></section><section><div><pre><code class="language-julia hljs">ArrayOfVectorViews(b::CollectionsOfViews.ConstructionBuffer)</code></pre><p>Creates the <code>ArrayOfVectorViews</code> directly from the <code>ConstructionBuffer</code> that was manually created and filled.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/31096cb09cfdd20465159f6442c68ee94a4987c2/src/CollectionsOfViews.jl#L112-L116">source</a></section><section><div><pre><code class="language-julia hljs">ArrayOfVectorViews(indices::Vector{Int}, data::Vector{T}, lin_idx::LinearIndices{N}; checkargs = true)</code></pre><p>Creates the <code>ArrayOfVectorViews</code> directly where the user is responsible for having the correct input data. Checking of the argument dimensions can be elided by setting <code>checkargs = false</code>, but incorrect dimensions may lead to illegal out of bounds access later.</p><p><code>data</code> is indexed by <code>indices[i]:indices[i+1]</code>, where <code>i = lin_idx[idx...]</code> and <code>idx...</code> are the user-provided indices to the <code>ArrayOfVectorViews</code>.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/31096cb09cfdd20465159f6442c68ee94a4987c2/src/CollectionsOfViews.jl#L137-L146">source</a></section></article><article class="docstring"><header><a class="docstring-article-toggle-button fa-solid fa-chevron-down" href="javascript:;" title="Collapse docstring"></a><a class="docstring-binding" id="Ferrite.CollectionsOfViews.ConstructionBuffer" href="#Ferrite.CollectionsOfViews.ConstructionBuffer"><code>Ferrite.CollectionsOfViews.ConstructionBuffer</code></a><span class="docstring-category">Type</span></header><section><div><pre><code class="language-julia hljs">ConstructionBuffer(data::Vector, dims::NTuple{N, Int}, sizehint)</code></pre><p>Create a buffer for creating an <a href="#ArrayOfVectorViews"><code>ArrayOfVectorViews</code></a>, representing an array with <code>N</code> axes. <code>sizehint</code> sets the number of elements in <code>data</code> allocated when a new index is added via <code>push_at_index!</code>, or when the current storage for the index is full, how much many additional elements are reserved for that index. Any content in <code>data</code> is overwritten, but performance is improved by pre-allocating it to a reasonable size or by <code>sizehint!</code>ing it.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/31096cb09cfdd20465159f6442c68ee94a4987c2/src/CollectionsOfViews.jl#L19-L27">source</a></section></article><article class="docstring"><header><a class="docstring-article-toggle-button fa-solid fa-chevron-down" href="javascript:;" title="Collapse docstring"></a><a class="docstring-binding" id="Ferrite.CollectionsOfViews.push_at_index!" href="#Ferrite.CollectionsOfViews.push_at_index!"><code>Ferrite.CollectionsOfViews.push_at_index!</code></a><span class="docstring-category">Function</span></header><section><div><pre><code class="language-julia hljs">push_at_index!(b::ConstructionBuffer, val, indices::Int...)</code></pre><p><code>push!</code> the value <code>val</code> to the <code>Vector</code> view at the index given by <code>indices</code>, typically called inside the <a href="#ArrayOfVectorViews"><code>ArrayOfVectorViews</code></a> constructor do-block. But can also be used when manually creating a <code>ConstructionBuffer</code>.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/Ferrite-FEM/Ferrite.jl/blob/31096cb09cfdd20465159f6442c68ee94a4987c2/src/CollectionsOfViews.jl#L33-L39">source</a></section></article></article><nav class="docs-footer"><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.5.0 on <span class="colophon-date" title="Wednesday 18 September 2024 12:04">Wednesday 18 September 2024</span>. Using Julia version 1.10.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
2 changes: 1 addition & 1 deletion dev/gallery/helmholtz/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@
vtk = VTKGridFile(&quot;helmholtz&quot;, dh)
write_solution(vtk, dh, u)
close(vtk)
println(&quot;Helmholtz successful&quot;)</code></pre><pre class="documenter-example-output"><code class="nohighlight hljs ansi">Helmholtz successful</code></pre><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.5.0 on <span class="colophon-date" title="Monday 16 September 2024 09:22">Monday 16 September 2024</span>. Using Julia version 1.10.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
println(&quot;Helmholtz successful&quot;)</code></pre><pre class="documenter-example-output"><code class="nohighlight hljs ansi">Helmholtz successful</code></pre><hr/><p><em>This page was generated using <a href="https://github.com/fredrikekre/Literate.jl">Literate.jl</a>.</em></p></article><nav class="docs-footer"><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="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.5.0 on <span class="colophon-date" title="Wednesday 18 September 2024 12:04">Wednesday 18 September 2024</span>. Using Julia version 1.10.5.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
26 changes: 26 additions & 0 deletions dev/gallery/hyperelasticity_incomp_mixed.pvd
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<VTKFile type="Collection" version="1.0" byte_order="LittleEndian" compressor="vtkZLibDataCompressor">
<Collection>
<DataSet timestep="0.0" part="0" file="hyperelasticity_incomp_mixed_1.vtu"/>
<DataSet timestep="0.1" part="0" file="hyperelasticity_incomp_mixed_2.vtu"/>
<DataSet timestep="0.2" part="0" file="hyperelasticity_incomp_mixed_3.vtu"/>
<DataSet timestep="0.3" part="0" file="hyperelasticity_incomp_mixed_4.vtu"/>
<DataSet timestep="0.4" part="0" file="hyperelasticity_incomp_mixed_5.vtu"/>
<DataSet timestep="0.5" part="0" file="hyperelasticity_incomp_mixed_6.vtu"/>
<DataSet timestep="0.6" part="0" file="hyperelasticity_incomp_mixed_7.vtu"/>
<DataSet timestep="0.7" part="0" file="hyperelasticity_incomp_mixed_8.vtu"/>
<DataSet timestep="0.8" part="0" file="hyperelasticity_incomp_mixed_9.vtu"/>
<DataSet timestep="0.9" part="0" file="hyperelasticity_incomp_mixed_10.vtu"/>
<DataSet timestep="1.0" part="0" file="hyperelasticity_incomp_mixed_11.vtu"/>
<DataSet timestep="1.1" part="0" file="hyperelasticity_incomp_mixed_12.vtu"/>
<DataSet timestep="1.2" part="0" file="hyperelasticity_incomp_mixed_13.vtu"/>
<DataSet timestep="1.3" part="0" file="hyperelasticity_incomp_mixed_14.vtu"/>
<DataSet timestep="1.4" part="0" file="hyperelasticity_incomp_mixed_15.vtu"/>
<DataSet timestep="1.5" part="0" file="hyperelasticity_incomp_mixed_16.vtu"/>
<DataSet timestep="1.6" part="0" file="hyperelasticity_incomp_mixed_17.vtu"/>
<DataSet timestep="1.7" part="0" file="hyperelasticity_incomp_mixed_18.vtu"/>
<DataSet timestep="1.8" part="0" file="hyperelasticity_incomp_mixed_19.vtu"/>
<DataSet timestep="1.9" part="0" file="hyperelasticity_incomp_mixed_20.vtu"/>
<DataSet timestep="2.0" part="0" file="hyperelasticity_incomp_mixed_21.vtu"/>
</Collection>
</VTKFile>
Loading

0 comments on commit 798585b

Please sign in to comment.