diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-06-14 22:13:19 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-06-14 22:13:19 -0400 |
commit | 9708c72896778dc542a519e345b69c17737a9d05 (patch) | |
tree | af3ea75557bbd644a8eff98a94847adf51d7bbfb /notes/classic_gravitation.toml | |
parent | 8181ca318ecd1fd66706ad30920dc24ccb879f26 (diff) | |
download | modelthing-9708c72896778dc542a519e345b69c17737a9d05.tar.gz modelthing-9708c72896778dc542a519e345b69c17737a9d05.zip |
import notes from recurse folder
Diffstat (limited to 'notes/classic_gravitation.toml')
-rw-r--r-- | notes/classic_gravitation.toml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/notes/classic_gravitation.toml b/notes/classic_gravitation.toml new file mode 100644 index 0000000..953dad8 --- /dev/null +++ b/notes/classic_gravitation.toml @@ -0,0 +1,59 @@ + +[model] +name-en = "Classic Gravitation" +descrption-en = "Newtonian" +sexprs = [''' + (= + F + (/ (* G m1 m2) + (square r 2))) + '''] + +[variables] + + [variables.G] + type = "constant" + name-en = "Gravitational Constant" + value_si = 6.674e-11 + + [variables.F] + type = 'dependent' + name-en = "force" + units_si = "unit" + + [variables.r] + type = 'independent' + name-en = "distance" + units_si = "meter" + + [variables.m1] + type = 'independent' + latex = 'm_1' + name = "mass #1" + units_si = "kilogram" + + [variables.m2] + type = 'independent' + latex = 'm_2' + name = "mass #2" + units_si = "kilogram" + +[examples] + + [examples.earth_surface] + r = 6.371e6 # radius of earth + m1 = 5.972e24 # mass of earth + m2 = 70 # mass of human + + [examples.earth_moon] + r = 385000 # radius of earth + m1 = 5.972e24 # mass of earth + m2 = 7.348e22 # mass of moon + + +[references] + + [references.url] + "Mathworld" = "http://mathworld.wolfram.com/Lotka-VolterraEquations.html" + "Wikipedia" = "https://en.wikipedia.org/wiki/Lotka%E2%80%93Volterra_equations" + |