You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rel_velo being a 3 dimensions array, abs(rel_velo) is a 3D array too, so instead of having a scalar component of the dragforce we have a 3D component, which makes no sense.
We assume that the it must be the norm numpy.linalg.norm(rel_velo) of the relative velocity, but we need confirmation.
We will use it as a temporary fix.
In the main script, more precisely when computing each component of the force, there's an
abs(rel_velo).rel_velobeing a 3 dimensions array,abs(rel_velo)is a 3D array too, so instead of having a scalar component of the dragforce we have a 3D component, which makes no sense.We assume that the it must be the norm
numpy.linalg.norm(rel_velo)of the relative velocity, but we need confirmation.We will use it as a temporary fix.