59 return M.inversed() * v;
71 auto const r = std::sqrt(pos[0] * pos[0] + pos[1] * pos[1]);
72 auto const phi = std::atan2(pos[1], pos[0]);
73 return {r,
phi, pos[2]};
94 assert(std::abs(axis * orientation) <
95 5 * std::numeric_limits<double>::epsilon());
110 auto const &
rho = pos[0];
111 auto const &
phi = pos[1];
112 auto const &z = pos[2];
134 assert(std::abs(axis * orientation) <
135 5 * std::numeric_limits<double>::epsilon());
Vector implementation and trait types for boost qvm interoperability.
Vector normalized() const
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
Matrix implementation and trait types for boost qvm interoperability.
Vector< T, 3 > vector_product(Vector< T, 3 > const &a, Vector< T, 3 > const &b)
Vector3d vec_rotate(const Vector3d &axis, double angle, const Vector3d &vector)
Rotate a vector around an axis.
double angle_between(Vector3d const &v1, Vector3d const &v2)
Determine the angle between two vectors.
Vector3d transform_vector_cartesian_to_cylinder(Vector3d const &vec, Vector3d const &axis, Vector3d const &pos)
Vector transformation from Cartesian to cylindrical coordinates.
Vector3d transform_coordinate_cylinder_to_cartesian(Vector3d const &pos)
Coordinate transformation from cylindrical to Cartesian coordinates.
Vector3d transform_coordinate_cartesian_to_cylinder(Vector3d const &pos)
Coordinate transformation from Cartesian to cylindrical coordinates.
Vector3d basis_change(Vector3d const &b1, Vector3d const &b2, Vector3d const &b3, Vector3d const &v, bool reverse=false)
Basis change.
Matrix representation with static size.
Matrix< T, Cols, Rows > transposed() const
Retrieve a transposed copy of the matrix.