Skip to content

Commit

Permalink
Group [D] completed
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicarod7 committed Jun 28, 2018
1 parent 71a9c1c commit 59d8c3b
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 11 deletions.
36 changes: 34 additions & 2 deletions PHYSBBLE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,43 @@ Output(2,23,"m/s")
Goto SA

Lbl A1

Disp "FIND ACCEL., NO DIST."
Disp " "
Input "FINAL V.? (m/s) ",U
U→⌊PHVAR(1)
Input "INITIAL V.? (m/s) ",U
U→⌊PHVAR(2)
Input "TIME? (s) ",U
U→⌊PHVAR(3)
round(((⌊PHVAR(1)-⌊PHVAR(2))/⌊PHVAR(3)),6)→⌊PHVAR(4)
Output(8,1,"ACCEL. =")
Output(8,10,⌊PHVAR(4))
Output(9,22,"m/s²")
Wait 2
ClrHome
Output(1,1,"ACCEL. =")
Output(1,10,⌊PHVAR(4))
Output(2,22,"m/s²")
Goto SA

Lbl T1

Disp "FIND TIME, NO DIST."
Disp " "
Input "FINAL V.? (m/s) ",U
U→⌊PHVAR(1)
Input "INITIAL V.? (m/s) ",U
U→⌊PHVAR(2)
Input "ACCEL.? (m/s²) ",U
U→⌊PHVAR(3)
round(((⌊PHVAR(1)-⌊PHVAR(2))/⌊PHVAR(3)),6)→⌊PHVAR(4)
Output(8,1,"TIME =")
Output(8,8,⌊PHVAR(4))
Output(9,25,"s")
Wait 2
ClrHome
Output(1,1,"TIME =")
Output(1,8,⌊PHVAR(4))
Output(2,25,"s")
Goto SA

Lbl F
Expand Down
18 changes: 9 additions & 9 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ An list of features to be implemented before the v1.0.0 release.

This is a fully-fledged list of the requirements for each section of the calculations

- [ ] **Distance**
- [x] **Distance**
- [x] *Final Velocity* (D,F1)
- [x] Request variables, and store as ⌊PHVAR(1-3)
- [x] Run calculation and store value as ⌊PHVAR(4)
Expand All @@ -26,14 +26,14 @@ This is a fully-fledged list of the requirements for each section of the calcula
- [x] Request variables, and store as ⌊PHVAR(1-3)
- [x] Run calculation and store value as ⌊PHVAR(4)
- [x] Display result to user, delay, and return to main program
- [ ] *Acceleration* (D,A1)
- [ ] Request variables, and store as ⌊PHVAR(1-3)
- [ ] Run calculation and store value as ⌊PHVAR(4)
- [ ] Display result to user, delay, and return to main program
- [ ] *Time* (D,T1)
- [ ] Request variables, and store as ⌊PHVAR(1-3)
- [ ] Run calculation and store value as ⌊PHVAR(4)
- [ ] Display result to user, delay, and return to main program
- [x] *Acceleration* (D,A1)
- [x] Request variables, and store as ⌊PHVAR(1-3)
- [x] Run calculation and store value as ⌊PHVAR(4)
- [x] Display result to user, delay, and return to main program
- [x] *Time* (D,T1)
- [x] Request variables, and store as ⌊PHVAR(1-3)
- [x] Run calculation and store value as ⌊PHVAR(4)
- [x] Display result to user, delay, and return to main program
- [ ] **Final Velocity**
- [ ] *Distance* (F,D2)
- [ ] Request variables, and store as ⌊PHVAR(1-3)
Expand Down

0 comments on commit 59d8c3b

Please sign in to comment.