Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Calculate the time to fall from a specified height
ResourceFunction["TimeToFallFormula"][h] returns the time taken for an object to fall vertically from a distance h without drag. | |
ResourceFunction["TimeToFallFormula"][h,assoc] returns the time taken for an object to fall vertically from a distance h with drag parameters in the Association assoc. | |
ResourceFunction["TimeToFallFormula"][property] returns the specified property of the time to fall formula. |
"DragCoefficient" | 0.5 | resistance of the object falling in the fluid |
"Area" | 20 cm2 | the object's projected area |
"Mass" | 3 kg | the object's mass |
"Density" | 1.29 kg/m3 | the fluid's density |
"FormulaWithDrag" | equation for time to fall with drag |
"FormulaWithoutDrag" | equation for time to fall without drag |
"QuantityVariableNames" | English names for all variables |
Calculate the time to fall without drag:
In[1]:= |
Out[1]= |
Calculate the time to fall considering drag:
In[2]:= |
Out[2]= |
Show the formula used with drag:
In[3]:= |
Out[3]= |
and without drag:
In[4]:= |
Out[4]= |
Find the name of the quantity variables used by TimeToFallFormula:
In[5]:= |
Out[5]= |
TimeToFallFormula is listable:
In[6]:= |
Out[6]= |
Use "Gravity" to specify the value of the gravity used:
In[7]:= |
Out[7]= |
Plot the time that it would take to fall from the highest mountain of each continent:
In[9]:= |
Out[11]= |
Plot the time that it would take to fall the height of the Empire State Building on each planet in the solar system:
In[12]:= |
Out[12]= |
This work is licensed under a Creative Commons Attribution 4.0 International License