summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2022-10-20 15:54:15 -0400
committerAndrew Cady <d@jerkface.net>2022-10-20 15:54:15 -0400
commit9b802013a2ce72257b1511f73d0ba7459cb4d578 (patch)
tree24136b343bb30bf87c757e2ae6c45b44fdfd1653
parent9e13109221b93a9714e34e498a39f9bec5e73254 (diff)
lift ratios (unused)
-rwxr-xr-xrepgoal.hs19
1 files changed, 19 insertions, 0 deletions
diff --git a/repgoal.hs b/repgoal.hs
index bef5c88..bc3741d 100755
--- a/repgoal.hs
+++ b/repgoal.hs
@@ -179,6 +179,25 @@ theApp =
179 , appAttrMap = const $ A.attrMap V.defAttr [] 179 , appAttrMap = const $ A.attrMap V.defAttr []
180 } 180 }
181 181
182-- Lift Ratios
183-- from https://www.catalystathletics.com/article/1786/The-Relation-of-Snatch-Clean-Jerk-and-Squat-Weights/
184squat, deadlift, press :: Rational
185squat = 345
186deadlift = 453
187press = 140
188
189cleanAndJerk = squat * 80 / 100
190frontSquat = squat * 85 / 100
191overheadSquat = squat * 65 / 100
192snatch = squat * 60 / 100
193powerSnatch = snatch * 80 / 100
194
195clean = deadlift * 70 / 100
196powerClean = clean * 80 / 100
197
198pushPress = press * 100 / 75
199jerk = pushPress / 100 * 85
200
182main :: IO () 201main :: IO ()
183main = do 202main = do
184 let buildVty = V.mkVty V.defaultConfig 203 let buildVty = V.mkVty V.defaultConfig