From 217f38839d3c0de247b65d832b10a393c7e43fe9 Mon Sep 17 00:00:00 2001 From: Marie Wingyee Lau Date: Mon, 21 May 2018 21:31:16 -0700 Subject: [PATCH] Corrected formula for Far-UV --- Galaxies/Dust/x_getalav.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Galaxies/Dust/x_getalav.pro b/Galaxies/Dust/x_getalav.pro index d4faf4a..07e8a51 100644 --- a/Galaxies/Dust/x_getalav.pro +++ b/Galaxies/Dust/x_getalav.pro @@ -100,7 +100,7 @@ function x_getalav, lambda, RV=rv ;; Far-UV b = where(x GT 8 AND x LE 10, nb) if nb NE 0 then begin - ax[b] = 1.073 - 0.628*(x[b]-8) + 0.137*(x[b]-8)^2 - 0.070*(x[b]-8)^3 + ax[b] = - 1.073 - 0.628*(x[b]-8) + 0.137*(x[b]-8)^2 - 0.070*(x[b]-8)^3 bx[b] = 13.67 + 4.257*(x[b]-8) - 0.420*(x[b]-8)^2 + 0.374*(x[b]-8)^3 endif