Closed reddtako closed 11 months ago
When calculating kick velocity using remnantkick(... , full_output = True) the code reutrns an error :
"all input arrays must have the same shape"
It seems to me that this can be fixed by changing the line 6083
from : " return np.stack([vk, kick]) " to : " return vk, kick"
Thanks for pointing this out. I've proposed a fix in https://github.com/dgerosa/precession/pull/27.
Thanks! Merged in version 2.0.4
When calculating kick velocity using remnantkick(... , full_output = True) the code reutrns an error :
"all input arrays must have the same shape"
It seems to me that this can be fixed by changing the line 6083
from : " return np.stack([vk, kick]) " to : " return vk, kick"