blob: 4c812955b21ecdb132edf24cce6220c247ba9b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!/usr/bin/env python
# Import some libraries
import math
import numpy as np
import matplotlib.pyplot as plt
import time
import os
import sys
import argparse
parser = argparse.ArgumentParser(
description="Lookuptable generator",
usage='./%(prog)s <radius> <path> [-h]',
)
parser.add_argument("radius", help="Number of Values to be calculated")
parser.add_argument("path", help="Path to the location where the lookuptable should be saved", type=str)
args = parser.parse_args()
# define the radius until where the values should be generated
radius = int(float(args.radius))
# Define the path to where the data should be stored
path = 'data/' + str(args.path) + '.big.csv'
# Defining some variables
sigma = 200
f_0 = 0.1
R_s = 1e4
# Defining some 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 ) )
return a * b
# phi function
def phi(x):
if x == 0:
return -4 * pi * f_0 * G * R_s**2
else:
a = - ( 4 * pi * G * f_0 * R_s ** 3 ) / x
b = np.log(1. + (x / R_s) )
return a * b
# get the start time
start = time.time()
# open the file where the information should be written to
with open(path, "a") as data:
# for every star
for i in range(0, radius):
# calculate the rho value
rho_i = rho(i/10)
# print the distance to the center of the universe and the rho value to
# the user
if ((i % 1000) == 0):
print(str(i) + ", " + str(rho_i))
# write the data into the file
data.write(str(i) + ", " + str(rho_i) + "\n")
# get the end time
end = time.time()
# calculate the runtime
runtime = end - start
# print some information to the user
print("\n Runtime: ", end="")
print(str(runtime) + " seconds")
print(" Radius: " + str(radius))
print(" Rho-values per second: ", end="")
print(str(radius / runtime))
|