Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions Physlib/ClassicalMechanics/Pendulum/SlidingPendulum.lean
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Authors: Shlok Vaibhav Singh
-/
module

public import Physlib.Meta.Linters.Sorry
public import Mathlib.Analysis.SpecialFunctions.Trigonometric.Angle
/-!
# Sliding Pendulum
### Tag: LnL_1.5.2
Expand Down Expand Up @@ -63,9 +63,21 @@ namespace ClassicalMechanics

namespace SlidingPendulum

/-- The configuration space of the sliding pendulum system. -/
@[sorryful]
def ConfigurationSpace : Type := sorry
/-!
## A. Configuration space
-/

/--
The configuration space of the sliding pendulum system.

The generalized coordinates are the horizontal position of the support mass and the angle
that the string makes with the vertical.
-/
structure ConfigurationSpace where
/-- The horizontal position `x₁` of the support mass. -/
supportPosition : ℝ
/-- The angle `φ` that the string makes with the vertical. -/
angle : Real.Angle

end SlidingPendulum

Expand Down
Loading