Navier stokes iff convective navier stokes
FluidDynamics.navier_stokes_iff_convective_navier_stokes
Plain-language statement
The conservative and convective Navier-Stokes forms are equivalent when the fields are differentiable enough for the product rules.
Exact Lean statement
theorem navier_stokes_iff_convective_navier_stokes
(d : ℕ) (flow : CauchyFlow d)
(pressure shearViscosity secondViscosity : ScalarField d)
(hRhoTime : ∀ t x, DifferentiableAt ℝ (flow.rho · x) t)
(hVelocityTime : ∀ t x, DifferentiableAt ℝ (flow.velocity · x) t)
(hMomentumDensity : ∀ t,
Differentiable ℝ (FluidFlow.momentumDensity d flow.toFluidFlow t))
(hVelocitySpace : ∀ t, Differentiable ℝ (flow.velocity t)) :
NavierStokes d flow pressure shearViscosity secondViscosity ↔
ConvectiveNavierStokes d flow pressure shearViscosity secondViscosityFormal artifact
Lean source
theorem navier_stokes_iff_convective_navier_stokes (d : ℕ) (flow : CauchyFlow d) (pressure shearViscosity secondViscosity : ScalarField d) (hRhoTime : ∀ t x, DifferentiableAt ℝ (flow.rho · x) t) (hVelocityTime : ∀ t x, DifferentiableAt ℝ (flow.velocity · x) t) (hMomentumDensity : ∀ t, Differentiable ℝ (FluidFlow.momentumDensity d flow.toFluidFlow t)) (hVelocitySpace : ∀ t, Differentiable ℝ (flow.velocity t)) : NavierStokes d flow pressure shearViscosity secondViscosity ↔ ConvectiveNavierStokes d flow pressure shearViscosity secondViscosity := by constructor · intro hConservative refine ⟨hConservative.1, ?_, hConservative.2.2⟩ exact (CauchyFlow.cauchyMomentumEquation_iff_convectiveCauchyMomentumEquation d flow hConservative.1 hRhoTime hVelocityTime hMomentumDensity hVelocitySpace).mp hConservative.2.1 · intro hConvective refine ⟨hConvective.1, ?_, hConvective.2.2⟩ exact (CauchyFlow.cauchyMomentumEquation_iff_convectiveCauchyMomentumEquation d flow hConvective.1 hRhoTime hVelocityTime hMomentumDensity hVelocitySpace).mpr hConvective.2.1- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/FluidDynamics/CauchyFlow/NavierStokes.lean:77-99
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Adiabatic relation log
adiabatic_relation_log
Plain-language statement
Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.
Source project: Physlib
Person-level attribution pending.
Adiabatic relation Ua Ub Va Vb
adiabatic_relation_UaUbVaVb
Plain-language statement
Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.