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

normalize matrix code

parent 8a62052e
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(), I * e.y() - e.x(), 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
......
......@@ -27,12 +27,12 @@ SpinMatrix computeRoughnessMatrix(const MatrixFlux& coeff, double sigma, bool in
if (sigma < 10 * std::numeric_limits<double>::epsilon())
return SpinMatrix::One();
const double sigeff = std::pow((pi / 2), 1.5) * sigma;
const double sigeff = std::pow(pi / 2, 1.5) * sigma;
const R3& b = coeff.field();
if (std::abs(b.mag() - 1.) < std::numeric_limits<double>::epsilon() * 10.) {
const double factor1 = 2. * (1. + b.z());
SpinMatrix Q((1. + b.z()), (I * b.y() - b.x()), (b.x() + I * b.y()), (b.z() + 1.));
SpinMatrix Q(1. + b.z(), -b.x() + I * b.y(), b.x() + I * b.y(), b.z() + 1.);
complex_t l1 = std::sqrt(Math::tanhc(sigeff * coeff.k_eigen_dn()));
complex_t l2 = std::sqrt(Math::tanhc(sigeff * coeff.k_eigen_up()));
......
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