Closed miekkasarki closed 8 months ago
During the initialization of the atomic data, the array is incorrectly initialized.
real * temp_arr_pos = temp_array + 5 * N_reac;
should be
real * temp_arr_pos = temp_array + 6 * N_reac;
and ditto in two other places. This bug causes the interpolated data to be slightly misaligned, so it's uncertain how large the error was.
Merged to develop
During the initialization of the atomic data, the array is incorrectly initialized.
real * temp_arr_pos = temp_array + 5 * N_reac;
should be
real * temp_arr_pos = temp_array + 6 * N_reac;
and ditto in two other places. This bug causes the interpolated data to be slightly misaligned, so it's uncertain how large the error was.