fixed alpha_B, recaluate intead of using alpha_b

This commit is contained in:
Ryan@fsunuc 2023-07-17 12:03:23 -04:00
parent d5dccda144
commit 73dedbebd1

View File

@ -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;
}