Beispiel #1
0
 public RelativisticParticle Transform(EuclideanVector3 velocity)
 {
     LorentzMatrixUL L = LorentzTransform.Matrix(velocity);
     return new RelativisticParticle(this.Mass, L * this.Position, this.InvariantTimeDerivative);
 }
Beispiel #2
0
        public ElectromagneticField Transform(EuclideanVector3 velocity)
        {
            LorentzMatrixUL L = LorentzTransform.Matrix(velocity);

            return(new ElectromagneticField(L * this.Potential, L.Invert() * this.Del));
        }