Skip to content

Commit

Permalink
build based on 4dee1b2
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Nov 1, 2024
1 parent 59560dd commit 08f36a7
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion dev/Trixi/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@
xlabel="E", ylabel="N", zlabel="H")
end

gif(animation, &quot;examples\\plots\\dam_break_2d.gif&quot;, fps=15)</code></pre><p>This is the resulting .gif animation.</p><p><img src="https://user-images.githubusercontent.com/101979498/203507057-f4fa5ef2-e852-493d-8df6-497c1e2a9a51.gif" alt="gif"/></p><p>For the bottom topography, the domain&#39;s boundaries look weird. The reason for that is a bug in <code>PlotData2D</code> of <code>Trixi.jl</code>. Once this has been addressed, the plotted bottom topography will look similar to the one in <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/function/#Two-dimensional-case">the previous section</a>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../function/">« B-spline function</a><a class="docs-footer-nextpage" href="../reference/">Reference »</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.25 on <span class="colophon-date" title="Friday 2 August 2024 07:20">Friday 2 August 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
gif(animation, &quot;examples\\plots\\dam_break_2d.gif&quot;, fps=15)</code></pre><p>This is the resulting .gif animation.</p><p><img src="https://user-images.githubusercontent.com/101979498/203507057-f4fa5ef2-e852-493d-8df6-497c1e2a9a51.gif" alt="gif"/></p><p>For the bottom topography, the domain&#39;s boundaries look weird. The reason for that is a bug in <code>PlotData2D</code> of <code>Trixi.jl</code>. Once this has been addressed, the plotted bottom topography will look similar to the one in <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/function/#Two-dimensional-case">the previous section</a>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../function/">« B-spline function</a><a class="docs-footer-nextpage" href="../reference/">Reference »</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.25 on <span class="colophon-date" title="Friday 1 November 2024 06:34">Friday 1 November 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
2 changes: 1 addition & 1 deletion dev/conversion/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
357005.00 5646999.00 47.30
357006.00 5646999.00 47.24
... ... ...</code></pre><p><a href="https://gist.github.com/maxbertrand1996/c6917dcf80aef1704c633ec643a531d5">Here</a>, you can see the whole file.</p><p>Now the data can be converted.</p><pre><code class="language-julia hljs"># Convert data
convert_dgm_1d(path_src_file, path_out_file_1d_x; excerpt = 20, section = 100)</code></pre><p>Calling this expression tells <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_1d-Tuple{String,%20String}"><code>convert_dgm_1d</code></a> that the source file is <code>path_src_file</code> and the converted file will be saved in the file <code>path_out_file_1d_x</code>. The optional attribute <code>excerpt</code> tells the function that only every <code>20</code>th point in the <code>x</code> direction (in this case, in the ETRS89 East coordinate) will be considered. Setting <code>section</code> to <code>100</code> tells the function that the corresponding <code>z</code> values (DHHN2016 in this case) from the <code>100</code>th <code>y</code> coordinate (ETRS89 North) will be chosen. The entire converted file produced by this routine is available <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_1d_20_x.txt">here</a>.</p><pre><code class="language-julia hljs">convert_dgm_1d(path_src_file, path_out_file_1d_y; excerpt = 20, direction = &quot;y&quot;, section = 100)</code></pre><p>Similar to the previous expression, this one has the additional attribute <code>direction = &quot;y&quot;</code> which tells <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_1d-Tuple{String,%20String}"><code>convert_dgm_1d</code></a> that the data will be read from the <code>y</code> direction. (Click <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_1d_20_y.txt">here</a> to view the resulting file)</p><pre><code class="language-julia hljs">convert_dgm_2d(path_src_file, path_out_file_2d; excerpt = 20)</code></pre><p>The two dimensional version <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_2d-Tuple{String,%20String}"><code>convert_dgm_2d</code></a> works similar to the one dimensional case except that the optional attributes <code>direction</code> and <code>section</code> do not exist, but only <code>excerpt</code>. Setting e.g. to <code>20</code> tells the function that only every <code>20</code>th value in the <code>x</code> and <code>y</code> direction of the source file <code>path_src_file</code> will be stored in <code>path_out_file_2d</code>. The resulting file after the two dimensional conversion is available <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_2d_20.txt">here</a>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../">« Home</a><a class="docs-footer-nextpage" href="../structure/">B-spline structure »</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.25 on <span class="colophon-date" title="Friday 2 August 2024 07:20">Friday 2 August 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
convert_dgm_1d(path_src_file, path_out_file_1d_x; excerpt = 20, section = 100)</code></pre><p>Calling this expression tells <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_1d-Tuple{String,%20String}"><code>convert_dgm_1d</code></a> that the source file is <code>path_src_file</code> and the converted file will be saved in the file <code>path_out_file_1d_x</code>. The optional attribute <code>excerpt</code> tells the function that only every <code>20</code>th point in the <code>x</code> direction (in this case, in the ETRS89 East coordinate) will be considered. Setting <code>section</code> to <code>100</code> tells the function that the corresponding <code>z</code> values (DHHN2016 in this case) from the <code>100</code>th <code>y</code> coordinate (ETRS89 North) will be chosen. The entire converted file produced by this routine is available <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_1d_20_x.txt">here</a>.</p><pre><code class="language-julia hljs">convert_dgm_1d(path_src_file, path_out_file_1d_y; excerpt = 20, direction = &quot;y&quot;, section = 100)</code></pre><p>Similar to the previous expression, this one has the additional attribute <code>direction = &quot;y&quot;</code> which tells <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_1d-Tuple{String,%20String}"><code>convert_dgm_1d</code></a> that the data will be read from the <code>y</code> direction. (Click <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_1d_20_y.txt">here</a> to view the resulting file)</p><pre><code class="language-julia hljs">convert_dgm_2d(path_src_file, path_out_file_2d; excerpt = 20)</code></pre><p>The two dimensional version <a href="https://trixi-framework.github.io/TrixiBottomTopography.jl/dev/reference/#TrixiBottomTopography.convert_dgm_2d-Tuple{String,%20String}"><code>convert_dgm_2d</code></a> works similar to the one dimensional case except that the optional attributes <code>direction</code> and <code>section</code> do not exist, but only <code>excerpt</code>. Setting e.g. to <code>20</code> tells the function that only every <code>20</code>th value in the <code>x</code> and <code>y</code> direction of the source file <code>path_src_file</code> will be stored in <code>path_out_file_2d</code>. The resulting file after the two dimensional conversion is available <a href="https://github.com/trixi-framework/TrixiBottomTopography.jl/blob/main/examples/data/rhine_data_2d_20.txt">here</a>.</p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../">« Home</a><a class="docs-footer-nextpage" href="../structure/">B-spline structure »</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.25 on <span class="colophon-date" title="Friday 1 November 2024 06:34">Friday 1 November 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
2 changes: 1 addition & 1 deletion dev/function/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
surface(x_int_pts, y_int_pts, z_int_pts, camera=(-30,30),
xlabel=&quot;ETRS89\n East&quot;, ylabel=&quot;ETRS89\n North&quot;, zlabel=&quot;DHHN2016\n Height&quot;,
label=&quot;Bottom topography&quot;,
title=&quot;Cubic B-spline interpolation with not-a-knot end condition&quot;)</code></pre><p>gives the following representation:</p><p><img src="https://user-images.githubusercontent.com/101979498/203507049-279bc69b-3acc-4c55-888f-26e02c1edabe.png" alt="image"/></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../structure/">« B-spline structure</a><a class="docs-footer-nextpage" href="../Trixi/">Trixi.jl examples »</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.25 on <span class="colophon-date" title="Friday 2 August 2024 07:20">Friday 2 August 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
title=&quot;Cubic B-spline interpolation with not-a-knot end condition&quot;)</code></pre><p>gives the following representation:</p><p><img src="https://user-images.githubusercontent.com/101979498/203507049-279bc69b-3acc-4c55-888f-26e02c1edabe.png" alt="image"/></p></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../structure/">« B-spline structure</a><a class="docs-footer-nextpage" href="../Trixi/">Trixi.jl examples »</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.25 on <span class="colophon-date" title="Friday 1 November 2024 06:34">Friday 1 November 2024</span>. Using Julia version 1.6.7.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
Loading

0 comments on commit 08f36a7

Please sign in to comment.