From 73dedbebd13bf811fb3a316ffb6a0a0af48b56e8 Mon Sep 17 00:00:00 2001 From: "Ryan@fsunuc" Date: Mon, 17 Jul 2023 12:03:23 -0400 Subject: [PATCH] fixed alpha_B, recaluate intead of using alpha_b --- heliosmatics.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/heliosmatics.js b/heliosmatics.js index 0971903..fae1f46 100644 --- a/heliosmatics.js +++ b/heliosmatics.js @@ -210,7 +210,8 @@ function CalConstants(){ ez_slope = Math.abs(BField) * c * light[1]*beta/2/Math.PI/1000; // MeV/mm alpha = ez_slope/beta; - alpha_B = alpha * heavy[1]/light[1]; + //alpha_B = alpha * heavy[1]/light[1]; + alpha_B = Math.abs(BField) * c * heavy[1]*beta/2/Math.PI/1000 / beta; }