pith. machine review for the scientific record. sign in
inductive

FailureMode

definition
show as:
view math explainer →
module
IndisputableMonolith.Engineering.StructuralSafetyFromJCost
domain
Engineering
line
28 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Engineering.StructuralSafetyFromJCost on GitHub at line 28.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  25namespace IndisputableMonolith.Engineering.StructuralSafetyFromJCost
  26open Common.CanonicalJBand
  27
  28inductive FailureMode where
  29  | yielding | buckling | fatigue | fracture | creep
  30  deriving DecidableEq, Repr, BEq, Fintype
  31
  32theorem failureModeCount : Fintype.card FailureMode = 5 := by decide
  33
  34structure StructuralSafetyCert where
  35  five_failure_modes : Fintype.card FailureMode = 5
  36  safety_threshold : CanonicalCert
  37
  38noncomputable def structuralSafetyCert : StructuralSafetyCert where
  39  five_failure_modes := failureModeCount
  40  safety_threshold := cert
  41
  42end IndisputableMonolith.Engineering.StructuralSafetyFromJCost