Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 376 Bytes

Physics.md

File metadata and controls

16 lines (11 loc) · 376 Bytes

17. Physics

17.1 Temperature Conversion

C/5 = (F-32)/9 = (T-273)/5
double cel = 5 * (far - 32) / 9;
double cel = T - 273;

17.2 Equations of uniformly accelerated linear motion

Screen Shot 2020-04-09 at 8 02 39 pm