summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Anderson <jandew+dev@gmail.com>2011-10-31 08:07:03 -0500
committerJoe Anderson <jandew+dev@gmail.com>2011-10-31 08:07:03 -0500
commit707fc41fefe919e95de495bd0c23efe5cd667868 (patch)
tree335f3b956a223872b8954d9a1490225777d43f9a
parent380f7244e82cc5798519956714b9bd1720cdbf6c (diff)
downloadtoss-707fc41fefe919e95de495bd0c23efe5cd667868.tar.gz
toss-707fc41fefe919e95de495bd0c23efe5cd667868.zip
clean compare()
-rw-r--r--throw.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/throw.py b/throw.py
index 3fcfdd8..2f8d36f 100644
--- a/throw.py
+++ b/throw.py
@@ -265,34 +265,6 @@ def solve():
plot(time, soln, ['all', '!gravity'])
pyplot.show()
-def compare():
- global m, Mass
- m = 39.7
- Mass = 650
- time, soln = solve_fun(throw, inits)
- plot(time, soln, ['tension'], 8)
- pyplot.title("Mass = %i" % Mass)
-
- m = 39.7
- Mass = 670
- time, soln = solve_fun(throw, inits)
- plot(time, soln, ['tension'], 7)
- pyplot.title("Mass = %i" % Mass)
-
- m = 39.7
- Mass = 690
- time, soln = solve_fun(throw, inits)
- plot(time, soln, ['tension'], 6)
- pyplot.title("Mass = %i" % Mass)
-
- m = 41.81320863
- Mass = 4172
- time, soln = solve_fun(throw, inits)
- plot(time, soln, ['tension'], 5)
- pyplot.title("Mass = %i" % Mass)
-
- pyplot.show()
-
if len(sys.argv) == 2:
func_name = sys.argv[1]
if func_name in dir():