Skip to content

Commit cf4dfae

Browse files
committed
fixing broken link in README
1 parent f5d522b commit cf4dfae

File tree

6 files changed

+54
-186
lines changed

6 files changed

+54
-186
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ requires a representation of the 2-dimensional magnification map generated from
9898
microlens' Einstein radius is calculated, angular diameter distances are computed, and flux distributions and magnification maps
9999
are convolved to provide microlensing light curves of each source.
100100

101-
Some precomputed ray tracings may be found `here <https://drive.google.com/drive/folders/1vx8HUBXw6SaDq5uS4jQCyWdg13XfCRCv?usp=share_link>`_
101+
Some precomputed ray tracings may be found `here <https://drive.google.com/file/d/1WGuzCXMKXwSawcfF8LE1gQTc042pzz_2/view?usp=share_link>`_
102102
which contains a zipped folder of .fits files for various inclination angles of Schwarzschild black holes.
103103

104104
More explicit use cases may be found at the `ReadTheDocs <https://amoeba.readthedocs.io/en/latest/?version=latest>`_ .

amoeba/.DS_Store

-6 KB
Binary file not shown.

amoeba/Notebooks/amoeba_accretion_disks_and_microlensing_examples.ipynb

Lines changed: 46 additions & 181 deletions
Large diffs are not rendered by default.

amoeba/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ requires a representation of the 2-dimensional magnification map generated from
9898
microlens' Einstein radius is calculated, angular diameter distances are computed, and flux distributions and magnification maps
9999
are convolved to provide microlensing light curves of each source.
100100

101-
Some precomputed ray tracings may be found `here <https://drive.google.com/drive/folders/1vx8HUBXw6SaDq5uS4jQCyWdg13XfCRCv?usp=share_link>`_
101+
Some precomputed ray tracings may be found `here <https://drive.google.com/file/d/1WGuzCXMKXwSawcfF8LE1gQTc042pzz_2/view?usp=share_link>`_
102102
which contains a zipped folder of .fits files for various inclination angles of Schwarzschild black holes.
103103

104104
More explicit use cases may be found at the `ReadTheDocs <https://amoeba.readthedocs.io/en/latest/?version=latest>`_ .

amoeba/example_scripts/visualize_blr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
maximum_blr_height = 1000 # rg
3232
characteristic_distance = 500 # in rg, for outflowing velocity model
3333
asymptotic_poloidal_velocity = 0.5 # units v / c
34-
height_step = 10 # rg, defines thickness of each blr slab
34+
height_step = 5 # rg, defines thickness of each blr slab
3535
radial_step = 10 # rg, defines resolution of each slab
3636

3737
blr_rest_frame_emission = 500 # nm

amoeba/src/amoeba/Util/util.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1926,8 +1926,11 @@ def calculate_blr_transfer_function(
19261926
Todo: this is a relatively slow function. If there's a way to project the BLR into the
19271927
3-dimensional cylindrical grid faster then compute the time lags as a function of
19281928
(R, Z, phi) and take a single histogram over the whole space, that would probably
1929-
speed it up significantly. It sped up by reducing the resolution of the blr transfer
1930-
function, but still could be faster
1929+
speed it up significantly. Notes: It sped up by reducing the resolution of the blr transfer
1930+
function, but still could be faster. Additional note: I tried generating the 3d space
1931+
using a 3 dimensional grid, but it was actually slower than looping through each
1932+
height slab. It's possible it was slower due to the significant RAM required and
1933+
my testing Macbook was using swap-files to handle the task. Still requires further testing.
19311934
19321935
:param blr_density_rz_grid: a 2d array of values representing the density of the blr
19331936
at each point in (R, Z) coords.

0 commit comments

Comments
 (0)