| Language: | Python (2.4) |
| Requires: | no other modules |
| Runs under: | Linux, probably also Windows and Mac OS X. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | Tkinter, scatterplot (below) |
| Runs under: | Linux, maybe Windows, maybe Mac OS X. |
To download it, get the source by clicking here, then save to a file.
A short user's manual is here.
| Language: | Python |
| Requires: | Tkinter |
| Runs under: | Linux, maybe Windows, maybe Mac OS X. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | ellipticcurve.py, numbertheory.py |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | numbertheory.py |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | None |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | imaplib, re, string, sys, types |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
| Language: | Python |
| Requires: | math |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
An example shows it best:
Example 1: have you ever wondered about the magnitude of
the centrifugal force due to the Earth's rotation when you're
standing on the equator?
>>> import nature
>>> r = nature.earth_equatorial_radius
>>> w = 2 * 3.1416 / nature.earth_rotation_period
>>> print w*w*r
3.39172088527 cm /sec^2
Example 2: did you know the Sun pulls on the Moon harder
than the Earth does?
>>> G = nature.gravitational_constant
>>> re = nature.moon_orbit_radius # Moon-Earth distance
>>> rs = ( nature.earth_orbit_radius + re ) # Moon farthest from sun.
>>> ms = nature.sun_mass
>>> me = nature.earth_mass
>>> print "Earth pull:", G*me/re/re
Earth pull: 0.27021048893 cm /sec^2
>>> print "Sun pull:", G*ms/rs/rs
Sun pull: 0.585397316513 cm /sec^2 # About twice Earth's pull.
| Language: | Python |
| Requires: | units |
| Runs under: | Linux, probably all Python implementations. |
To download it, get the source by clicking here, then save to a file.
2008-09-02
My email address: