diff --git a/latex/tex/monte-carlo/sampling.tex b/latex/tex/monte-carlo/sampling.tex index 957d3d6..12fb4bb 100644 --- a/latex/tex/monte-carlo/sampling.tex +++ b/latex/tex/monte-carlo/sampling.tex @@ -108,7 +108,7 @@ modification and has again been implemented and evaluated. \caption{\label{fig:distcos} The distribution \cref{eq:distcos} and an upper bound of the form \(a + b\cdot x^2\).} \end{figure} -% + Using the upper bound defined in \cref{eq:primitiveg} with the distribution for \(\cos\theta\) derived from the differential cross section \cref{eq:crossec} given in \cref{eq:distcos} diff --git a/latex/thesis.bib b/latex/thesis.bib index 6edf8e1..cf1dd2b 100644 --- a/latex/thesis.bib +++ b/latex/thesis.bib @@ -357,3 +357,13 @@ month = "5", year = "2020" } + +@misc{wiki:2020no, + title = {{File:Normal Distribution CDF.svg - Wikimedia + Commons}}, + year = {2020}, + month = {6}, + note = {[Online; accessed 29. Jun. 2020]}, + url = + {https://commons.wikimedia.org/wiki/File:Normal_Distribution_CDF.svg} +} diff --git a/prog/python/qqgg/.ob-jupyter/37306932df4d28e56eff37c1b1dbe5efcf5f38c5.png b/prog/python/qqgg/.ob-jupyter/37306932df4d28e56eff37c1b1dbe5efcf5f38c5.png deleted file mode 100644 index e13d00b..0000000 Binary files a/prog/python/qqgg/.ob-jupyter/37306932df4d28e56eff37c1b1dbe5efcf5f38c5.png and /dev/null differ diff --git a/prog/python/qqgg/.ob-jupyter/4522eb3fbeaa14978f9838371acb0650910b8dbf.png b/prog/python/qqgg/.ob-jupyter/4522eb3fbeaa14978f9838371acb0650910b8dbf.png deleted file mode 100644 index d7fe3c9..0000000 Binary files a/prog/python/qqgg/.ob-jupyter/4522eb3fbeaa14978f9838371acb0650910b8dbf.png and /dev/null differ diff --git a/prog/python/qqgg/.ob-jupyter/7466ab6e4dd5f81d66dae2e1ba4531efa6885336.png b/prog/python/qqgg/.ob-jupyter/7466ab6e4dd5f81d66dae2e1ba4531efa6885336.png deleted file mode 100644 index 730efad..0000000 Binary files a/prog/python/qqgg/.ob-jupyter/7466ab6e4dd5f81d66dae2e1ba4531efa6885336.png and /dev/null differ diff --git a/prog/python/qqgg/.ob-jupyter/ae89081fd4dc96b3851ae0ed83ef1a8bf24957a3.png b/prog/python/qqgg/.ob-jupyter/ae89081fd4dc96b3851ae0ed83ef1a8bf24957a3.png deleted file mode 100644 index 87ee009..0000000 Binary files a/prog/python/qqgg/.ob-jupyter/ae89081fd4dc96b3851ae0ed83ef1a8bf24957a3.png and /dev/null differ diff --git a/prog/python/qqgg/.ob-jupyter/df9765373fa441d9bd5b8c72e4570b6e57a4efd1.png b/prog/python/qqgg/.ob-jupyter/df9765373fa441d9bd5b8c72e4570b6e57a4efd1.png deleted file mode 100644 index 49d8981..0000000 Binary files a/prog/python/qqgg/.ob-jupyter/df9765373fa441d9bd5b8c72e4570b6e57a4efd1.png and /dev/null differ diff --git a/prog/python/qqgg/analytical_xs.org b/prog/python/qqgg/analytical_xs.org index 520a6e7..bfa9653 100644 --- a/prog/python/qqgg/analytical_xs.org +++ b/prog/python/qqgg/analytical_xs.org @@ -198,7 +198,7 @@ Let's plot a more detailed view of the xs. #+end_src #+RESULTS: -[[file:./.ob-jupyter/7466ab6e4dd5f81d66dae2e1ba4531efa6885336.png]] +[[file:./.ob-jupyter/76fd6c12bbf149b4207309816f761bcdf5660044.png]] And now calculate the cross section in picobarn. #+BEGIN_SRC jupyter-python :exports both :results raw file :file xs.tex @@ -225,7 +225,7 @@ Let's plot a more detailed view of the xs. #+end_src #+RESULTS: - [[file:./.ob-jupyter/4522eb3fbeaa14978f9838371acb0650910b8dbf.png]] + [[file:./.ob-jupyter/6c11ca246186eeea4d83adbab28d2bac650d530e.png]] Compared to sherpa, it's pretty close. @@ -259,7 +259,7 @@ Plot our nice distribution: #+end_src #+RESULTS: -[[file:./.ob-jupyter/37306932df4d28e56eff37c1b1dbe5efcf5f38c5.png]] +[[file:./.ob-jupyter/75a16a47d4f49baccb809d925bbd349a36d945b6.png]] Define the integrand. #+begin_src jupyter-python :exports both :results raw drawer @@ -287,7 +287,7 @@ Plot the integrand. # TODO: remove duplication vals.mean() + vals.std(), alpha=0.1, color="red", - label=r"$\sigma$", + label=r"$\sigma$ (stddev)", ) ax.legend() ax.set_ylim([0, 0.09]) @@ -295,7 +295,7 @@ Plot the integrand. # TODO: remove duplication #+end_src #+RESULTS: -[[file:./.ob-jupyter/ae89081fd4dc96b3851ae0ed83ef1a8bf24957a3.png]] +[[file:./.ob-jupyter/c6475d9a7ff68efac62047df38b6dff727b47ca1.png]] *** Integral over θ Intergrate σ with the mc method. #+begin_src jupyter-python :exports both :results raw drawer @@ -332,7 +332,7 @@ Plot the intgrand of the pseudo rap. vals.mean() + vals.std(), alpha=0.1, color="red", - label=r"$\sigma$", + label=r"$\sigma$ (stddev)", ) ax.legend() ax.set_ylim([0, 0.09]) @@ -343,7 +343,7 @@ Plot the intgrand of the pseudo rap. #+RESULTS: :RESULTS: : 0.0022315324126441238 -[[file:./.ob-jupyter/df9765373fa441d9bd5b8c72e4570b6e57a4efd1.png]] +[[file:./.ob-jupyter/8dfec98a513c90cfa5ce0b0fa0c738990a00f545.png]] :END: #+begin_src jupyter-python :exports both :results raw drawer diff --git a/prog/python/qqgg/figs/xs/diff_xs.pdf b/prog/python/qqgg/figs/xs/diff_xs.pdf index 4720802..2bfaef0 100644 Binary files a/prog/python/qqgg/figs/xs/diff_xs.pdf and b/prog/python/qqgg/figs/xs/diff_xs.pdf differ diff --git a/prog/python/qqgg/figs/xs/diff_xs_zoom.pdf b/prog/python/qqgg/figs/xs/diff_xs_zoom.pdf index bf0ba19..e3bd803 100644 Binary files a/prog/python/qqgg/figs/xs/diff_xs_zoom.pdf and b/prog/python/qqgg/figs/xs/diff_xs_zoom.pdf differ diff --git a/prog/python/qqgg/figs/xs/total_xs.pdf b/prog/python/qqgg/figs/xs/total_xs.pdf index 0766f5a..fa33436 100644 Binary files a/prog/python/qqgg/figs/xs/total_xs.pdf and b/prog/python/qqgg/figs/xs/total_xs.pdf differ