{ "cells": [ { "cell_type": "markdown", "id": "564d00b4", "metadata": {}, "source": [ "# Time Normalization Using the Integral Length Scale\n", "\n", "When comparing time series from a simulation against wind tunnel data or\n", "another simulation, raw seconds are not a useful axis. The natural time scale\n", "of an ABL flow is the **eddy turnover time** $T_u = L_u / U$, set by the\n", "streamwise integral length scale $L_u$ and a representative mean velocity $U$.\n", "Normalising time by $T_u$ removes the dependence on the specific reference\n", "velocity and length, so that one full unit of $t^* = t / T_u$ corresponds to\n", "the passage of one large-eddy structure past the probe.\n", "\n", "This notebook shows how to compute $L_u$ from a probe time series following\n", "Taylor's frozen-turbulence hypothesis, and how to use it to non-dimensionalise\n", "time for plotting, statistics windowing, and cross-case comparison.\n", "\n", "
nfft = 1 << (2 * n - 1).bit_length()\n",
"avoids circular-correlation wrap-around. The division by\n",
"np.arange(n, 0, -1) corrects for the shrinking number of overlapping samples\n",
"at large lag.\n",
"