def
definition
duhamelKernelIntegral
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.ClassicalBridge.Fluids.ContinuumLimit2D on GitHub at line 655.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
duhamelRemainderOfGalerkin_kernel -
galerkin_duhamelKernel_identity -
nsDuhamelCoeffBound_galerkinKernel -
nsDuhamelCoeffBound_galerkinKernel_of_forcing -
nsDuhamelCoeffBound_kernelIntegral -
nsDuhamelCoeffBound_kernelIntegral_of_forcing -
nsDuhamel_of_forall_kernelIntegral -
nsDuhamel_of_forall_kernelIntegral_of_forcing -
tendsto_duhamelKernelIntegral_of_dominated_convergence -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel_of_forcing -
rs_implies_global_regularity_2d_nsDuhamelCoeffBound_galerkinKernel_of_forcingHyp
formal source
652/-- The Duhamel kernel operator applied to a (Fourier-modewise) forcing trajectory:
653
654`(duhamelKernelIntegral ν F)(t,k) = -∫₀ᵗ heatFactor ν (t-s) k • F(s,k) ds`. -/
655noncomputable def duhamelKernelIntegral (ν : ℝ) (F : ℝ → FourierState2D) : ℝ → FourierState2D :=
656 fun t k => -∫ s in (0 : ℝ)..t, (heatFactor ν (t - s) k) • (F s k)
657
658/-- Hypothesis (at fixed `t,k`): the Duhamel-kernel integrands satisfy the assumptions of dominated
659convergence, so the corresponding interval integrals converge. -/
660structure DuhamelKernelDominatedConvergenceAt
661 (ν : ℝ) (F_N : ℕ → ℝ → FourierState2D) (F : ℝ → FourierState2D)
662 (t : ℝ) (k : Mode2) where
663 /-- An `L¹` bound for the integrands on `0..t`. -/
664 bound : ℝ → ℝ
665 /-- Strong measurability (eventually in `N`) on the relevant interval. -/
666 h_meas :
667 ∀ᶠ N : ℕ in atTop,
668 MeasureTheory.AEStronglyMeasurable
669 (fun s : ℝ => (heatFactor ν (t - s) k) • (F_N N s k))
670 (MeasureTheory.volume.restrict (Set.uIoc (0 : ℝ) t))
671 /-- Dominating bound (eventually in `N`) on the relevant interval. -/
672 h_bound :
673 ∀ᶠ N : ℕ in atTop,
674 ∀ᵐ s ∂MeasureTheory.volume, s ∈ Set.uIoc (0 : ℝ) t →
675 ‖(heatFactor ν (t - s) k) • (F_N N s k)‖ ≤ bound s
676 /-- Integrability of the bound. -/
677 bound_integrable :
678 IntervalIntegrable bound MeasureTheory.volume (0 : ℝ) t
679 /-- Pointwise (ae on the interval) convergence of the integrands. -/
680 h_lim :
681 ∀ᵐ s ∂MeasureTheory.volume, s ∈ Set.uIoc (0 : ℝ) t →
682 Tendsto (fun N : ℕ => (heatFactor ν (t - s) k) • (F_N N s k)) atTop
683 (𝓝 ((heatFactor ν (t - s) k) • (F s k)))
684
685/-- A more user-facing dominated-convergence hypothesis at fixed `t,k` for the *forcing* itself,