-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Motivation
Some exercises perform reps per side (left/right). For example, one common exercise is lunges holding dumbbells. Let's say you're trying to represent 8 reps a side holding 20 lb DBs for 3 sets.
Current Solutions
The following is simple but ambiguous. Does it represent 8 reps per side or 8 reps total (4 left, 4 right)?
Lunges: 40 8r 3s
This can be made more explicit using a note or metadata:
Lunges:
# unilateral:
40 8r 3s
Proposal
Lunges: 40 8re 3s
Note the e in 8re. The above would read as lunges performed with 40 lbs (assumed units) for 8 reps each side for 3 sets. The JSON representation would be something like:
{
"Name": "Lunges",
"Performances": [
{
"Load": 40,
"Reps": 8,
"Sets": 3,
"Unilateral": true
}
]
}If Unilateral is considered too technical it could be swapped out for something more intuitive like "RepsPerSide": true.
Feedback
At the moment this is a very rough idea. The benefit I see is improved clarity and ease of writing since my current usage of # unilateral: metadata is not very ergonomic. However, the main downside I see is that this opens up the door for more data to get similar qualifiers in the spec rather than relying on metadata.
I'm curious how other folks deal with this problem. Do most people just accept the convention that the unilateral movements record the reps per side?