Skip to content
Snippets Groups Projects
Commit a9639ee1 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

invert eigenvector V-

parent 3b9c6d1c
No related branches found
No related tags found
1 merge request!1677Polarized propagation: improve doc; in code merge into fct eigenToMatrix
......@@ -34,7 +34,7 @@ SpinMatrix PhaseRotationMatrix(const R3& B_direction, const Spinor& diagonal)
if (std::abs(e.mag() - 1.) < eps) {
const double factor1 = 2. * (1. + e.z());
SpinMatrix Q(1. + e.z(), -e.x() + I * e.y(), e.x() + I * e.y(), e.z() + 1.);
SpinMatrix Q(1. + e.z(), e.x() - I * e.y(), e.x() + I * e.y(), -e.z() - 1.);
return Q * M * Q.adjoint() / factor1;
}
ASSERT(e.mag() < eps); // remaining case: no field
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment