diff options
author | hanemile <emile.hansmaennel@gmail.com> | 2017-12-05 16:09:14 +0100 |
---|---|---|
committer | hanemile <emile.hansmaennel@gmail.com> | 2017-12-05 16:09:14 +0100 |
commit | 3945015abbfc48da21f2cc81dee006a9955fcc84 (patch) | |
tree | 2e86964094c4ae750ec48699921d9a991801e39a | |
parent | 6788e93f0bed952733259b79bbeb0e7b41ce75f7 (diff) |
added comments, command-line arguments and some fancy output
-rwxr-xr-x | src/gen.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/gen.py b/src/gen.py index 242636d..b4b7933 100755 --- a/src/gen.py +++ b/src/gen.py @@ -9,33 +9,6 @@ import time import matplotlib.pyplot as plt host = socket.gethostname() -# variables -sigma = 200 -f_0 = 0.1 -R_s = 1e4 - -# constants -pi = math.pi -e = math.e -G = 4.302e-3 - -# rho function -def rho(r): - a = (1) / (math.sqrt( 2 * pi ) * sigma ) - b = math.exp( - (phi(r) / sigma ** 2 ) ) - c = a * b - return c - -# phi function -def phi(x): - if x == 0: - return -4 * pi * f_0 * G * R_s**2 - - a = - ( 4 * pi * G * f_0 * R_s ** 3 ) / x - b = np.log(1. + (x / R_s) ) - c = a * b - return c - listx = [] listy = [] |