Missing derivative for RK0

This commit is contained in:
jtclemm
2025-04-25 10:19:28 -06:00
parent d4ba5d1fe6
commit 9e26d8b569

View File

@ -220,6 +220,8 @@ double ComputeRHEOKernel::calc_dw(int i, int j, double delx, double dely, double
return calc_dw_wendlandc4(delx, dely, delz, r, dWij, dWji);
if (kernel_style == QUINTIC)
return calc_dw_quintic(delx, dely, delz, r, dWij, dWji);
if (kernel_style == RK0)
return calc_dw_quintic(delx, dely, delz, r, dWij, dWji);
double wp;
int corrections_i = check_corrections(i);