Skip to content
Snippets Groups Projects
Commit fbcf739b authored by nickishch's avatar nickishch
Browse files

changed blob size

parent fa1f61b1
No related branches found
No related tags found
No related merge requests found
...@@ -196,10 +196,10 @@ coords -= 0.5 ...@@ -196,10 +196,10 @@ coords -= 0.5
# cut a sphere # cut a sphere
r_uni = np.linalg.norm(coords, axis=1) r_uni = np.linalg.norm(coords, axis=1)
coords = coords[r_uni <= 0.5] coords = coords[r_uni <= 0.5]
coords *= boxSize/10 #boxSize * np.sqrt(3) coords *= boxSize/5 #boxSize * np.sqrt(3)
# calculate max distance from the center (units of r_200) # calculate max distance from the center (units of r_200)
R_max = boxSize/20 #boxSize/2 #np.sqrt(3) * (boxSize / 2) R_max = boxSize/10 #boxSize/2 #np.sqrt(3) * (boxSize / 2)
r_s = 1 / c_200 r_s = 1 / c_200
# calculate distances to the center # calculate distances to the center
r_uni = np.linalg.norm(coords, axis=1) r_uni = np.linalg.norm(coords, axis=1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment