arma-thesis

git clone https://git.igankevich.com/arma-thesis.git
Log | Files | Refs | LICENSE

commit ef341d4a0aa3b84278a98e8c370223d7bd3d167a
parent cd991d1c6f10be675167def1c625ffd460399030
Author: Ivan Gankevich <igankevich@ya.ru>
Date:   Sun,  4 Jun 2017 13:42:44 +0300

Merge branch 'master' of bitbucket.org:igankevich/phd-diss

Diffstat:
R/velocity-potentials.R | 29+++++++++++++++++++++++++++++
arma-thesis-ru.org | 42++++++++++++++++++++++++++++++++----------
arma-thesis.org | 70+++++++++++++++++++++++++++++++++++++++++++++-------------------------
data/verification/propagating-acf-00 | 10----------
data/verification/propagating-acf-01 | 10----------
data/verification/propagating-acf-02 | 10----------
data/verification/propagating-acf-03 | 10----------
data/verification/propagating-acf-04 | 10----------
data/verification/propagating-acf-05 | 10----------
data/verification/propagating-acf-06 | 10----------
data/verification/propagating-acf-07 | 10----------
data/verification/propagating-acf-08 | 10----------
data/verification/propagating-acf-09 | 10----------
data/verification/propagating-acf-10 | 10----------
data/verification/propagating-acf-11 | 10----------
data/verification/propagating-acf-12 | 10----------
data/verification/propagating-acf-13 | 10----------
data/verification/propagating-acf-14 | 10----------
data/verification/propagating-acf-15 | 10----------
data/verification/propagating-acf-16 | 10----------
data/verification/propagating-acf-17 | 10----------
data/verification/propagating-acf-18 | 10----------
data/verification/propagating-acf-19 | 10----------
data/verification/propagating-elevation | 100-------------------------------------------------------------------------------
data/verification/propagating-wave-height-x | 100-------------------------------------------------------------------------------
data/verification/propagating-wave-height-y | 100-------------------------------------------------------------------------------
data/verification/propagating-wave-length-x | 100-------------------------------------------------------------------------------
data/verification/propagating-wave-length-y | 100-------------------------------------------------------------------------------
data/verification/propagating-wave-period | 100-------------------------------------------------------------------------------
data/verification/propagating-white-noise | 100-------------------------------------------------------------------------------
data/verification/standing-acf-0 | 10----------
data/verification/standing-acf-1 | 10----------
data/verification/standing-acf-2 | 10----------
data/verification/standing-acf-3 | 10----------
data/verification/standing-acf-4 | 10----------
data/verification/standing-acf-5 | 10----------
data/verification/standing-acf-6 | 10----------
data/verification/standing-acf-7 | 10----------
data/verification/standing-acf-8 | 10----------
data/verification/standing-acf-9 | 10----------
data/verification/standing-elevation | 100-------------------------------------------------------------------------------
data/verification/standing-wave-height-x | 100-------------------------------------------------------------------------------
data/verification/standing-wave-height-y | 100-------------------------------------------------------------------------------
data/verification/standing-wave-length-x | 100-------------------------------------------------------------------------------
data/verification/standing-wave-length-y | 100-------------------------------------------------------------------------------
data/verification/standing-wave-period | 100-------------------------------------------------------------------------------
data/verification/standing-white-noise | 100-------------------------------------------------------------------------------
47 files changed, 106 insertions(+), 1735 deletions(-)

diff --git a/R/velocity-potentials.R b/R/velocity-potentials.R @@ -74,3 +74,32 @@ arma.plot_velocity_potential_field_legend <- function (...) { axis(4) box() } + +arma.plot_velocity <- function(file1, file2, ...) { + args <- list(...) + data1 <- read.table(file1) + data2 <- read.table(file2) + ylim <- range(c(data1, data2)) + if ("ylim" %in% names(args)) { + ylim <- args$ylim + } + plot.new() + plot.window( + xlim = c(0, nrow(data1)-1), + ylim = ylim + ) + lines(data1, lty=args$linetypes[[1]]) + lines(data2, lty=args$linetypes[[2]]) + axis(1) + axis(2) + box() + title(xlab="x",ylab="u(x)") + legend( + "topleft", + c( + as.expression(bquote(u[1](x))), + as.expression(bquote(u[2](x))) + ), + lty = paste(args$linetypes) + ) +} diff --git a/arma-thesis-ru.org b/arma-thesis-ru.org @@ -594,8 +594,8 @@ Motion Programme (LAMP), программе для моделирования к z+\alpha\dot{\alpha}}{\sqrt{1+\alpha^{2}}}e^{I(x)}dx,\label{eq-old-sol-2d}\\ I(x)= & \int\limits_{0}^x\frac{\partial\alpha/\partial z}{1+\alpha^{2}}dx,\nonumber \end{align} -где \(\alpha\)\nbsp{}--- уклоны волн. В трехмерном случае решение записывается в виде -эллиптического дифференциального уравнения в частных производных +где \(\alpha\)\nbsp{}--- уклоны волн. В трехмерном случае решение записывается в +виде эллиптического дифференциального уравнения в частных производных \begin{align*} & \frac{\partial^2 \phi}{\partial x^2} \left( 1 + \alpha_x^2 \right) + \frac{\partial^2 \phi}{\partial y^2} \left( 1 + \alpha_y^2 \right) + @@ -1894,11 +1894,32 @@ eqref:eq-solution-2d-full показывает удовлетворительн ограничения на амплитуду волн. #+name: fig-velocity-field-2d +#+name: fig-velocity-field-2d +#+header: :width 8 :height 11 +#+begin_src R :file build/large-and-small-amplitude-velocity-field-comparison-ru.pdf +source(file.path("R", "velocity-potentials.R")) +linetypes = c("solid", "dashed") +par(mfrow=c(2, 1)) +arma.plot_velocity( + file.path("data", "velocity", "low-amp"), + file.path("data", "velocity", "low-amp-0"), + linetypes=linetypes, + ylim=c(-2,2) +) +arma.plot_velocity( + file.path("data", "velocity", "high-amp"), + file.path("data", "velocity", "high-amp-0"), + linetypes=linetypes, + ylim=c(-2,2) +) +#+end_src + +#+label: fig-velocity-field-2d #+caption: Сравнение полей скоростей на поверхности моря, полученных по общей формуле (\(u_1\)) и формуле для волн малой амплитуды (\(u_2\)). Поле скоростей для поверхности волн малой амплитуды (сверху) и большой амплитуды (снизу). -#+begin_figure -[[file:build/low-amp-nocolor.eps]] -[[file:build/high-amp-nocolor.eps]] -#+end_figure +#+attr_latex: :width \textwidth +#+RESULTS: fig-velocity-field-2d +[[file:build/large-and-small-amplitude-velocity-field-comparison-ru.pdf]] + *** Нефизическая природа модели Благодаря своей нефизической природе модель АРСС не включает в себя понятие @@ -2440,15 +2461,16 @@ GotoBLAS и основанная на ней LAPACK, для непрерывно #+name: tab-arma-libs #+caption: Список библиотек, используемых в реализации модели АРСС. -#+attr_latex: :booktabs t :align lp{0.6\linewidth} -| Library | What it is used for | -|--------------------------------------------------------+----------------------------------| +#+attr_latex: :booktabs t +| Библиотека | Назначение | +|--------------------------------------------------------------+----------------------------------| | DCMT\nbsp{}cite:matsumoto1998dynamic | параллельный ГПСЧ | | Blitz\nbsp{}cite:veldhuizen1997will,veldhuizen2000techniques | многомерные массивы | | GSL\nbsp{}cite:gsl2008scientific | вычисление ФПР, ФР, БПФ | -| | проверка стационарности процесса | +| | проверка стационарности процесса | | LAPACK, GotoBLAS\nbsp{}cite:goto2008high,goto2008anatomy | определение коэффициентов АР | | GL, GLUT\nbsp{}cite:kilgard1996opengl | трехмерная визуализация | +| CGAL\nbsp{}cite:fabri2009cgal | триангуляция волновых чисел | **** Производительность алгоритма распределения нагрузки. Программная реализация генерации взволнованной поверхности сбалансирована с diff --git a/arma-thesis.org b/arma-thesis.org @@ -825,18 +825,18 @@ process to ocean wave modelling. ** Pressure field determination formulae **** Small amplitude waves theory. -In\nbsp{}cite:stab2012,детярев1998моделирование,degtyarev1997analysis the authors -propose a solution for inverse problem of hydrodynamics of potential flow in the -framework of small-amplitude wave theory (under assumption that wave length is -much larger than height: \(\lambda \gg h\)). In that case inverse problem is -linear and reduces to Laplace equation with mixed boundary conditions, and -equation of motion is solely used to determine pressures for calculated velocity -potential derivatives. The assumption of small amplitudes means the slow decay -of wind wave coherence function, i.e. small change of local wave number in time -and space compared to the wavy surface elevation (\(z\) coordinate). This -assumption allows to calculate elevation \(z\) derivative as \(\zeta_z=k\zeta\), -where \(k\) is wave number. In two-dimensional case the solution is written -explicitly as +In\nbsp{}cite:stab2012,детярев1998моделирование,degtyarev1997analysis the +authors propose a solution for inverse problem of hydrodynamics of potential +flow in the framework of small-amplitude wave theory (under assumption that wave +length is much larger than height: \(\lambda \gg h\)). In that case inverse +problem is linear and reduces to Laplace equation with mixed boundary +conditions, and equation of motion is solely used to determine pressures for +calculated velocity potential derivatives. The assumption of small amplitudes +means the slow decay of wind wave coherence function, i.e. small change of local +wave number in time and space compared to the wavy surface elevation (\(z\) +coordinate). This assumption allows to calculate elevation \(z\) derivative as +\(\zeta_z=k\zeta\), where \(k\) is wave number. In two-dimensional case the +solution is written explicitly as \begin{align} \left.\frac{\partial\phi}{\partial x}\right|_{x,t}= & -\frac{1}{\sqrt{1+\alpha^{2}}}e^{-I(x)} @@ -844,7 +844,6 @@ explicitly as z+\alpha\dot{\alpha}}{\sqrt{1+\alpha^{2}}}e^{I(x)}dx,\label{eq-old-sol-2d}\\ I(x)= & \int\limits_{0}^x\frac{\partial\alpha/\partial z}{1+\alpha^{2}}dx,\nonumber \end{align} - where \(\alpha\) is wave slope. In three-dimensional case solution is written in the form of elliptic partial differential equation (PDE): \begin{align*} @@ -2107,11 +2106,31 @@ formula eqref:eq-solution-2d-full gives satisfactory results without restriction on wave amplitudes. #+name: fig-velocity-field-2d +#+header: :width 8 :height 11 +#+begin_src R :file build/large-and-small-amplitude-velocity-field-comparison.pdf +source(file.path("R", "velocity-potentials.R")) +linetypes = c("solid", "dashed") +par(mfrow=c(2, 1)) +arma.plot_velocity( + file.path("data", "velocity", "low-amp"), + file.path("data", "velocity", "low-amp-0"), + linetypes=linetypes, + ylim=c(-2,2) +) +arma.plot_velocity( + file.path("data", "velocity", "high-amp"), + file.path("data", "velocity", "high-amp-0"), + linetypes=linetypes, + ylim=c(-2,2) +) +#+end_src + +#+label: fig-velocity-field-2d #+caption: Comparison of velocity field on the ocean wavy surface obtained by generic formula (\(u_1\)) and formula for small-amplitude waves (\(u_2\)). Velocity field for realisations containing small-amplitude (top) and large-amplitude (bottom) waves. -#+begin_figure -[[file:build/low-amp-nocolor.eps]] -[[file:build/high-amp-nocolor.eps]] -#+end_figure +#+attr_latex: :width \textwidth +#+RESULTS: fig-velocity-field-2d +[[file:build/large-and-small-amplitude-velocity-field-comparison.pdf]] + *** Non-physical nature of ARMA model ARMA model, owing to its non-physical nature, does not have the notion of ocean wave; it simulates wavy surface as a whole instead. Motions of individual waves @@ -2568,21 +2587,22 @@ convergence rate and non-existence of periodicity allows to use far fewer coefficients compared to LH model. ARMA implementation uses several libraries of reusable mathematical functions -and numerical algorithms (listed in table\nbsp{}[[tab-arma-libs]]), and was implemented using -several parallel programming technologies (MPI, OpenMP, OpenCL) to find the most -efficient one. +and numerical algorithms (listed in table\nbsp{}[[tab-arma-libs]]), and was +implemented using several parallel programming technologies (MPI, OpenMP, +OpenCL) to find the most efficient one. #+name: tab-arma-libs #+caption: A list of mathematical libraries used in ARMA model implementation. -#+attr_latex: :booktabs t :align lp{0.6\linewidth} -| Library | What it is used for | -|--------------------------------------------------------+---------------------------------| +#+attr_latex: :booktabs t +| Library | What it is used for | +|--------------------------------------------------------------+---------------------------------| | DCMT\nbsp{}cite:matsumoto1998dynamic | parallel PRNG | | Blitz\nbsp{}cite:veldhuizen1997will,veldhuizen2000techniques | multidimensional arrays | | GSL\nbsp{}cite:gsl2008scientific | PDF, CDF, FFT computation | -| | checking process stationarity | +| | checking process stationarity | | LAPACK, GotoBLAS\nbsp{}cite:goto2008high,goto2008anatomy | finding AR coefficients | | GL, GLUT\nbsp{}cite:kilgard1996opengl | three-dimensional visualisation | +| CGAL\nbsp{}cite:fabri2009cgal | wave numbers triangulation | **** Performance of load balancing algorithm. Software implementation of wavy surface generation is balanced in terms of the @@ -3239,7 +3259,7 @@ margin, and in case of backup node failure within 50% margin for the number of node less than 6[fn::Measuring this margin for higher number of nodes does not make sense since time before failure is greater than total execution time with these numbers of nodes, and programme's execution finishes before a failure -occurs.]]. Increase in execution time of 50% is more than \(1/3\) of execution +occurs.]. Increase in execution time of 50% is more than \(1/3\) of execution time after which a failure occurs, but backup node failure needs some time to be discovered: it is detected only when subordinate kernel carrying the copy of the main kernel finishes its execution and tries to reach its parent. Instant diff --git a/data/verification/propagating-acf-00 b/data/verification/propagating-acf-00 @@ -1,10 +0,0 @@ -5 3.95945 3.13545 2.48293 1.9662 1.55702 1.23298 0.976388 0.773191 0.612282 -2.1393 1.69409 1.34153 1.06234 0.841259 0.666185 0.527545 0.417757 0.330817 0.261971 --1.30481 -1.03326 -0.818229 -0.647947 -0.513103 -0.406321 -0.321761 -0.254799 -0.201773 -0.159782 --2.45808 -1.94653 -1.54143 -1.22065 -0.966617 -0.765454 -0.606155 -0.480008 -0.380113 -0.301008 --1.2852 -1.01773 -0.805933 -0.63821 -0.505392 -0.400214 -0.316926 -0.25097 -0.198741 -0.157381 -0.441667 0.349751 0.276964 0.219325 0.173681 0.137536 0.108914 0.0862476 0.0682986 0.0540849 -1.18388 0.937499 0.742395 0.587895 0.465548 0.368663 0.29194 0.231184 0.183072 0.144973 -0.736101 0.582911 0.461601 0.365537 0.289465 0.229224 0.18152 0.143744 0.113829 0.0901403 --0.112499 -0.0890871 -0.0705471 -0.0558655 -0.0442393 -0.0350327 -0.027742 -0.0219686 -0.0173967 -0.0137763 --0.557869 -0.44177 -0.349833 -0.277029 -0.219377 -0.173722 -0.137569 -0.108939 -0.0862679 -0.0683146 diff --git a/data/verification/propagating-acf-01 b/data/verification/propagating-acf-01 @@ -1,10 +0,0 @@ -2.34017 1.85316 1.4675 1.1621 0.920252 0.728738 0.57708 0.456984 0.361881 0.286569 -3.16979 2.51013 1.98774 1.57407 1.24649 0.987084 0.781661 0.61899 0.490171 0.388162 -1.24496 0.985867 0.780698 0.618227 0.489567 0.387683 0.307002 0.243112 0.192518 0.152453 --0.92241 -0.730447 -0.578433 -0.458055 -0.362729 -0.287241 -0.227463 -0.180126 -0.14264 -0.112955 --1.57002 -1.24328 -0.984544 -0.77965 -0.617397 -0.48891 -0.387163 -0.30659 -0.242786 -0.192259 --0.765066 -0.605848 -0.479764 -0.37992 -0.300855 -0.238244 -0.188663 -0.1494 -0.118308 -0.0936872 -0.329862 0.261214 0.206853 0.163805 0.129715 0.10272 0.081343 0.0644147 0.0510093 0.0403937 -0.762034 0.603447 0.477863 0.378415 0.299663 0.2373 0.187915 0.148808 0.11784 0.0933159 -0.445234 0.352576 0.279202 0.221097 0.175084 0.138647 0.109793 0.0869443 0.0688502 0.0545218 --0.0968674 -0.0767083 -0.0607445 -0.0481029 -0.0380922 -0.0301648 -0.0238872 -0.018916 -0.0149794 -0.011862 diff --git a/data/verification/propagating-acf-02 b/data/verification/propagating-acf-02 @@ -1,10 +0,0 @@ --1.02284 -0.809979 -0.641414 -0.507929 -0.402224 -0.318517 -0.25223 -0.199738 -0.158171 -0.125254 -1.59226 1.26089 0.998488 0.790692 0.626141 0.495834 0.392646 0.310932 0.246224 0.194982 -2.00394 1.5869 1.25665 0.995127 0.788031 0.624033 0.494166 0.391325 0.309886 0.245395 -0.716323 0.567249 0.449198 0.355715 0.281687 0.223065 0.176643 0.139882 0.110771 0.0877184 --0.643678 -0.509722 -0.403643 -0.319641 -0.25312 -0.200443 -0.158729 -0.125696 -0.0995372 -0.0788225 --1.00001 -0.791894 -0.627093 -0.496588 -0.393243 -0.311405 -0.246598 -0.195279 -0.154639 -0.122457 --0.452081 -0.357998 -0.283495 -0.224497 -0.177777 -0.14078 -0.111482 -0.0882813 -0.069909 -0.0553603 -0.240238 0.190242 0.150651 0.119299 0.0944714 0.0748109 0.059242 0.0469131 0.03715 0.0294187 -0.489072 0.387291 0.306691 0.242866 0.192323 0.152299 0.120604 0.0955047 0.0756292 0.05989 -0.267857 0.212114 0.167971 0.133014 0.105332 0.0834117 0.0660528 0.0523066 0.041421 0.0328009 diff --git a/data/verification/propagating-acf-03 b/data/verification/propagating-acf-03 @@ -1,10 +0,0 @@ --2.46144 -1.94919 -1.54354 -1.22232 -0.967939 -0.7665 -0.606984 -0.480664 -0.380633 -0.301419 --0.546703 -0.432929 -0.342832 -0.271485 -0.214986 -0.170245 -0.134815 -0.106759 -0.0845412 -0.0669473 -1.07572 0.85185 0.674571 0.534186 0.423016 0.334982 0.265269 0.210064 0.166347 0.131729 -1.26334 1.00043 0.792229 0.627358 0.496799 0.39341 0.311537 0.246703 0.195361 0.154705 -0.406498 0.321901 0.25491 0.201861 0.159851 0.126585 0.100241 0.0793799 0.0628601 0.0497782 --0.444382 -0.351901 -0.278667 -0.220673 -0.174749 -0.138382 -0.109583 -0.0867778 -0.0687184 -0.0544174 --0.635176 -0.502989 -0.398312 -0.315419 -0.249777 -0.197796 -0.156632 -0.124036 -0.0982225 -0.0777814 --0.264866 -0.209744 -0.166094 -0.131528 -0.104156 -0.08248 -0.0653151 -0.0517223 -0.0409584 -0.0324345 -0.171661 0.135937 0.107647 0.0852445 0.0675042 0.0534559 0.0423312 0.0335216 0.0265454 0.021021 -0.312988 0.247852 0.196272 0.155425 0.12308 0.0974656 0.077182 0.0611196 0.0484 0.0383274 diff --git a/data/verification/propagating-acf-04 b/data/verification/propagating-acf-04 @@ -1,10 +0,0 @@ --1.64672 -1.30402 -1.03264 -0.817736 -0.647556 -0.512793 -0.406076 -0.321567 -0.254645 -0.201651 --1.53507 -1.2156 -0.962625 -0.762293 -0.603651 -0.478025 -0.378543 -0.299764 -0.23738 -0.187979 --0.28095 -0.222481 -0.176181 -0.139515 -0.110481 -0.0874887 -0.0692813 -0.0548632 -0.0434456 -0.0344041 -0.722211 0.571911 0.45289 0.358639 0.284003 0.224899 0.178095 0.141032 0.111681 0.0884394 -0.79419 0.628911 0.498028 0.394383 0.312308 0.247313 0.195845 0.155088 0.122812 0.0972537 -0.226714 0.179532 0.14217 0.112583 0.089153 0.0705994 0.0559069 0.0442721 0.0350586 0.0277625 --0.304025 -0.240754 -0.190651 -0.150974 -0.119555 -0.0946743 -0.0749715 -0.0593692 -0.0470138 -0.0372298 --0.40233 -0.318601 -0.252296 -0.199791 -0.158212 -0.125287 -0.0992132 -0.0785659 -0.0622155 -0.0492678 --0.153631 -0.121658 -0.0963401 -0.0762907 -0.0604138 -0.0478411 -0.0378848 -0.0300006 -0.0237572 -0.0188131 -0.120832 0.0956854 0.0757723 0.0600033 0.047516 0.0376274 0.0297967 0.0235957 0.0186852 0.0147966 diff --git a/data/verification/propagating-acf-05 b/data/verification/propagating-acf-05 @@ -1,10 +0,0 @@ -0.0404811 0.0320566 0.0253853 0.0201023 0.0159188 0.0126059 0.00998252 0.00790505 0.00625993 0.00495717 --1.08557 -0.859655 -0.680752 -0.539081 -0.426892 -0.338052 -0.267699 -0.211988 -0.167871 -0.132936 --0.954333 -0.755726 -0.598452 -0.473908 -0.375283 -0.297182 -0.235336 -0.18636 -0.147576 -0.116864 --0.135889 -0.107609 -0.0852146 -0.0674805 -0.0534371 -0.0423163 -0.0335098 -0.0265361 -0.0210137 -0.0166405 -0.482169 0.381824 0.302363 0.239438 0.189608 0.150149 0.118901 0.0941567 0.0745617 0.0590447 -0.497816 0.394215 0.312175 0.247208 0.195761 0.155021 0.12276 0.0972122 0.0769814 0.0609608 -0.123628 0.0978997 0.0775257 0.0613918 0.0486155 0.0384981 0.0304863 0.0241418 0.0191176 0.015139 --0.206384 -0.163433 -0.129421 -0.102487 -0.0811586 -0.0642687 -0.0508937 -0.0403022 -0.0319149 -0.0252731 --0.254133 -0.201245 -0.159364 -0.126199 -0.0999352 -0.0791377 -0.0626683 -0.0496264 -0.0392986 -0.0311202 --0.088045 -0.0697219 -0.0552121 -0.0437219 -0.0346229 -0.0274175 -0.0217116 -0.0171932 -0.0136151 -0.0107817 diff --git a/data/verification/propagating-acf-06 b/data/verification/propagating-acf-06 @@ -1,10 +0,0 @@ -1.09621 0.868076 0.68742 0.544361 0.431074 0.341363 0.270322 0.214065 0.169516 0.134238 --0.0296133 -0.0234504 -0.0185702 -0.0147055 -0.0116451 -0.00922166 -0.00730254 -0.0057828 -0.00457934 -0.00362633 --0.712761 -0.564428 -0.446965 -0.353947 -0.280287 -0.221956 -0.175765 -0.139186 -0.11022 -0.0872822 --0.591353 -0.468287 -0.370831 -0.293657 -0.232544 -0.184149 -0.145826 -0.115478 -0.0914458 -0.072415 --0.059068 -0.0467753 -0.0370409 -0.0293323 -0.0232279 -0.018394 -0.014566 -0.0115346 -0.00913416 -0.00723325 -0.320286 0.253631 0.200848 0.159049 0.125949 0.099738 0.0789814 0.0625446 0.0495284 0.039221 -0.311116 0.246369 0.195097 0.154495 0.122343 0.0968824 0.0767201 0.0607539 0.0481104 0.0380981 -0.06538 0.0517737 0.0409991 0.0324668 0.0257101 0.0203595 0.0161225 0.0127673 0.0101103 0.0080062 --0.13915 -0.110192 -0.0872596 -0.0690999 -0.0547195 -0.0433318 -0.034314 -0.0271729 -0.0215179 -0.0170398 --0.160073 -0.12676 -0.10038 -0.0794897 -0.0629471 -0.0498471 -0.0394734 -0.0312586 -0.0247534 -0.0196019 diff --git a/data/verification/propagating-acf-07 b/data/verification/propagating-acf-07 @@ -1,10 +0,0 @@ -1.00011 0.791978 0.627159 0.496641 0.393284 0.311438 0.246624 0.195299 0.154656 0.12247 -0.66996 0.530534 0.420124 0.332692 0.263455 0.208628 0.16521 0.130828 0.103601 0.0820409 --0.0538615 -0.0426523 -0.0337759 -0.0267468 -0.0211805 -0.0167726 -0.0132821 -0.0105179 -0.00832905 -0.00659569 --0.466215 -0.36919 -0.292358 -0.231515 -0.183335 -0.145181 -0.114967 -0.0910412 -0.0720946 -0.057091 --0.365173 -0.289177 -0.228996 -0.18134 -0.143601 -0.113716 -0.0900505 -0.0713101 -0.0564697 -0.0447178 --0.0201276 -0.0159388 -0.0126218 -0.00999506 -0.00791498 -0.00626779 -0.0049634 -0.00393046 -0.00311249 -0.00246475 -0.211772 0.1677 0.1328 0.105163 0.0832775 0.0659466 0.0522224 0.0413544 0.0327481 0.0259329 -0.19384 0.1535 0.121555 0.0962579 0.0762256 0.0603623 0.0478003 0.0378525 0.029975 0.0237369 -0.0330721 0.0261895 0.0207392 0.0164231 0.0130053 0.0102988 0.00815549 0.00645825 0.00511422 0.0040499 --0.0932542 -0.0738471 -0.0584787 -0.0463087 -0.0366714 -0.0290397 -0.0229962 -0.0182105 -0.0144207 -0.0114196 diff --git a/data/verification/propagating-acf-08 b/data/verification/propagating-acf-08 @@ -1,10 +0,0 @@ -0.23166 0.18345 0.145272 0.115039 0.0910983 0.0721398 0.0571268 0.0452381 0.0358236 0.0283683 -0.646161 0.511688 0.4052 0.320874 0.254097 0.201217 0.159341 0.126181 0.0999212 0.0791265 -0.407661 0.322822 0.25564 0.202438 0.160309 0.126947 0.100528 0.079607 0.0630399 0.0499207 --0.0563572 -0.0446287 -0.035341 -0.0279862 -0.0221619 -0.0175498 -0.0138975 -0.0110053 -0.00871498 -0.0069013 --0.303865 -0.240628 -0.190551 -0.150895 -0.119492 -0.0946247 -0.0749323 -0.0593381 -0.0469892 -0.0372103 --0.224683 -0.177924 -0.140896 -0.111574 -0.0883544 -0.0699669 -0.055406 -0.0438755 -0.0347445 -0.0275138 --0.00171459 -0.00135776 -0.0010752 -0.000851439 -0.000674246 -0.000533928 -0.000422812 -0.000334821 -0.000265141 -0.000209962 -0.139429 0.110412 0.0874343 0.0692383 0.0548291 0.0434186 0.0343827 0.0272273 0.021561 0.017074 -0.120387 0.0953333 0.0754934 0.0597825 0.0473411 0.0374889 0.0296871 0.0235089 0.0186165 0.0147422 -0.0155834 0.0123403 0.00977215 0.00773846 0.00612801 0.00485271 0.00384281 0.00304308 0.00240978 0.00190828 diff --git a/data/verification/propagating-acf-09 b/data/verification/propagating-acf-09 @@ -1,10 +0,0 @@ --0.425903 -0.337268 -0.267079 -0.211497 -0.167482 -0.132628 -0.105026 -0.0831693 -0.0658609 -0.0521546 -0.174281 0.138011 0.109289 0.0865452 0.0685342 0.0542716 0.0429771 0.0340331 0.0269505 0.0213418 -0.416215 0.329596 0.261004 0.206686 0.163673 0.129611 0.102637 0.0812773 0.0643627 0.0509681 -0.246873 0.195496 0.154812 0.122594 0.0970807 0.0768772 0.0608782 0.0482088 0.0381761 0.0302312 --0.0497492 -0.0393959 -0.0311972 -0.0247047 -0.0195634 -0.0154921 -0.012268 -0.0097149 -0.00769313 -0.00609211 --0.197383 -0.156306 -0.123777 -0.0980175 -0.077619 -0.0614657 -0.048674 -0.0385445 -0.030523 -0.0241708 --0.137707 -0.109049 -0.0863548 -0.0683834 -0.0541521 -0.0428825 -0.0339582 -0.0268911 -0.0212948 -0.0168631 -0.0059379 0.00470216 0.00372359 0.00294867 0.00233502 0.00184908 0.00146427 0.00115954 0.000918226 0.000727134 -0.0914359 0.0724071 0.0573384 0.0454057 0.0359563 0.0284734 0.0225478 0.0178554 0.0141395 0.0111969 -0.0745199 0.0590115 0.0467306 0.0370055 0.0293043 0.0232057 0.0183764 0.0145521 0.0115236 0.00912544 diff --git a/data/verification/propagating-acf-10 b/data/verification/propagating-acf-10 @@ -1,10 +0,0 @@ --0.547559 -0.433606 -0.343368 -0.27191 -0.215323 -0.170512 -0.135026 -0.106926 -0.0846736 -0.0670521 --0.252137 -0.199665 -0.158112 -0.125208 -0.0991506 -0.0785163 -0.0621763 -0.0492367 -0.03899 -0.0308758 -0.12761 0.101053 0.0800227 0.0633691 0.0501814 0.0397381 0.0314682 0.0249193 0.0197333 0.0156266 -0.267311 0.21168 0.167628 0.132742 0.105117 0.0832414 0.065918 0.0521997 0.0413364 0.0327339 -0.14872 0.11777 0.0932608 0.0738523 0.0584828 0.0463119 0.0366739 0.0290417 0.0229978 0.0182117 --0.0403648 -0.0319644 -0.0253123 -0.0200446 -0.0158731 -0.0125697 -0.00995383 -0.00788233 -0.00624194 -0.00494293 --0.127802 -0.101205 -0.0801431 -0.0634645 -0.0502569 -0.0397979 -0.0315155 -0.0249568 -0.019763 -0.0156501 --0.0840501 -0.0665584 -0.0527069 -0.041738 -0.0330519 -0.0261735 -0.0207265 -0.0164131 -0.0129974 -0.0102925 -0.00821973 0.00650912 0.0051545 0.0040818 0.00323233 0.00255965 0.00202696 0.00160513 0.00127109 0.00100656 -0.0597407 0.047308 0.0374627 0.0296664 0.0234925 0.0186034 0.0147319 0.011666 0.0092382 0.00731563 diff --git a/data/verification/propagating-acf-11 b/data/verification/propagating-acf-11 @@ -1,10 +0,0 @@ --0.238833 -0.18913 -0.14977 -0.118601 -0.093919 -0.0743734 -0.0588955 -0.0466388 -0.0369327 -0.0292467 --0.348025 -0.275597 -0.218243 -0.172824 -0.136858 -0.108376 -0.0858218 -0.0679614 -0.053818 -0.0426179 --0.148042 -0.117233 -0.0928355 -0.0735154 -0.0582161 -0.0461007 -0.0365067 -0.0289093 -0.0228929 -0.0181287 -0.0915602 0.0725056 0.0574164 0.0454674 0.0360052 0.0285121 0.0225785 0.0178796 0.0141587 0.0112121 -0.171185 0.13556 0.107348 0.0850081 0.0673171 0.0533077 0.0422138 0.0334287 0.0264718 0.0209628 -0.0890702 0.0705338 0.0558549 0.044231 0.035026 0.0277368 0.0219644 0.0173934 0.0137737 0.0109072 --0.0311293 -0.024651 -0.0195208 -0.0154584 -0.0122413 -0.00969377 -0.0076764 -0.00607886 -0.00481378 -0.00381198 --0.0824929 -0.0653253 -0.0517304 -0.0409648 -0.0324396 -0.0256886 -0.0203425 -0.016109 -0.0127566 -0.0101018 --0.05107 -0.0404418 -0.0320254 -0.0253606 -0.0200828 -0.0159034 -0.0125937 -0.00997281 -0.00789737 -0.00625384 -0.00802886 0.00635797 0.00503481 0.00398701 0.00315727 0.00250021 0.00197989 0.00156785 0.00124157 0.000983185 diff --git a/data/verification/propagating-acf-12 b/data/verification/propagating-acf-12 @@ -1,10 +0,0 @@ -0.128342 0.101632 0.0804816 0.0637325 0.0504691 0.039966 0.0316486 0.0250622 0.0198465 0.0157162 --0.163732 -0.129657 -0.102674 -0.0813068 -0.064386 -0.0509866 -0.0403757 -0.0319731 -0.0253192 -0.02005 --0.22059 -0.174683 -0.13833 -0.109542 -0.086745 -0.0686925 -0.0543968 -0.0430763 -0.0341117 -0.0270127 --0.0860888 -0.0681729 -0.0539854 -0.0427505 -0.0338536 -0.0268083 -0.0212292 -0.0168112 -0.0133126 -0.0105421 -0.0646617 0.051205 0.0405487 0.0321101 0.0254276 0.0201359 0.0159454 0.012627 0.00999918 0.00791825 -0.109318 0.0865675 0.0685519 0.0542855 0.0429882 0.0340419 0.0269574 0.0213473 0.0169047 0.0133867 -0.0529966 0.0419675 0.0332336 0.0263173 0.0208404 0.0165033 0.0130688 0.010349 0.0081953 0.00648977 --0.0232017 -0.0183732 -0.0145495 -0.0115216 -0.00912385 -0.00722508 -0.00572147 -0.00453077 -0.00358787 -0.0028412 --0.0530877 -0.0420396 -0.0332907 -0.0263626 -0.0208762 -0.0165317 -0.0130913 -0.0103668 -0.00820939 -0.00650093 --0.0308787 -0.0244525 -0.0193637 -0.0153339 -0.0121428 -0.00961572 -0.00761459 -0.00602991 -0.00477502 -0.00378129 diff --git a/data/verification/propagating-acf-13 b/data/verification/propagating-acf-13 @@ -1,10 +0,0 @@ -0.273631 0.216685 0.171591 0.135881 0.107603 0.0852095 0.0674765 0.0534339 0.0423138 0.0335078 -0.0704052 0.0557532 0.0441503 0.0349622 0.0276862 0.0219244 0.0173617 0.0137486 0.0108873 0.00862157 --0.111344 -0.088172 -0.0698225 -0.0552917 -0.0437849 -0.0346728 -0.027457 -0.0217429 -0.017218 -0.0136348 --0.139429 -0.110413 -0.0874347 -0.0692386 -0.0548293 -0.0434188 -0.0343828 -0.0272274 -0.0215611 -0.017074 --0.04949 -0.0391906 -0.0310346 -0.024576 -0.0194615 -0.0154113 -0.0122041 -0.00966428 -0.00765304 -0.00606037 -0.0450851 0.0357024 0.0282724 0.0223886 0.0177293 0.0140396 0.0111178 0.0088041 0.00697188 0.00552096 -0.0696148 0.0551272 0.0436547 0.0345697 0.0273754 0.0216783 0.0171668 0.0135942 0.0107651 0.00852478 -0.0312984 0.0247849 0.0196269 0.0155423 0.0123078 0.00974642 0.00771809 0.00611187 0.00483993 0.00383269 --0.016872 -0.0133608 -0.0105803 -0.00837841 -0.00663477 -0.00525401 -0.00416059 -0.00329473 -0.00260906 -0.00206609 --0.0340646 -0.0269754 -0.0213615 -0.016916 -0.0133956 -0.0106078 -0.00840023 -0.00665205 -0.00526769 -0.00417143 diff --git a/data/verification/propagating-acf-14 b/data/verification/propagating-acf-14 @@ -1,10 +0,0 @@ -0.173654 0.137515 0.108897 0.0862343 0.068288 0.0540766 0.0428227 0.0339108 0.0268536 0.0212651 -0.171131 0.135517 0.107315 0.0849813 0.0672958 0.0532909 0.0422005 0.0334181 0.0264635 0.0209561 -0.0375436 0.0297304 0.0235432 0.0186436 0.0147637 0.0116912 0.00925815 0.00733143 0.00580568 0.00459746 --0.0751878 -0.0595404 -0.0471494 -0.0373372 -0.0295669 -0.0234137 -0.0185411 -0.0146825 -0.0116269 -0.00920723 --0.0878829 -0.0695935 -0.0551104 -0.0436414 -0.0345591 -0.027367 -0.0216717 -0.0171616 -0.0135901 -0.0107618 --0.0280536 -0.0222154 -0.0175921 -0.013931 -0.0110318 -0.008736 -0.00691795 -0.00547825 -0.00433817 -0.00343535 -0.0311043 0.0246312 0.0195052 0.015446 0.0122315 0.00968599 0.00767024 0.00607398 0.00480992 0.00380893 -0.0442087 0.0350084 0.0277228 0.0219534 0.0173847 0.0137667 0.0109017 0.00863297 0.00683636 0.00541364 -0.0183251 0.0145114 0.0114915 0.00909996 0.00720617 0.00570649 0.00451891 0.00357848 0.00283376 0.00224402 --0.0120417 -0.00953569 -0.00755121 -0.00597973 -0.00473528 -0.00374982 -0.00296944 -0.00235147 -0.00186211 -0.00147458 diff --git a/data/verification/propagating-acf-15 b/data/verification/propagating-acf-15 @@ -1,10 +0,0 @@ --0.0133048 -0.0105359 -0.00834329 -0.00660696 -0.00523198 -0.00414315 -0.00328092 -0.00259813 -0.00205743 -0.00162926 -0.114943 0.0910221 0.0720795 0.0570789 0.0452002 0.0357936 0.0283446 0.0224458 0.0177746 0.0140755 -0.106702 0.0844964 0.0669118 0.0529867 0.0419596 0.0332274 0.0263124 0.0208365 0.0165002 0.0130664 -0.0192277 0.0152262 0.0120575 0.00954819 0.00756111 0.00598757 0.00474149 0.00375473 0.00297334 0.00235455 --0.0504582 -0.0399574 -0.0316418 -0.0250568 -0.0198422 -0.0157129 -0.0124429 -0.00985336 -0.00780278 -0.00617894 --0.0552356 -0.0437405 -0.0346376 -0.0274292 -0.0217209 -0.0172005 -0.0136209 -0.0107863 -0.00854153 -0.00676395 --0.0156243 -0.0123728 -0.00979786 -0.00775882 -0.00614413 -0.00486547 -0.00385292 -0.00305108 -0.00241612 -0.0019133 -0.0212676 0.0168416 0.0133367 0.0105612 0.00836327 0.00662279 0.00524452 0.00415308 0.00328878 0.00260435 -0.0279969 0.0221705 0.0175566 0.0139029 0.0110095 0.00871833 0.00690396 0.00546717 0.0043294 0.0034284 -0.0106209 0.00841055 0.00666023 0.00527416 0.00417655 0.00330737 0.00261907 0.00207402 0.00164239 0.00130059 diff --git a/data/verification/propagating-acf-16 b/data/verification/propagating-acf-16 @@ -1,10 +0,0 @@ --0.124059 -0.0982409 -0.077796 -0.0616058 -0.048785 -0.0386323 -0.0305925 -0.0242259 -0.0191842 -0.0151918 --0.00238854 -0.00189146 -0.00149783 -0.00118612 -0.000939272 -0.0007438 -0.000589007 -0.000466429 -0.00036936 -0.000292492 -0.075752 0.0599873 0.0475033 0.0376173 0.0297888 0.0235894 0.0186802 0.0147927 0.0117142 0.00927632 -0.0663203 0.0525184 0.0415887 0.0329337 0.0260798 0.0206524 0.0163544 0.0129509 0.0102557 0.00812135 -0.00924832 0.00732365 0.00579952 0.00459258 0.00363682 0.00287996 0.00228061 0.00180599 0.00143014 0.00113252 --0.0336748 -0.0266667 -0.0211171 -0.0167224 -0.0132423 -0.0104864 -0.0083041 -0.00657593 -0.00520741 -0.0041237 --0.0346157 -0.0274118 -0.0217071 -0.0171896 -0.0136123 -0.0107794 -0.00853612 -0.00675966 -0.00535291 -0.00423891 --0.00850423 -0.00673441 -0.00533291 -0.00422307 -0.00334421 -0.00264825 -0.00209712 -0.00166068 -0.00131508 -0.0010414 -0.0144299 0.0114269 0.00904882 0.00716567 0.00567442 0.00449351 0.00355836 0.00281783 0.00223141 0.00176703 -0.0176808 0.0140013 0.0110875 0.00878005 0.00695283 0.00550587 0.00436004 0.00345267 0.00273414 0.00216513 diff --git a/data/verification/propagating-acf-17 b/data/verification/propagating-acf-17 @@ -1,10 +0,0 @@ --0.107577 -0.0851891 -0.0674604 -0.0534212 -0.0423037 -0.0334998 -0.0265282 -0.0210074 -0.0166355 -0.0131735 --0.0761075 -0.0602688 -0.0477262 -0.0377939 -0.0299286 -0.0237001 -0.0187679 -0.0148621 -0.0117691 -0.00931985 -0.00233368 0.00184801 0.00146342 0.00115887 0.000917696 0.000726714 0.000575477 0.000455714 0.000360875 0.000285774 -0.0497232 0.0393753 0.0311809 0.0246918 0.0195532 0.015484 0.0122616 0.00970981 0.0076891 0.00608892 -0.0410857 0.0325353 0.0257644 0.0204025 0.0161566 0.0127942 0.0101316 0.00802311 0.00635342 0.00503121 -0.00397695 0.0031493 0.0024939 0.00197489 0.0015639 0.00123843 0.000980704 0.000776609 0.000614989 0.000487003 --0.0223612 -0.0177076 -0.0140225 -0.0111043 -0.00879334 -0.00696335 -0.00551421 -0.00436664 -0.0034579 -0.00273827 --0.0216288 -0.0171276 -0.0135632 -0.0107406 -0.00850534 -0.00673529 -0.0053336 -0.00422363 -0.00334464 -0.00264859 --0.00448574 -0.00355221 -0.00281296 -0.00222755 -0.00176397 -0.00139687 -0.00110617 -0.000875964 -0.000693667 -0.000549308 -0.00972467 0.00770087 0.00609824 0.00482913 0.00382414 0.00302829 0.00239807 0.00189901 0.00150381 0.00119085 diff --git a/data/verification/propagating-acf-18 b/data/verification/propagating-acf-18 @@ -1,10 +0,0 @@ --0.0209692 -0.0166053 -0.0131496 -0.010413 -0.00824595 -0.00652989 -0.00517095 -0.00409482 -0.00324264 -0.00256782 --0.0697069 -0.0552002 -0.0437125 -0.0346154 -0.0274116 -0.021707 -0.0171895 -0.0136122 -0.0107794 -0.00853606 --0.0465 -0.0368229 -0.0291597 -0.0230912 -0.0182857 -0.0144803 -0.0114668 -0.00908041 -0.00719068 -0.00569423 -0.00392149 0.00310539 0.00245912 0.00194735 0.00154209 0.00122116 0.000967028 0.000765779 0.000606412 0.000480212 -0.0325154 0.0257486 0.02039 0.0161466 0.0127864 0.0101254 0.00801819 0.00634952 0.00502812 0.00398171 -0.0253649 0.0200862 0.015906 0.0125958 0.00997451 0.00789871 0.00625491 0.0049532 0.00392238 0.0031061 -0.00131521 0.00104151 0.000824757 0.000653116 0.000517196 0.000409562 0.000324328 0.000256832 0.000203383 0.000161056 --0.0147806 -0.0117046 -0.00926875 -0.00733982 -0.00581233 -0.00460272 -0.00364485 -0.00288632 -0.00228564 -0.00180998 --0.0134728 -0.010669 -0.00844864 -0.00669039 -0.00529806 -0.00419547 -0.00332235 -0.00263093 -0.00208341 -0.00164983 --0.00226019 -0.00178982 -0.00141734 -0.00112238 -0.000888798 -0.00070383 -0.000557355 -0.000441364 -0.000349512 -0.000276775 diff --git a/data/verification/propagating-acf-19 b/data/verification/propagating-acf-19 @@ -1,10 +0,0 @@ -0.0495093 0.0392059 0.0310467 0.0245856 0.0194691 0.0154173 0.0122088 0.00966804 0.00765603 0.00606273 --0.0163375 -0.0129375 -0.0102451 -0.00811296 -0.00642457 -0.00508755 -0.00402878 -0.00319035 -0.0025264 -0.00200063 --0.045027 -0.0356564 -0.028236 -0.0223598 -0.0177065 -0.0140216 -0.0111035 -0.00879277 -0.00696291 -0.00551385 --0.0282854 -0.0223989 -0.0177375 -0.0140461 -0.011123 -0.00880818 -0.00697511 -0.00552351 -0.00437401 -0.00346373 -0.00403155 0.00319255 0.00252814 0.00200201 0.00158537 0.00125544 0.000994169 0.000787272 0.000623432 0.00049369 -0.0211874 0.0167781 0.0132864 0.0105213 0.00833174 0.00659782 0.00522474 0.00413742 0.00327638 0.00259453 -0.0156023 0.0123553 0.00978403 0.00774787 0.00613546 0.00485861 0.00384748 0.00304678 0.00241271 0.0019106 -6.48268e-05 5.13356e-05 4.06522e-05 3.2192e-05 2.54925e-05 2.01873e-05 1.59861e-05 1.26592e-05 1.00247e-05 7.93846e-06 --0.00972856 -0.00770395 -0.00610068 -0.00483106 -0.00382566 -0.0030295 -0.00239903 -0.00189977 -0.00150441 -0.00119133 --0.00836557 -0.00662461 -0.00524596 -0.00415422 -0.00328969 -0.00260507 -0.00206292 -0.00163361 -0.00129364 -0.00102442 diff --git a/data/verification/propagating-elevation b/data/verification/propagating-elevation @@ -1,100 +0,0 @@ - -inf -11.4135 - -4.96756 -5.07505 - -4.38371 -4.44302 - -4.01319 -4.04595 - -3.73441 -3.75166 - -3.50761 -3.5137 - -3.31454 -3.30893 - -3.14523 -3.13463 - -2.99361 -2.9721 - -2.8557 -2.8336 - -2.72874 -2.70275 - -2.61073 -2.58451 - -2.50017 -2.47352 - -2.39591 -2.36968 - -2.29706 -2.26979 - -2.20289 -2.17675 - -2.1128 -2.08986 - -2.02632 -2.00366 - -1.94302 -1.91781 - -1.86258 -1.83694 - -1.78469 -1.75819 - -1.70909 -1.68283 - -1.63557 -1.60807 - -1.56394 -1.53555 - -1.49402 -1.46622 - -1.42566 -1.39989 - -1.35873 -1.33412 - -1.2931 -1.26844 - -1.22866 -1.20411 - -1.16533 -1.14287 - -1.103 -1.0821 - -1.04159 -1.02153 - -0.98103 -0.963261 - -0.921246 -0.903721 - -0.862174 -0.844809 - -0.803752 -0.790091 - -0.745924 -0.734905 - -0.688637 -0.678367 - -0.631839 -0.622448 - -0.575483 -0.566256 - -0.519524 -0.512872 - -0.463919 -0.458106 - -0.408625 -0.403973 - -0.353603 -0.349034 - -0.298815 -0.295014 - -0.244221 -0.241875 - -0.189787 -0.188947 - -0.135475 -0.137748 - -0.08125 -0.0848158 - -0.0270776 -0.032671 - 0.0270774 0.0184213 - 0.08125 0.0700947 - 0.135475 0.121983 - 0.189787 0.173595 - 0.244221 0.226265 - 0.298815 0.278153 - 0.353603 0.33329 - 0.408625 0.38841 - 0.463919 0.443948 - 0.519524 0.498915 - 0.575483 0.553348 - 0.631839 0.608506 - 0.688636 0.663368 - 0.745924 0.721287 - 0.803752 0.779772 - 0.862174 0.838751 - 0.921247 0.899341 - 0.98103 0.957449 - 1.04159 1.01862 - 1.103 1.07931 - 1.16533 1.14059 - 1.22866 1.20312 - 1.2931 1.267 - 1.35872 1.33302 - 1.42566 1.39676 - 1.49402 1.46472 - 1.56394 1.53513 - 1.63557 1.606 - 1.70909 1.68 - 1.78469 1.7549 - 1.86258 1.83321 - 1.94302 1.91281 - 2.02632 1.9941 - 2.1128 2.07926 - 2.20289 2.16956 - 2.29706 2.26657 - 2.39591 2.36611 - 2.50017 2.47389 - 2.61073 2.58465 - 2.72874 2.70391 - 2.8557 2.8354 - 2.99361 2.97988 - 3.14523 3.13425 - 3.31454 3.31171 - 3.50761 3.50987 - 3.73441 3.74994 - 4.01319 4.04454 - 4.3837 4.43229 - 4.96756 5.02352 - inf 9.81164 diff --git a/data/verification/propagating-wave-height-x b/data/verification/propagating-wave-height-x @@ -1,100 +0,0 @@ - 0 0.096096 - 0.278142 0.27121 - 0.394359 0.356252 - 0.484237 0.422578 - 0.560606 0.478432 - 0.628424 0.524601 - 0.69023 0.594153 - 0.747528 0.660575 - 0.801299 0.710557 - 0.852221 0.767636 - 0.900791 0.813655 - 0.94738 0.846924 - 0.992279 0.922394 - 1.03572 0.954157 - 1.07789 0.994446 - 1.11894 1.03433 - 1.159 1.06711 - 1.19819 1.10575 - 1.23659 1.13454 - 1.27429 1.17026 - 1.31136 1.21533 - 1.34786 1.24567 - 1.38386 1.2829 - 1.41939 1.31977 - 1.45451 1.36316 - 1.48926 1.39716 - 1.52367 1.42731 - 1.55778 1.45123 - 1.59162 1.47951 - 1.62522 1.52553 - 1.65861 1.56237 - 1.69181 1.59175 - 1.72486 1.62576 - 1.75776 1.64915 - 1.79055 1.68204 - 1.82324 1.72676 - 1.85586 1.75282 - 1.88842 1.79113 - 1.92095 1.82556 - 1.95346 1.85166 - 1.98597 1.87766 - 2.0185 1.90579 - 2.05106 1.93964 - 2.08368 1.98438 - 2.11638 2.03125 - 2.14916 2.06323 - 2.18204 2.10822 - 2.21505 2.15327 - 2.2482 2.1931 - 2.28152 2.23871 - 2.31501 2.27446 - 2.3487 2.30384 - 2.38261 2.32584 - 2.41676 2.37024 - 2.45116 2.40489 - 2.48585 2.45256 - 2.52084 2.48537 - 2.55616 2.52356 - 2.59183 2.57379 - 2.62787 2.62103 - 2.66433 2.66939 - 2.70122 2.70136 - 2.73858 2.74126 - 2.77643 2.78194 - 2.81483 2.82158 - 2.85379 2.86282 - 2.89338 2.90134 - 2.93362 2.95234 - 2.97457 2.9913 - 3.01627 3.05609 - 3.0588 3.1063 - 3.1022 3.1491 - 3.14655 3.18463 - 3.19192 3.25101 - 3.2384 3.2986 - 3.28608 3.35545 - 3.33506 3.41214 - 3.38546 3.4635 - 3.43742 3.509 - 3.49108 3.57217 - 3.54662 3.64908 - 3.60423 3.71272 - 3.66416 3.77148 - 3.72666 3.83453 - 3.79207 3.89064 - 3.86077 3.96207 - 3.93323 4.06471 - 4.01001 4.17987 - 4.09185 4.27106 - 4.17966 4.35272 - 4.27462 4.45046 - 4.37835 4.59511 - 4.49305 4.69141 - 4.62192 4.80652 - 4.76985 4.99635 - 4.94488 5.21823 - 5.16179 5.47366 - 5.45287 5.83586 - 5.9174 6.2269 - inf 9.53821 diff --git a/data/verification/propagating-wave-height-y b/data/verification/propagating-wave-height-y @@ -1,100 +0,0 @@ - 0 0.032342 - 0.397547 0.381836 - 0.563656 0.495197 - 0.692118 0.591944 - 0.801271 0.675616 - 0.898203 0.751971 - 0.986541 0.824334 - 1.06844 0.890661 - 1.14529 0.956505 - 1.21808 1.02339 - 1.2875 1.08546 - 1.35408 1.15268 - 1.41826 1.21011 - 1.48035 1.27091 - 1.54062 1.32444 - 1.59929 1.38286 - 1.65655 1.43914 - 1.71256 1.49632 - 1.76745 1.55414 - 1.82133 1.60796 - 1.87432 1.65765 - 1.92649 1.71474 - 1.97794 1.76878 - 2.02873 1.81959 - 2.07893 1.87257 - 2.12859 1.92009 - 2.17777 1.97226 - 2.22653 2.02472 - 2.27489 2.07569 - 2.32292 2.12127 - 2.37064 2.17603 - 2.4181 2.22876 - 2.46533 2.27979 - 2.51236 2.33138 - 2.55922 2.38122 - 2.60595 2.42927 - 2.65257 2.48598 - 2.69911 2.5428 - 2.7456 2.59414 - 2.79207 2.64278 - 2.83853 2.69307 - 2.88503 2.74175 - 2.93157 2.79048 - 2.9782 2.84223 - 3.02492 2.89253 - 3.07177 2.94378 - 3.11878 2.99584 - 3.16596 3.04887 - 3.21335 3.10222 - 3.26096 3.15537 - 3.30883 3.20821 - 3.35698 3.25954 - 3.40545 3.31404 - 3.45426 3.37262 - 3.50343 3.42826 - 3.55301 3.4828 - 3.60302 3.53878 - 3.6535 3.60054 - 3.70448 3.65724 - 3.756 3.71252 - 3.80811 3.77039 - 3.86084 3.82574 - 3.91423 3.88332 - 3.96834 3.94406 - 4.02322 4.0069 - 4.07891 4.06896 - 4.13549 4.13956 - 4.193 4.20465 - 4.25153 4.27197 - 4.31114 4.34533 - 4.37192 4.42016 - 4.43396 4.49179 - 4.49735 4.56616 - 4.5622 4.64168 - 4.62863 4.71692 - 4.69677 4.78852 - 4.76678 4.87189 - 4.83882 4.96053 - 4.91308 5.05115 - 4.98978 5.1437 - 5.06916 5.2341 - 5.15151 5.33598 - 5.23716 5.43993 - 5.3265 5.55054 - 5.41999 5.65829 - 5.51818 5.7768 - 5.62174 5.90109 - 5.73149 6.03104 - 5.84846 6.17044 - 5.97396 6.31338 - 6.1097 6.47969 - 6.25795 6.66103 - 6.42189 6.86208 - 6.60608 7.07158 - 6.81752 7.33618 - 7.06769 7.64605 - 7.37771 8.03505 - 7.79375 8.50943 - 8.45771 9.36451 - inf 16.4912 diff --git a/data/verification/propagating-wave-length-x b/data/verification/propagating-wave-length-x @@ -1,100 +0,0 @@ - 0 1.0439 - 0.56459 1.34838 - 0.764859 1.47698 - 0.91436 1.54006 - 1.03853 1.59316 - 1.14696 1.64076 - 1.24444 1.68359 - 1.3338 1.72247 - 1.41685 1.77495 - 1.49483 1.80854 - 1.56864 1.8505 - 1.63895 1.90372 - 1.70629 1.93267 - 1.77106 1.97413 - 1.8336 2.00806 - 1.89417 2.03634 - 1.95301 2.06118 - 2.0103 2.09883 - 2.06621 2.13991 - 2.12088 2.16953 - 2.17443 2.23153 - 2.22697 2.27344 - 2.2786 2.30265 - 2.32939 2.32759 - 2.37943 2.36328 - 2.42878 2.40892 - 2.47751 2.44748 - 2.52567 2.47916 - 2.57331 2.51814 - 2.62049 2.56065 - 2.66724 2.59557 - 2.71361 2.64061 - 2.75964 2.67325 - 2.80536 2.70232 - 2.8508 2.73841 - 2.89601 2.77175 - 2.94101 2.80553 - 2.98583 2.83541 - 3.03051 2.86579 - 3.07506 2.90729 - 3.11951 2.94014 - 3.16389 2.97756 - 3.20823 3.00883 - 3.25256 3.03889 - 3.29688 3.08675 - 3.34124 3.13123 - 3.38566 3.16178 - 3.43015 3.1903 - 3.47475 3.22853 - 3.51948 3.25619 - 3.56437 3.29365 - 3.60943 3.33639 - 3.6547 3.38566 - 3.7002 3.43187 - 3.74597 3.48602 - 3.79202 3.52998 - 3.83839 3.56818 - 3.88511 3.61428 - 3.93221 3.6782 - 3.97973 3.72925 - 4.02769 3.77994 - 4.07614 3.82505 - 4.12512 3.87269 - 4.17466 3.92656 - 4.22481 3.97141 - 4.27562 4.0189 - 4.32715 4.05844 - 4.37943 4.1044 - 4.43254 4.16295 - 4.48653 4.2367 - 4.54148 4.28095 - 4.59747 4.34027 - 4.65457 4.42167 - 4.71288 4.48113 - 4.77249 4.56116 - 4.83353 4.62185 - 4.89612 4.70289 - 4.9604 4.80712 - 5.02653 4.88312 - 5.0947 4.97287 - 5.1651 5.06748 - 5.23799 5.16438 - 5.31364 5.23528 - 5.39237 5.30214 - 5.47458 5.43648 - 5.56072 5.55476 - 5.65136 5.72231 - 5.74718 5.81722 - 5.84903 5.92117 - 5.95802 6.04625 - 6.07556 6.18761 - 6.20356 6.33497 - 6.34463 6.50428 - 6.50258 6.65895 - 6.68319 6.93551 - 6.89594 7.14889 - 7.15823 7.54763 - 7.50798 8.07602 - 8.06117 8.99564 - inf 15.7248 diff --git a/data/verification/propagating-wave-length-y b/data/verification/propagating-wave-length-y @@ -1,100 +0,0 @@ - 0 1.00299 - 0.566699 1.34203 - 0.767716 1.4529 - 0.917775 1.52624 - 1.04241 1.59161 - 1.15124 1.64418 - 1.24909 1.69509 - 1.33878 1.74305 - 1.42214 1.78422 - 1.50041 1.82483 - 1.57449 1.86331 - 1.64507 1.90204 - 1.71266 1.9405 - 1.77767 1.97564 - 1.84045 2.01166 - 1.90125 2.04743 - 1.9603 2.08058 - 2.01781 2.11673 - 2.07393 2.15655 - 2.1288 2.19529 - 2.18256 2.23126 - 2.23529 2.26937 - 2.28711 2.30492 - 2.33809 2.34154 - 2.38832 2.3781 - 2.43785 2.41728 - 2.48676 2.45417 - 2.5351 2.49018 - 2.58292 2.52494 - 2.63027 2.56395 - 2.6772 2.60212 - 2.72374 2.63925 - 2.76994 2.67341 - 2.81583 2.71209 - 2.86145 2.75046 - 2.90683 2.78812 - 2.952 2.82351 - 2.99699 2.85842 - 3.04182 2.8966 - 3.08654 2.93136 - 3.13116 2.96842 - 3.17571 3.00366 - 3.22022 3.03782 - 3.2647 3.07356 - 3.3092 3.10874 - 3.35372 3.1447 - 3.3983 3.18109 - 3.44296 3.21775 - 3.48773 3.25703 - 3.53263 3.29688 - 3.57768 3.33812 - 3.62291 3.37585 - 3.66835 3.41976 - 3.71402 3.46045 - 3.75996 3.5036 - 3.80618 3.54545 - 3.85273 3.59042 - 3.89962 3.63917 - 3.9469 3.69087 - 3.99459 3.74258 - 4.04273 3.79249 - 4.09136 3.84147 - 4.14052 3.88882 - 4.19025 3.94333 - 4.24059 3.9951 - 4.29159 4.0462 - 4.34331 4.09681 - 4.39579 4.14665 - 4.44909 4.20044 - 4.50329 4.25528 - 4.55845 4.31608 - 4.61464 4.37685 - 4.67195 4.44218 - 4.73048 4.50209 - 4.79032 4.56878 - 4.85159 4.63873 - 4.91441 4.71513 - 4.97893 4.79352 - 5.04531 4.87534 - 5.11373 4.96017 - 5.18439 5.03975 - 5.25755 5.1261 - 5.33348 5.21424 - 5.41251 5.30135 - 5.49503 5.39758 - 5.58149 5.50546 - 5.67246 5.61989 - 5.76864 5.75119 - 5.87088 5.87829 - 5.98027 6.02398 - 6.09825 6.1633 - 6.22673 6.31898 - 6.36833 6.51921 - 6.52687 6.74025 - 6.70815 6.99838 - 6.92169 7.28563 - 7.18497 7.74485 - 7.53602 8.35797 - 8.09128 9.06513 - inf 16.7904 diff --git a/data/verification/propagating-wave-period b/data/verification/propagating-wave-period @@ -1,100 +0,0 @@ - 0 1.1622 - 0.939696 1.35728 - 1.18596 1.46739 - 1.35993 1.5497 - 1.49939 1.58797 - 1.618 1.67334 - 1.72242 1.70647 - 1.81647 1.74348 - 1.90256 1.78251 - 1.98234 1.80432 - 2.05696 1.83769 - 2.12729 1.88062 - 2.19398 1.93188 - 2.25755 1.98687 - 2.31842 2.03765 - 2.37691 2.08147 - 2.43332 2.10809 - 2.48786 2.14153 - 2.54074 2.15911 - 2.59212 2.23068 - 2.64215 2.26447 - 2.69096 2.31241 - 2.73866 2.34437 - 2.78534 2.37873 - 2.8311 2.4284 - 2.87601 2.44568 - 2.92014 2.46132 - 2.96356 2.48129 - 3.00633 2.49589 - 3.04849 2.51382 - 3.0901 2.59022 - 3.13121 2.6298 - 3.17184 2.66814 - 3.21205 2.72206 - 3.25187 2.80699 - 3.29134 2.83412 - 3.33048 2.86052 - 3.36932 2.92133 - 3.4079 2.94195 - 3.44624 2.97368 - 3.48437 3.01993 - 3.52232 3.06036 - 3.5601 3.07654 - 3.59775 3.13398 - 3.63528 3.16605 - 3.67272 3.19771 - 3.7101 3.25695 - 3.74742 3.28503 - 3.78472 3.36261 - 3.82202 3.40431 - 3.85933 3.44755 - 3.89668 3.47582 - 3.9341 3.53393 - 3.9716 3.5649 - 4.0092 3.5915 - 4.04693 3.64152 - 4.08482 3.70946 - 4.12289 3.73788 - 4.16115 3.81161 - 4.19965 3.87742 - 4.2384 3.96774 - 4.27743 4.01534 - 4.31678 4.10921 - 4.35647 4.14595 - 4.39654 4.17496 - 4.43702 4.2132 - 4.47796 4.27087 - 4.51938 4.35013 - 4.56134 4.4034 - 4.60388 4.44897 - 4.64705 4.48324 - 4.6909 4.62189 - 4.7355 4.70321 - 4.78092 4.81668 - 4.82722 4.87768 - 4.87448 5.06085 - 4.9228 5.08479 - 4.97227 5.10578 - 5.02302 5.19546 - 5.07516 5.24059 - 5.12884 5.32002 - 5.18424 5.35031 - 5.24155 5.5887 - 5.30099 5.81148 - 5.36283 6.03107 - 5.42741 6.18388 - 5.4951 6.24785 - 5.56639 6.33981 - 5.64187 6.44279 - 5.7223 6.55857 - 5.80865 6.73578 - 5.90224 6.89856 - 6.00487 7.1909 - 6.11915 7.34054 - 6.24903 7.64383 - 6.40099 8.0385 - 6.58683 8.36553 - 6.83219 8.56218 - 7.2149 9.54042 - inf 12.7159 diff --git a/data/verification/propagating-white-noise b/data/verification/propagating-white-noise @@ -1,100 +0,0 @@ - -inf -2.91867 - -1.38187 -1.38012 - -1.21945 -1.21837 - -1.11638 -1.11473 - -1.03883 -1.03751 - -0.975742 -0.975956 - -0.922034 -0.921673 - -0.874935 -0.874852 - -0.832759 -0.833102 - -0.794395 -0.794601 - -0.759077 -0.758173 - -0.726249 -0.726374 - -0.695494 -0.69499 - -0.666493 -0.666464 - -0.638994 -0.638701 - -0.612797 -0.612079 - -0.587737 -0.587434 - -0.563679 -0.563602 - -0.540508 -0.540944 - -0.51813 -0.518448 - -0.496462 -0.497018 - -0.475433 -0.475586 - -0.454982 -0.454764 - -0.435055 -0.435307 - -0.415604 -0.415722 - -0.396588 -0.397142 - -0.377969 -0.379189 - -0.359712 -0.361378 - -0.341789 -0.343738 - -0.32417 -0.325871 - -0.306831 -0.308648 - -0.289749 -0.291508 - -0.272902 -0.274521 - -0.256271 -0.257975 - -0.239839 -0.241981 - -0.223587 -0.225845 - -0.2075 -0.20958 - -0.191564 -0.193588 - -0.175764 -0.177555 - -0.160087 -0.162116 - -0.144521 -0.146746 - -0.129052 -0.131505 - -0.113671 -0.115857 - -0.098365 -0.100522 - -0.0831239 -0.0851791 - -0.0679372 -0.0697088 - -0.0527947 -0.0544895 - -0.0376862 -0.0388474 - -0.022602 -0.0233323 - -0.00753242 -0.00807243 - 0.00753237 0.00726735 - 0.022602 0.0220783 - 0.0376862 0.0373524 - 0.0527947 0.0523103 - 0.0679372 0.0673969 - 0.083124 0.0823485 - 0.098365 0.0977786 - 0.113671 0.112876 - 0.129052 0.128017 - 0.144521 0.143632 - 0.160087 0.159369 - 0.175764 0.175144 - 0.191564 0.191065 - 0.2075 0.207108 - 0.223587 0.222844 - 0.239839 0.239517 - 0.256271 0.256145 - 0.272902 0.272199 - 0.289748 0.28913 - 0.306831 0.306091 - 0.32417 0.323272 - 0.341789 0.341168 - 0.359712 0.358928 - 0.377969 0.37723 - 0.396588 0.396398 - 0.415604 0.415513 - 0.435055 0.434985 - 0.454982 0.454999 - 0.475433 0.474977 - 0.496462 0.496183 - 0.51813 0.51775 - 0.540508 0.540735 - 0.563679 0.563837 - 0.587737 0.587238 - 0.612797 0.613232 - 0.638994 0.639317 - 0.666492 0.666223 - 0.695494 0.695345 - 0.726249 0.725907 - 0.759077 0.758684 - 0.794395 0.793976 - 0.832759 0.831541 - 0.874935 0.872118 - 0.922034 0.920354 - 0.975742 0.973172 - 1.03883 1.03645 - 1.11638 1.11431 - 1.21945 1.21718 - 1.38187 1.38084 - inf 2.64534 diff --git a/data/verification/standing-acf-0 b/data/verification/standing-acf-0 @@ -1,10 +0,0 @@ -5 4.83608 4.67754 4.52419 4.37587 4.23241 4.09365 3.95945 3.82964 3.70409 -4.36625 4.22311 4.08466 3.95075 3.82123 3.69595 3.57479 3.45759 3.34424 3.2346 -2.94813 2.85148 2.758 2.66758 2.58013 2.49554 2.41373 2.3346 2.25806 2.18403 -1.06426 1.02937 0.995621 0.962981 0.93141 0.900875 0.871341 0.842775 0.815145 0.788422 --0.899271 -0.869789 -0.841274 -0.813694 -0.787018 -0.761216 -0.73626 -0.712123 -0.688777 -0.666196 --2.5662 -2.48207 -2.4007 -2.32199 -2.24587 -2.17224 -2.10103 -2.03215 -1.96552 -1.90109 --3.6406 -3.52124 -3.4058 -3.29415 -3.18615 -3.0817 -2.98067 -2.88295 -2.78844 -2.69702 --3.95761 -3.82786 -3.70237 -3.58099 -3.46359 -3.35004 -3.24022 -3.13399 -3.03124 -2.93187 --3.50617 -3.39122 -3.28004 -3.17251 -3.0685 -2.96791 -2.87061 -2.7765 -2.68547 -2.59743 --2.42115 -2.34178 -2.26501 -2.19075 -2.11893 -2.04946 -1.98227 -1.91729 -1.85443 -1.79364 diff --git a/data/verification/standing-acf-1 b/data/verification/standing-acf-1 @@ -1,10 +0,0 @@ -4.36625 4.22311 4.08466 3.95075 3.82123 3.69595 3.57479 3.45759 3.34424 3.2346 -3.81283 3.68783 3.56693 3.45 3.33689 3.22749 3.12168 3.01934 2.92036 2.82462 -2.57446 2.49006 2.40843 2.32947 2.2531 2.17923 2.10779 2.03869 1.97185 1.90721 -0.929364 0.898896 0.869427 0.840923 0.813355 0.78669 0.760899 0.735954 0.711826 0.68849 --0.785289 -0.759544 -0.734643 -0.710559 -0.687264 -0.664732 -0.64294 -0.621862 -0.601475 -0.581756 --2.24093 -2.16747 -2.09641 -2.02768 -1.96121 -1.89691 -1.83472 -1.77457 -1.7164 -1.66013 --3.17915 -3.07493 -2.97412 -2.87662 -2.78231 -2.69109 -2.60287 -2.51754 -2.435 -2.35517 --3.45598 -3.34268 -3.2331 -3.1271 -3.02459 -2.92543 -2.82952 -2.73676 -2.64704 -2.56026 --3.06176 -2.96139 -2.8643 -2.7704 -2.67957 -2.59173 -2.50676 -2.42458 -2.34509 -2.26821 --2.11427 -2.04496 -1.97792 -1.91307 -1.85036 -1.78969 -1.73102 -1.67427 -1.61938 -1.56629 diff --git a/data/verification/standing-acf-2 b/data/verification/standing-acf-2 @@ -1,10 +0,0 @@ -2.94813 2.85148 2.758 2.66758 2.58013 2.49554 2.41373 2.3346 2.25806 2.18403 -2.57446 2.49006 2.40842 2.32947 2.2531 2.17923 2.10779 2.03869 1.97185 1.90721 -1.7383 1.68131 1.62619 1.57288 1.52131 1.47144 1.4232 1.37654 1.33141 1.28776 -0.627515 0.606943 0.587045 0.567799 0.549184 0.53118 0.513766 0.496923 0.480632 0.464875 --0.530234 -0.512851 -0.496037 -0.479775 -0.464047 -0.448833 -0.434119 -0.419887 -0.406121 -0.392807 --1.5131 -1.46349 -1.41551 -1.36911 -1.32422 -1.28081 -1.23882 -1.19821 -1.15893 -1.12093 --2.14659 -2.07622 -2.00815 -1.94232 -1.87864 -1.81705 -1.75748 -1.69986 -1.64414 -1.59023 --2.33351 -2.25701 -2.18302 -2.11145 -2.04223 -1.97527 -1.91052 -1.84788 -1.7873 -1.72871 --2.06733 -1.99955 -1.934 -1.8706 -1.80927 -1.74996 -1.69259 -1.6371 -1.58343 -1.53152 --1.42758 -1.38078 -1.33551 -1.29173 -1.24938 -1.20842 -1.1688 -1.13048 -1.09342 -1.05758 diff --git a/data/verification/standing-acf-3 b/data/verification/standing-acf-3 @@ -1,10 +0,0 @@ -1.06426 1.02937 0.995621 0.962981 0.93141 0.900875 0.871341 0.842775 0.815145 0.788422 -0.929364 0.898896 0.869427 0.840923 0.813355 0.78669 0.760899 0.735954 0.711826 0.68849 -0.627515 0.606943 0.587045 0.567799 0.549184 0.53118 0.513766 0.496923 0.480632 0.464875 -0.226529 0.219103 0.21192 0.204972 0.198252 0.191753 0.185466 0.179386 0.173505 0.167817 --0.191411 -0.185136 -0.179067 -0.173196 -0.167518 -0.162026 -0.156714 -0.151577 -0.146607 -0.141801 --0.546219 -0.528312 -0.510992 -0.49424 -0.478037 -0.462365 -0.447207 -0.432545 -0.418365 -0.404649 --0.774907 -0.749502 -0.724931 -0.701164 -0.678178 -0.655944 -0.63444 -0.61364 -0.593523 -0.574065 --0.842383 -0.814767 -0.788056 -0.76222 -0.737231 -0.713062 -0.689685 -0.667075 -0.645205 -0.624053 --0.746293 -0.721827 -0.698163 -0.675274 -0.653136 -0.631724 -0.611013 -0.590982 -0.571607 -0.552868 --0.515347 -0.498452 -0.48211 -0.466305 -0.451018 -0.436231 -0.42193 -0.408098 -0.394719 -0.381778 diff --git a/data/verification/standing-acf-4 b/data/verification/standing-acf-4 @@ -1,10 +0,0 @@ --0.899271 -0.869789 -0.841274 -0.813694 -0.787018 -0.761216 -0.73626 -0.712123 -0.688777 -0.666196 --0.785289 -0.759544 -0.734643 -0.710559 -0.687264 -0.664732 -0.64294 -0.621862 -0.601475 -0.581756 --0.530234 -0.512851 -0.496038 -0.479775 -0.464047 -0.448833 -0.434119 -0.419887 -0.406121 -0.392807 --0.191411 -0.185136 -0.179067 -0.173196 -0.167518 -0.162026 -0.156714 -0.151577 -0.146607 -0.141801 -0.161738 0.156435 0.151307 0.146346 0.141548 0.136908 0.132419 0.128078 0.123879 0.119818 -0.461541 0.44641 0.431775 0.41762 0.403929 0.390686 0.377878 0.36549 0.353508 0.341918 -0.654776 0.63331 0.612548 0.592466 0.573043 0.554256 0.536085 0.51851 0.501512 0.48507 -0.711792 0.688457 0.665887 0.644056 0.622941 0.602519 0.582766 0.563661 0.545182 0.527309 -0.630598 0.609925 0.589929 0.570589 0.551883 0.53379 0.51629 0.499364 0.482993 0.467159 -0.435455 0.421179 0.407371 0.394015 0.381098 0.368604 0.35652 0.344832 0.333527 0.322593 diff --git a/data/verification/standing-acf-5 b/data/verification/standing-acf-5 @@ -1,10 +0,0 @@ --2.5662 -2.48207 -2.4007 -2.32199 -2.24587 -2.17224 -2.10103 -2.03215 -1.96552 -1.90109 --2.24093 -2.16747 -2.09641 -2.02768 -1.96121 -1.89691 -1.83472 -1.77457 -1.7164 -1.66013 --1.5131 -1.46349 -1.41551 -1.36911 -1.32422 -1.28081 -1.23882 -1.19821 -1.15893 -1.12093 --0.546219 -0.528312 -0.510992 -0.49424 -0.478037 -0.462365 -0.447207 -0.432545 -0.418365 -0.404649 -0.461541 0.44641 0.431775 0.41762 0.403929 0.390686 0.377878 0.36549 0.353508 0.341918 -1.31707 1.2739 1.23213 1.19174 1.15267 1.11488 1.07833 1.04298 1.00878 0.975713 -1.8685 1.80724 1.74799 1.69069 1.63526 1.58165 1.5298 1.47964 1.43114 1.38422 -2.0312 1.96461 1.9002 1.83791 1.77765 1.71938 1.66301 1.60849 1.55575 1.50475 -1.7995 1.74051 1.68345 1.62826 1.57488 1.52325 1.47331 1.42501 1.37829 1.3331 -1.24263 1.20189 1.16249 1.12438 1.08752 1.05187 1.01738 0.984028 0.951767 0.920565 diff --git a/data/verification/standing-acf-6 b/data/verification/standing-acf-6 @@ -1,10 +0,0 @@ --3.6406 -3.52124 -3.4058 -3.29415 -3.18615 -3.0817 -2.98067 -2.88295 -2.78844 -2.69702 --3.17915 -3.07493 -2.97412 -2.87662 -2.78231 -2.69109 -2.60287 -2.51754 -2.435 -2.35517 --2.14659 -2.07622 -2.00815 -1.94232 -1.87864 -1.81705 -1.75748 -1.69986 -1.64414 -1.59023 --0.774907 -0.749502 -0.724931 -0.701165 -0.678178 -0.655944 -0.63444 -0.61364 -0.593523 -0.574065 -0.654776 0.63331 0.612548 0.592466 0.573043 0.554256 0.536085 0.51851 0.501512 0.48507 -1.8685 1.80724 1.74799 1.69069 1.63526 1.58165 1.5298 1.47964 1.43114 1.38422 -2.65079 2.56388 2.47983 2.39853 2.3199 2.24384 2.17028 2.09913 2.03031 1.96375 -2.88161 2.78714 2.69577 2.60739 2.52191 2.43923 2.35926 2.28192 2.20711 2.13475 -2.55291 2.46921 2.38826 2.30997 2.23424 2.16099 2.09014 2.02162 1.95534 1.89124 -1.76289 1.70509 1.64919 1.59513 1.54283 1.49225 1.44333 1.39601 1.35025 1.30598 diff --git a/data/verification/standing-acf-7 b/data/verification/standing-acf-7 @@ -1,10 +0,0 @@ --3.95761 -3.82786 -3.70237 -3.58099 -3.46359 -3.35004 -3.24022 -3.13399 -3.03124 -2.93187 --3.45598 -3.34268 -3.2331 -3.1271 -3.02459 -2.92543 -2.82952 -2.73676 -2.64704 -2.56026 --2.33351 -2.25701 -2.18302 -2.11145 -2.04223 -1.97527 -1.91052 -1.84788 -1.7873 -1.72871 --0.842383 -0.814767 -0.788056 -0.76222 -0.737231 -0.713062 -0.689685 -0.667075 -0.645205 -0.624053 -0.711792 0.688457 0.665887 0.644056 0.622942 0.602519 0.582766 0.563661 0.545182 0.527309 -2.0312 1.96461 1.9002 1.83791 1.77765 1.71938 1.66301 1.60849 1.55576 1.50475 -2.88161 2.78714 2.69577 2.60739 2.52191 2.43923 2.35926 2.28192 2.20711 2.13475 -3.13253 3.02984 2.93051 2.83443 2.74151 2.65163 2.5647 2.48062 2.3993 2.32064 -2.77521 2.68422 2.59623 2.51111 2.42879 2.34916 2.27215 2.19766 2.12561 2.05592 -1.9164 1.85357 1.7928 1.73403 1.67718 1.62219 1.56901 1.51757 1.46782 1.4197 diff --git a/data/verification/standing-acf-8 b/data/verification/standing-acf-8 @@ -1,10 +0,0 @@ --3.50617 -3.39122 -3.28004 -3.17251 -3.0685 -2.96791 -2.87061 -2.7765 -2.68547 -2.59743 --3.06176 -2.96139 -2.8643 -2.7704 -2.67957 -2.59173 -2.50676 -2.42458 -2.34509 -2.26821 --2.06733 -1.99955 -1.934 -1.8706 -1.80927 -1.74996 -1.69259 -1.6371 -1.58343 -1.53152 --0.746293 -0.721827 -0.698162 -0.675274 -0.653136 -0.631724 -0.611013 -0.590982 -0.571607 -0.552868 -0.630598 0.609925 0.589929 0.570589 0.551883 0.53379 0.51629 0.499364 0.482993 0.467159 -1.7995 1.74051 1.68345 1.62826 1.57488 1.52325 1.47331 1.42501 1.37829 1.33311 -2.55291 2.46921 2.38826 2.30997 2.23424 2.16099 2.09014 2.02162 1.95534 1.89124 -2.77521 2.68422 2.59623 2.51111 2.42879 2.34916 2.27215 2.19766 2.12561 2.05592 -2.45864 2.37804 2.30008 2.22467 2.15174 2.08119 2.01296 1.94697 1.88314 1.82141 -1.69779 1.64213 1.5883 1.53623 1.48586 1.43715 1.39004 1.34447 1.30039 1.25776 diff --git a/data/verification/standing-acf-9 b/data/verification/standing-acf-9 @@ -1,10 +0,0 @@ --2.42115 -2.34178 -2.26501 -2.19075 -2.11893 -2.04946 -1.98227 -1.91729 -1.85443 -1.79364 --2.11427 -2.04496 -1.97792 -1.91307 -1.85036 -1.78969 -1.73102 -1.67427 -1.61938 -1.56629 --1.42758 -1.38078 -1.33551 -1.29173 -1.24938 -1.20842 -1.1688 -1.13048 -1.09342 -1.05758 --0.515347 -0.498451 -0.48211 -0.466305 -0.451018 -0.436231 -0.42193 -0.408098 -0.394719 -0.381778 -0.435454 0.421179 0.407371 0.394015 0.381098 0.368604 0.35652 0.344832 0.333527 0.322593 -1.24263 1.20189 1.16249 1.12438 1.08752 1.05187 1.01738 0.984028 0.951767 0.920565 -1.76289 1.70509 1.64919 1.59513 1.54283 1.49225 1.44333 1.39601 1.35025 1.30598 -1.9164 1.85357 1.7928 1.73403 1.67718 1.62219 1.56901 1.51757 1.46782 1.4197 -1.69779 1.64213 1.5883 1.53623 1.48586 1.43715 1.39004 1.34447 1.30039 1.25776 -1.1724 1.13396 1.09679 1.06083 1.02605 0.992413 0.959878 0.928409 0.897972 0.868533 diff --git a/data/verification/standing-elevation b/data/verification/standing-elevation @@ -1,100 +0,0 @@ - -inf -6.68929 - -3.89236 -3.98173 - -3.43487 -3.5135 - -3.14455 -3.20828 - -2.92611 -2.96946 - -2.7484 -2.77244 - -2.59712 -2.61511 - -2.46446 -2.47271 - -2.34566 -2.34598 - -2.2376 -2.22942 - -2.13812 -2.12925 - -2.04565 -2.03533 - -1.95902 -1.94305 - -1.87733 -1.85954 - -1.79987 -1.77708 - -1.72608 -1.7005 - -1.6555 -1.62916 - -1.58773 -1.56205 - -1.52247 -1.49632 - -1.45943 -1.43367 - -1.3984 -1.37203 - -1.33917 -1.31316 - -1.28156 -1.25617 - -1.22543 -1.20114 - -1.17065 -1.14592 - -1.11708 -1.09153 - -1.06464 -1.03905 - -1.01321 -0.988149 - -0.962726 -0.938942 - -0.913099 -0.892125 - -0.864259 -0.846444 - -0.816144 -0.798778 - -0.768691 -0.752243 - -0.721847 -0.704847 - -0.675561 -0.660571 - -0.629784 -0.617859 - -0.584473 -0.575303 - -0.539585 -0.530641 - -0.49508 -0.488449 - -0.450923 -0.444517 - -0.407076 -0.401627 - -0.363506 -0.358887 - -0.32018 -0.317157 - -0.277068 -0.276628 - -0.234138 -0.234848 - -0.191361 -0.192761 - -0.148708 -0.152242 - -0.106152 -0.111498 - -0.0636639 -0.0689104 - -0.0212168 -0.0277797 - 0.0212167 0.0131001 - 0.0636639 0.0559751 - 0.106152 0.0971082 - 0.148708 0.139996 - 0.191361 0.181018 - 0.234138 0.225924 - 0.277068 0.267472 - 0.32018 0.308668 - 0.363506 0.351441 - 0.407076 0.393353 - 0.450923 0.434832 - 0.495081 0.481115 - 0.539585 0.524456 - 0.584473 0.569584 - 0.629784 0.615255 - 0.675561 0.660944 - 0.721847 0.70686 - 0.768691 0.753719 - 0.816143 0.801266 - 0.864259 0.850533 - 0.913099 0.898413 - 0.962726 0.947082 - 1.01321 0.99596 - 1.06464 1.04528 - 1.11708 1.09996 - 1.17065 1.15465 - 1.22543 1.21195 - 1.28156 1.26701 - 1.33917 1.32463 - 1.3984 1.38201 - 1.45943 1.4431 - 1.52247 1.50754 - 1.58773 1.57161 - 1.6555 1.64327 - 1.72608 1.71335 - 1.79987 1.78558 - 1.87733 1.86584 - 1.95902 1.95077 - 2.04565 2.04073 - 2.13812 2.13461 - 2.2376 2.23758 - 2.34566 2.34995 - 2.46446 2.47327 - 2.59712 2.60296 - 2.7484 2.75763 - 2.92611 2.94394 - 3.14455 3.15951 - 3.43487 3.44709 - 3.89236 3.90132 - inf 6.83645 diff --git a/data/verification/standing-wave-height-x b/data/verification/standing-wave-height-x @@ -1,100 +0,0 @@ - 0 5.00577e-12 - 0.196055 0.100601 - 0.277973 0.174454 - 0.341326 0.197757 - 0.395156 0.215984 - 0.442959 0.223984 - 0.486524 0.257451 - 0.526912 0.279635 - 0.564814 0.289767 - 0.600708 0.308899 - 0.634943 0.329067 - 0.667783 0.352188 - 0.699431 0.376671 - 0.73005 0.393311 - 0.759773 0.406361 - 0.788709 0.433393 - 0.816948 0.470911 - 0.844568 0.487276 - 0.871637 0.504893 - 0.898211 0.527244 - 0.924342 0.55502 - 0.950073 0.574601 - 0.975444 0.59435 - 1.00049 0.610954 - 1.02525 0.631378 - 1.04974 0.643154 - 1.07399 0.662669 - 1.09804 0.671993 - 1.12189 0.686127 - 1.14557 0.728176 - 1.16911 0.768713 - 1.19251 0.789363 - 1.2158 0.814041 - 1.239 0.831881 - 1.26211 0.855926 - 1.28515 0.889121 - 1.30814 0.917002 - 1.3311 0.937085 - 1.35403 0.944855 - 1.37694 0.963735 - 1.39986 0.990989 - 1.42279 1.01548 - 1.44574 1.04407 - 1.46873 1.07946 - 1.49178 1.10438 - 1.51488 1.13921 - 1.53806 1.16006 - 1.56133 1.19283 - 1.5847 1.23218 - 1.60818 1.25835 - 1.63179 1.28035 - 1.65554 1.30928 - 1.67944 1.34528 - 1.70351 1.39031 - 1.72776 1.43873 - 1.75221 1.45741 - 1.77687 1.47346 - 1.80176 1.50428 - 1.82691 1.55402 - 1.85232 1.62092 - 1.87801 1.66132 - 1.90402 1.71366 - 1.93035 1.77118 - 1.95703 1.78904 - 1.9841 1.82554 - 2.01156 1.87532 - 2.03946 1.91767 - 2.06783 1.9632 - 2.09669 2.00081 - 2.12609 2.0471 - 2.15606 2.09661 - 2.18666 2.14881 - 2.21792 2.18753 - 2.2499 2.24352 - 2.28266 2.32486 - 2.31627 2.42519 - 2.35079 2.51907 - 2.38632 2.58311 - 2.42294 2.6312 - 2.46077 2.7158 - 2.49991 2.75382 - 2.54053 2.81528 - 2.58277 2.9518 - 2.62683 3.05015 - 2.67293 3.15125 - 2.72135 3.25325 - 2.77243 3.35568 - 2.82655 3.43918 - 2.88424 3.58121 - 2.94613 3.74843 - 3.01307 3.87969 - 3.08618 4.09433 - 3.16703 4.33776 - 3.25787 4.64352 - 3.36214 4.85586 - 3.48551 5.0574 - 3.6384 5.40894 - 3.84358 6.05885 - 4.17102 6.67864 - inf 8.85886 diff --git a/data/verification/standing-wave-height-y b/data/verification/standing-wave-height-y @@ -1,100 +0,0 @@ - 0 5.00577e-12 - 0.144894 0.127762 - 0.205436 0.160911 - 0.252257 0.189668 - 0.29204 0.217071 - 0.327369 0.242168 - 0.359565 0.262753 - 0.389414 0.283738 - 0.417425 0.306028 - 0.443953 0.328987 - 0.469254 0.346809 - 0.493524 0.365839 - 0.516914 0.387529 - 0.539543 0.405916 - 0.56151 0.426425 - 0.582895 0.446518 - 0.603765 0.466417 - 0.624178 0.483993 - 0.644183 0.505602 - 0.663822 0.522451 - 0.683134 0.538848 - 0.702151 0.56082 - 0.720901 0.578771 - 0.739413 0.595007 - 0.757708 0.611912 - 0.775808 0.633825 - 0.793734 0.650803 - 0.811503 0.668224 - 0.829132 0.686132 - 0.846636 0.704844 - 0.86403 0.72403 - 0.881327 0.738815 - 0.89854 0.753044 - 0.91568 0.771153 - 0.932761 0.789848 - 0.949792 0.81031 - 0.966784 0.830619 - 0.983747 0.850494 - 1.00069 0.867723 - 1.01763 0.887015 - 1.03456 0.905163 - 1.05151 0.922028 - 1.06847 0.941876 - 1.08547 0.957186 - 1.1025 0.979385 - 1.11957 0.995809 - 1.1367 1.0146 - 1.1539 1.03625 - 1.17117 1.05407 - 1.18852 1.07503 - 1.20597 1.0954 - 1.22352 1.12038 - 1.24119 1.14214 - 1.25898 1.16456 - 1.2769 1.1843 - 1.29497 1.20695 - 1.3132 1.23172 - 1.33159 1.25658 - 1.35018 1.2801 - 1.36895 1.30557 - 1.38794 1.32936 - 1.40716 1.35442 - 1.42662 1.38025 - 1.44634 1.40763 - 1.46635 1.43804 - 1.48664 1.46483 - 1.50726 1.49245 - 1.52823 1.51887 - 1.54956 1.54582 - 1.57129 1.57671 - 1.59344 1.6073 - 1.61605 1.64414 - 1.63915 1.67911 - 1.66279 1.71635 - 1.687 1.75069 - 1.71184 1.78091 - 1.73735 1.81318 - 1.76361 1.85282 - 1.79067 1.89265 - 1.81863 1.94336 - 1.84756 1.98583 - 1.87757 2.03263 - 1.90879 2.07569 - 1.94135 2.11935 - 1.97543 2.17264 - 2.01121 2.22552 - 2.04896 2.27797 - 2.08896 2.33808 - 2.13159 2.40275 - 2.17733 2.48157 - 2.22681 2.56084 - 2.28084 2.63683 - 2.34059 2.71416 - 2.40772 2.8089 - 2.48479 2.90981 - 2.57597 3.03609 - 2.68896 3.18793 - 2.84059 3.36027 - 3.08259 3.74498 - inf 6.03943 diff --git a/data/verification/standing-wave-length-x b/data/verification/standing-wave-length-x @@ -1,100 +0,0 @@ - 0 1.13773 - 0.581191 1.32043 - 0.787349 1.41377 - 0.941246 1.48045 - 1.06907 1.53189 - 1.18068 1.58275 - 1.28103 1.62872 - 1.37302 1.67937 - 1.45851 1.71144 - 1.53878 1.7512 - 1.61476 1.79059 - 1.68714 1.82999 - 1.75646 1.86523 - 1.82314 1.89649 - 1.88751 1.94184 - 1.94987 1.98216 - 2.01043 2.01254 - 2.06941 2.05336 - 2.12697 2.09222 - 2.18324 2.12766 - 2.23837 2.16594 - 2.29246 2.1939 - 2.3456 2.22336 - 2.39788 2.26128 - 2.44939 2.29478 - 2.5002 2.33144 - 2.55036 2.37764 - 2.59993 2.41417 - 2.64898 2.44856 - 2.69754 2.48348 - 2.74566 2.50579 - 2.7934 2.54702 - 2.84078 2.59011 - 2.88784 2.6302 - 2.93463 2.66351 - 2.98117 2.72623 - 3.02749 2.76417 - 3.07363 2.79846 - 3.11961 2.83354 - 3.16547 2.87935 - 3.21123 2.91102 - 3.25692 2.95447 - 3.30257 3.01145 - 3.34819 3.05294 - 3.39382 3.09484 - 3.43949 3.12346 - 3.48521 3.1585 - 3.53101 3.1909 - 3.57692 3.23235 - 3.62297 3.26669 - 3.66917 3.31425 - 3.71556 3.34463 - 3.76216 3.40751 - 3.809 3.44859 - 3.85611 3.48139 - 3.90352 3.52643 - 3.95125 3.55651 - 3.99935 3.59458 - 4.04783 3.64568 - 4.09674 3.71343 - 4.14612 3.7621 - 4.19599 3.8306 - 4.24641 3.86674 - 4.29741 3.91454 - 4.34904 3.98708 - 4.40134 4.05165 - 4.45438 4.08683 - 4.5082 4.16043 - 4.56287 4.23006 - 4.61845 4.28242 - 4.67502 4.3434 - 4.73265 4.42766 - 4.79143 4.51002 - 4.85145 4.58232 - 4.91282 4.69184 - 4.97566 4.77258 - 5.04009 4.83944 - 5.10626 4.92996 - 5.17433 5.04735 - 5.2445 5.13598 - 5.31698 5.24238 - 5.39201 5.31655 - 5.46988 5.44117 - 5.55093 5.60392 - 5.63555 5.82683 - 5.72423 5.92842 - 5.81753 6.09697 - 5.91616 6.21642 - 6.02102 6.37548 - 6.13321 6.53204 - 6.25421 6.75317 - 6.38596 6.94349 - 6.53119 7.32504 - 6.69378 7.58067 - 6.8797 7.86798 - 7.09871 8.16616 - 7.36871 8.47899 - 7.72874 9.17836 - 8.2982 10.3286 - inf 15.5001 diff --git a/data/verification/standing-wave-length-y b/data/verification/standing-wave-length-y @@ -1,100 +0,0 @@ - 0 1.02572 - 0.572747 1.33768 - 0.775909 1.44793 - 0.92757 1.52396 - 1.05354 1.59431 - 1.16353 1.64149 - 1.26242 1.68559 - 1.35307 1.73106 - 1.43732 1.77459 - 1.51642 1.82048 - 1.5913 1.856 - 1.66263 1.89519 - 1.73094 1.93272 - 1.79665 1.9676 - 1.86009 2.00233 - 1.92154 2.03573 - 1.98122 2.07177 - 2.03935 2.10854 - 2.09606 2.14559 - 2.15152 2.17993 - 2.20585 2.21549 - 2.25915 2.25171 - 2.31152 2.28962 - 2.36305 2.32537 - 2.41381 2.36246 - 2.46387 2.3976 - 2.5133 2.435 - 2.56216 2.47373 - 2.61049 2.50709 - 2.65834 2.54183 - 2.70577 2.58075 - 2.75281 2.62095 - 2.7995 2.65631 - 2.84589 2.69549 - 2.89199 2.73336 - 2.93785 2.77267 - 2.9835 2.80929 - 3.02897 2.8432 - 3.07429 2.88276 - 3.11948 2.91958 - 3.16458 2.95463 - 3.2096 2.99217 - 3.25458 3.02929 - 3.29955 3.06614 - 3.34451 3.10411 - 3.38952 3.14003 - 3.43457 3.18019 - 3.47971 3.21655 - 3.52495 3.25223 - 3.57033 3.29357 - 3.61586 3.33661 - 3.66158 3.38059 - 3.7075 3.42621 - 3.75366 3.47329 - 3.80009 3.51733 - 3.8468 3.56329 - 3.89384 3.61167 - 3.94124 3.65617 - 3.98902 3.70102 - 4.03722 3.75586 - 4.08588 3.80753 - 4.13503 3.85428 - 4.18471 3.90402 - 4.23497 3.95369 - 4.28585 4.00455 - 4.33739 4.05021 - 4.38966 4.09728 - 4.4427 4.14725 - 4.49658 4.20058 - 4.55135 4.24942 - 4.6071 4.30361 - 4.66389 4.36292 - 4.72181 4.42864 - 4.78096 4.49279 - 4.84144 4.56893 - 4.90336 4.64909 - 4.96686 4.73129 - 5.03207 4.81196 - 5.09915 4.89909 - 5.1683 4.98847 - 5.23973 5.07598 - 5.31367 5.17087 - 5.39041 5.27695 - 5.47028 5.38486 - 5.55367 5.5031 - 5.64106 5.65408 - 5.733 5.7982 - 5.83021 5.92966 - 5.93353 6.06873 - 6.0441 6.21759 - 6.16334 6.37052 - 6.29318 6.54662 - 6.4363 6.75174 - 6.59653 6.98053 - 6.77974 7.26755 - 6.99557 7.57996 - 7.26165 8.05499 - 7.61645 8.57428 - 8.17763 9.562 - inf 17.074 diff --git a/data/verification/standing-wave-period b/data/verification/standing-wave-period @@ -1,100 +0,0 @@ - 0 1.15402 - 0.912261 1.37052 - 1.15134 1.40026 - 1.32022 1.45422 - 1.45561 1.61425 - 1.57076 1.64725 - 1.67213 1.68845 - 1.76344 1.74248 - 1.84702 1.76606 - 1.92446 1.80237 - 1.9969 1.8372 - 2.06518 1.87383 - 2.12992 1.95724 - 2.19164 1.99163 - 2.25073 2.04166 - 2.30752 2.06076 - 2.36227 2.10746 - 2.41522 2.13331 - 2.46656 2.15683 - 2.51644 2.22303 - 2.56501 2.31644 - 2.61239 2.34933 - 2.6587 2.40194 - 2.70402 2.41804 - 2.74844 2.46807 - 2.79204 2.50642 - 2.83488 2.53251 - 2.87704 2.58397 - 2.91855 2.61491 - 2.95949 2.62716 - 2.99988 2.64416 - 3.03979 2.66931 - 3.07924 2.74231 - 3.11827 2.77294 - 3.15693 2.80677 - 3.19524 2.83492 - 3.23324 2.84718 - 3.27095 2.87151 - 3.3084 2.89026 - 3.34563 2.91959 - 3.38264 3.00287 - 3.41948 3.01528 - 3.45616 3.02502 - 3.49271 3.03341 - 3.52915 3.046 - 3.5655 3.08961 - 3.60178 3.10019 - 3.63801 3.13087 - 3.67422 3.17067 - 3.71043 3.22235 - 3.74665 3.23907 - 3.78291 3.29239 - 3.81924 3.32217 - 3.85564 3.34206 - 3.89215 3.35142 - 3.92878 3.39024 - 3.96556 3.46566 - 4.00251 3.52182 - 4.03966 3.54689 - 4.07703 3.60328 - 4.11465 3.67027 - 4.15255 3.69278 - 4.19075 3.70584 - 4.22928 3.79641 - 4.26818 3.84462 - 4.30748 3.8923 - 4.34722 3.92477 - 4.38743 3.98944 - 4.42817 4.04857 - 4.46946 4.12045 - 4.51137 4.2134 - 4.55395 4.25661 - 4.59725 4.27513 - 4.64133 4.48021 - 4.68628 4.53939 - 4.73217 4.64196 - 4.77907 4.75813 - 4.8271 4.80123 - 4.87637 4.85536 - 4.92698 4.93277 - 4.9791 4.98089 - 5.03288 5.10731 - 5.08851 5.20965 - 5.14622 5.56725 - 5.20626 5.79756 - 5.26895 5.91096 - 5.33467 6.15835 - 5.40388 6.26636 - 5.47715 6.42479 - 5.55523 6.47894 - 5.63906 6.56979 - 5.72992 6.64531 - 5.82955 6.7318 - 5.9405 7.20937 - 6.06659 7.33483 - 6.21411 7.913 - 6.39452 8.46226 - 6.63271 9.00564 - 7.00426 11.0818 - inf 13.7311 diff --git a/data/verification/standing-white-noise b/data/verification/standing-white-noise @@ -1,100 +0,0 @@ - -inf -0.233853 - -0.117723 -0.117965 - -0.103887 -0.104053 - -0.0951058 -0.0951161 - -0.0884993 -0.0884237 - -0.0831245 -0.0830153 - -0.078549 -0.078463 - -0.0745366 -0.0744288 - -0.0709435 -0.0708583 - -0.0676753 -0.0675451 - -0.0646666 -0.0645551 - -0.0618699 -0.0617977 - -0.0592498 -0.059237 - -0.0567792 -0.0567669 - -0.0544366 -0.0544703 - -0.0522048 -0.0522662 - -0.0500699 -0.0501425 - -0.0480204 -0.0480808 - -0.0460465 -0.0461106 - -0.04414 -0.0442299 - -0.0422941 -0.042337 - -0.0405026 -0.0405851 - -0.0387604 -0.0388236 - -0.0370628 -0.0371055 - -0.0354057 -0.0354285 - -0.0337857 -0.0338634 - -0.0321995 -0.0322258 - -0.0306442 -0.0306652 - -0.0291173 -0.0291864 - -0.0276163 -0.0276332 - -0.0261392 -0.0261808 - -0.024684 -0.0247297 - -0.0232488 -0.0232708 - -0.021832 -0.0218088 - -0.0204321 -0.0204495 - -0.0190476 -0.0190384 - -0.0176772 -0.0176742 - -0.0163195 -0.0163249 - -0.0149735 -0.0150038 - -0.013638 -0.0136593 - -0.0123119 -0.0123291 - -0.0109941 -0.011025 - -0.00968374 -0.00973453 - -0.00837981 -0.00847984 - -0.00708141 -0.00721206 - -0.00578764 -0.00589848 - -0.00449763 -0.00460135 - -0.00321053 -0.00332016 - -0.00192549 -0.00204155 - -0.000641694 -0.000739987 - 0.000641691 0.000530326 - 0.00192549 0.00181934 - 0.00321053 0.00311372 - 0.00449763 0.00437635 - 0.00578764 0.005661 - 0.00708141 0.00696236 - 0.00837981 0.00827915 - 0.00968374 0.00957142 - 0.0109941 0.0108484 - 0.0123119 0.0121678 - 0.013638 0.0134838 - 0.0149735 0.0148353 - 0.0163195 0.0161396 - 0.0176772 0.0175156 - 0.0190476 0.0188967 - 0.0204321 0.0202495 - 0.021832 0.0216401 - 0.0232488 0.0230533 - 0.024684 0.0244577 - 0.0261392 0.0259256 - 0.0276163 0.0273836 - 0.0291173 0.0288715 - 0.0306443 0.030398 - 0.0321995 0.031978 - 0.0337857 0.033553 - 0.0354057 0.0351771 - 0.0370628 0.0368519 - 0.0387604 0.0385583 - 0.0405026 0.0403144 - 0.0422941 0.0420843 - 0.04414 0.0438943 - 0.0460465 0.0458202 - 0.0480204 0.04779 - 0.0500699 0.0498254 - 0.0522048 0.0519656 - 0.0544365 0.0542395 - 0.0567792 0.0565994 - 0.0592498 0.0590399 - 0.0618699 0.0616396 - 0.0646666 0.0643459 - 0.0676754 0.0675209 - 0.0709435 0.0708805 - 0.0745366 0.0743819 - 0.078549 0.0782187 - 0.0831245 0.0827719 - 0.0884993 0.0881249 - 0.0951059 0.0947655 - 0.103887 0.103857 - 0.117723 0.117593 - inf 0.223291