All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Euler iff convective Euler

FluidDynamics.euler_iff_convectiveEuler

Plain-language statement

The conservative and convective Euler forms are equivalent when the fields are differentiable enough for the product rules.

Exact Lean statement

theorem euler_iff_convectiveEuler
    (d : ℕ) (flow : CauchyFlow d) (pressure : 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)) :
    Euler d flow pressure ↔ ConvectiveEuler d flow pressure

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem euler_iff_convectiveEuler    (d : ) (flow : CauchyFlow d) (pressure : 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)) :    Euler d flow pressure  ConvectiveEuler d flow pressure := 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/Euler/Basic.lean:65-85

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

Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record