Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Quarto GHA Workflow Runner committed Jun 13, 2024
1 parent a9b3c09 commit 8875990
Show file tree
Hide file tree
Showing 11 changed files with 3,285 additions and 2,232 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e4d08baf
d5eaaf49
2 changes: 1 addition & 1 deletion images/DiffEQ.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,128 changes: 1,128 additions & 0 deletions images/DynamicsMethods.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,203 changes: 0 additions & 2,203 deletions images/Model_types.svg

This file was deleted.

2,133 changes: 2,133 additions & 0 deletions images/Models.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion images/ODEProblem.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion images/nqcdistributions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion images/nqcdynamics.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 16 additions & 21 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ <h1 class="title">Running nonadiabatic MD in Julia</h1>
</div>
</div>

<p class="date">06.12.2024</p>
<p class="date">13.06.2024</p>
</section><section id="TOC">
<nav role="doc-toc">
<h2 id="toc-title">Table of contents</h2>
Expand Down Expand Up @@ -738,7 +738,7 @@ <h2>Potential Energy Surfaces: <code>NQCModels.jl</code></h2>
<section class="slide level2">


<img data-src="images/Model_types.svg" class="r-stretch quarto-figure-center"><p class="caption">Model types implemented in NQCModels.jl</p></section>
<img data-src="images/Models.svg" class="r-stretch quarto-figure-center"><p class="caption">Model types implemented in NQCModels.jl</p></section>
<section id="statistical-sampling-nqcdistributions.jl" class="slide level2">
<h2>Statistical sampling: NQCDistributions.jl</h2>

Expand Down Expand Up @@ -1050,21 +1050,18 @@ <h2>Parallelisation with <code>ClusterScripts.jl</code><sup>1</sup></h2>
<div class="sourceCode" id="cb21"><pre class="sourceCode numberSource julia number-lines code-with-copy"><code class="sourceCode julia"><span id="cb21-1"><a href=""></a>fixed_parameters<span class="op">=</span><span class="fu">Dict</span>(</span>
<span id="cb21-2"><a href=""></a> <span class="st">"task"</span> <span class="op">=&gt;</span> <span class="st">"mdef+2tm"</span>,</span>
<span id="cb21-3"><a href=""></a> <span class="st">"trajectories"</span> <span class="op">=&gt;</span> <span class="fl">10000</span>, </span>
<span id="cb21-4"><a href=""></a> <span class="st">"runtime"</span> <span class="op">=&gt;</span> <span class="fl">4.7</span>u<span class="st">"ps"</span>, <span class="co"># start at -0.4ps from laser maximum </span></span>
<span id="cb21-5"><a href=""></a> <span class="st">"timestep"</span> <span class="op">=&gt;</span> <span class="fl">0.1</span>u<span class="st">"fs"</span>, <span class="co"># Timestep </span></span>
<span id="cb21-6"><a href=""></a> <span class="st">"saveat"</span> <span class="op">=&gt;</span> <span class="fl">0.1</span>u<span class="st">"fs"</span>, </span>
<span id="cb21-7"><a href=""></a> <span class="st">"ensemble_algorithm"</span> <span class="op">=&gt;</span> <span class="fu">EnsembleSerial</span>(), <span class="co"># Parallelisation method to use</span></span>
<span id="cb21-8"><a href=""></a> <span class="st">"outputs"</span> <span class="op">=&gt;</span> (OutputInitial, OutputFinal, <span class="fu">OutputDesorptionAngle</span>(friction_atoms), <span class="fu">OutputDesorptionTrajectory</span>(friction_atoms, extra_frames<span class="op">=</span><span class="fl">200</span>)),</span>
<span id="cb21-9"><a href=""></a> <span class="st">"friction_atoms"</span> <span class="op">=&gt;</span> friction_atoms,</span>
<span id="cb21-10"><a href=""></a>)</span>
<span id="cb21-11"><a href=""></a></span>
<span id="cb21-12"><a href=""></a>variables<span class="op">=</span><span class="fu">Dict</span>(</span>
<span id="cb21-13"><a href=""></a> <span class="st">"starting_temperature"</span> <span class="op">=&gt;</span> [<span class="fl">100</span>, <span class="fl">150</span>, <span class="fl">200</span>, <span class="fl">250</span>, <span class="fl">300</span>],</span>
<span id="cb21-14"><a href=""></a> <span class="st">"fluence"</span> <span class="op">=&gt;</span> [<span class="fl">10</span>,<span class="fl">20</span>,<span class="fl">40</span>,<span class="fl">60</span>,<span class="fl">80</span>,<span class="fl">100</span>,<span class="fl">120</span>],</span>
<span id="cb21-15"><a href=""></a>)</span>
<span id="cb21-16"><a href=""></a></span>
<span id="cb21-17"><a href=""></a>job_queue<span class="op">=</span><span class="fu">build_job_queue</span>(fixed_parameters, variables, postprocess_queue)</span>
<span id="cb21-18"><a href=""></a><span class="fu">serialise_queue!</span>(job_queue; filename<span class="op">=</span><span class="st">"simulation_parameters.jld2"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<span id="cb21-4"><a href=""></a> <span class="st">"runtime"</span> <span class="op">=&gt;</span> <span class="fl">4.7</span>u<span class="st">"ps"</span>, </span>
<span id="cb21-5"><a href=""></a> <span class="st">"timestep"</span> <span class="op">=&gt;</span> <span class="fl">0.1</span>u<span class="st">"fs"</span>,</span>
<span id="cb21-6"><a href=""></a> <span class="st">"ensemble_algorithm"</span> <span class="op">=&gt;</span> <span class="fu">EnsembleSerial</span>(),</span>
<span id="cb21-7"><a href=""></a> <span class="st">"outputs"</span> <span class="op">=&gt;</span> (OutputInitial, OutputFinal),</span>
<span id="cb21-8"><a href=""></a> <span class="st">"friction_atoms"</span> <span class="op">=&gt;</span> friction_atoms,</span>
<span id="cb21-9"><a href=""></a>)</span>
<span id="cb21-10"><a href=""></a>variables<span class="op">=</span><span class="fu">Dict</span>(</span>
<span id="cb21-11"><a href=""></a> <span class="st">"starting_temperature"</span> <span class="op">=&gt;</span> [<span class="fl">100</span>, <span class="fl">150</span>, <span class="fl">200</span>, <span class="fl">250</span>, <span class="fl">300</span>],</span>
<span id="cb21-12"><a href=""></a> <span class="st">"fluence"</span> <span class="op">=&gt;</span> [<span class="fl">10</span>,<span class="fl">20</span>,<span class="fl">40</span>,<span class="fl">60</span>,<span class="fl">80</span>,<span class="fl">100</span>,<span class="fl">120</span>],</span>
<span id="cb21-13"><a href=""></a>)</span>
<span id="cb21-14"><a href=""></a>job_queue<span class="op">=</span><span class="fu">build_job_queue</span>(fixed_parameters, variables, postprocess_queue)</span>
<span id="cb21-15"><a href=""></a><span class="fu">serialise_queue!</span>(job_queue; filename<span class="op">=</span><span class="st">"simulation_parameters.jld2"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
<aside><ol class="aside-footnotes"><li id="fn8"><p><a href="https://github.com/NQCD/ClusterScripts.jl">GitHub</a></p></li></ol></aside></section></section>
<section>
<section id="how-can-i-contribute-to-nqcd" class="title-slide slide level1 center">
Expand Down Expand Up @@ -1139,10 +1136,8 @@ <h2>A new model?</h2>
</section>
<section id="a-new-dynamics-method" class="slide level2">
<h2>A new dynamics method?</h2>
<ul>
<li>Show type tree of DynamicsMethods</li>
</ul>
</section>

<img data-src="images/DynamicsMethods.svg" class="r-stretch quarto-figure-center"><p class="caption"><code>DynamicsMethods.Method</code> types</p></section>
<section id="something-completely-different" class="slide level2">
<h2>Something completely different?</h2>
<ul>
Expand Down
4 changes: 2 additions & 2 deletions index_files/libs/revealjs/dist/theme/quarto.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nqcd_packages.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8875990

Please sign in to comment.