[numerics] add FJMT.2024

This commit is contained in:
Gaspard Jankowiak 2024-04-24 10:08:14 +02:00
parent c92710f9b8
commit f2075f5369

View file

@ -0,0 +1,66 @@
---
layout: default
lang: en
subtitle: FJMT.2024 / 23 April 2024
math: true
---
# Lancichinetti-Fortunato-Radicchi (N_mfl = 301)
{% assign sigma_array = "0.001, 0.002, 0.004, 0.012" | split: ", " %}
{% assign mu_array = "0.001, 0.005, 0.01, 0.05, 0.20833333333333334, 0.36666666666666664, 0.525, 0.6833333333333333, 0.8416666666666667, 1.0" | split: ", " %}
{% assign prefix = "/s/numerics/FJMT.2024/plots_23_04_2024/results/LFR_separated/N_micro=1000,N_mfl=301" %}
{% for sigma in sigma_array %}
<style>.manual_center_1500 { margin-left: -367px; }</style>
<h2>$β$ distribution with $σ² = {{sigma}}$</h2>
<h4 id="LFR301_var=0.001_movies">Movies (ensemble averages)</h4>
{% for mu in mu_array -%}
<a href="{{ prefix }}/σ²={{ sigma }}/μ={{ mu }}/movie_without_g.mp4">μ={{ mu | round: 4 }}</a>{% unless forloop.last %} · {% endunless -%}
{% endfor %}
<h3 id="LFR301_var=0.001_graphs">Graphs</h3>
{% for run in (1..5) -%}
<p>
Run {{ run }}:
{% for mu in mu_array -%}
<a href="{{ prefix }}/σ²={{ sigma }}/μ={{ mu }}/micro-{{ run }}/graph_LFR.png">μ={{ mu | round: 4 }}</a>{% unless forloop.last %} · {% endunless -%}
{% endfor %}
</p>
{% endfor %}
<h4>Dynamics</h4>
<img src="{{ prefix }}/σ²={{ sigma }}/comparison.svg" height="750" width="1500"/>{:.manual_center_1500}
<h4>Graph properties</h4>
<img src="{{ prefix }}/σ²={{ sigma }}/graph_analysis.svg" height="750" width="1500" />{:.manual_center_1500}
<h4>g(t=0), 1 row per run, p increasing →</h4>
<div class="form">
<label>Brightness: </label><input id="slider_LFR301_var={{ sigma }}" type="range" min="1"
max="10" value="1" step="1" /><span id="brightness_LFR301_var={{ sigma }}">1</span>
</div>
<img id="g_init_LFR301_var={{ sigma }}" src="{{ prefix }}/σ²={{ sigma }}/g_init_montage.png" width="1500" />{:.manual_center_1500}
{% endfor %}
<script>
const tags = [
{% for sigma in sigma_array %}
"LFR301_var={{ sigma }}",
{% endfor %}
];
tags.forEach((tag) => {
console.log(tag);
console.log("slider_" + tag);
const slider = document.getElementById("slider_" + tag);
console.log(slider);
const img = document.getElementById("g_init_" + tag);
const disp = document.getElementById("brightness_" + tag);
slider.addEventListener("input", (event) => {
new_value = event.target.value;
disp.textContent = new_value;
img.style.filter = `brightness(${new_value})`
});
})
</script>