This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ability to get sector dependence.
- Loading branch information
Showing
2 changed files
with
415 additions
and
0 deletions.
There are no files selected for viewing
139 changes: 139 additions & 0 deletions
139
common-tools/cnuphys/swimmer/src/main/java/cnuphys/swim/SectorDerivative.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
package cnuphys.swim; | ||
|
||
import cnuphys.magfield.IField; | ||
import cnuphys.magfield.RotatedCompositeField; | ||
import cnuphys.magfield.RotatedCompositeProbe; | ||
import cnuphys.rk4.IDerivative; | ||
|
||
/** | ||
* Used for swimming in the sector system with a rotated composite field | ||
* | ||
* @author heddle | ||
* | ||
*/ | ||
public class SectorDerivative implements IDerivative { | ||
|
||
private IField _field; | ||
private RotatedCompositeField _rcField; | ||
private RotatedCompositeProbe _rcProbe; | ||
|
||
//the sector [1..6] | ||
private int _sector; | ||
|
||
private double _momentum; // GeV/c | ||
|
||
// alpha is qe/p where q is the integer charge, | ||
// e is the electron charge = (10^-9) in GeV/(T*m) | ||
// p is in GeV/c | ||
private double _alpha; | ||
|
||
// for mag field result | ||
float b[] = new float[3]; | ||
|
||
/** | ||
* The derivative for swimming through a magnetic field | ||
* | ||
* @param sector | ||
* the sector [1..6] | ||
* @param charge | ||
* -1 for electron, +1 for proton, etc. | ||
* @param momentum | ||
* the magnitude of the momentum. | ||
* @param field | ||
* the magnetic field | ||
*/ | ||
public SectorDerivative(int sector, int charge, double momentum, IField field) { | ||
_field = field; | ||
_sector = sector; | ||
|
||
if (_field instanceof RotatedCompositeField) { | ||
_rcField = (RotatedCompositeField)_field; | ||
_rcProbe = null; | ||
} | ||
else if (_field instanceof RotatedCompositeProbe) { | ||
_rcProbe = (RotatedCompositeProbe)_field; | ||
_rcField = null; | ||
} | ||
else { | ||
System.err.println("Can only create a SectorDerivative with a RotatedComposite Field or Probe"); | ||
System.exit(1); | ||
} | ||
|
||
|
||
_momentum = momentum; | ||
// units of this alpha are 1/(T*m) | ||
_alpha = 1.0e-9 * charge * Swimmer.C / _momentum; | ||
} | ||
|
||
public void set(int sector, int charge, double momentum, IField field) { | ||
_field = field; | ||
_sector = sector; | ||
|
||
|
||
if (_field instanceof RotatedCompositeField) { | ||
_rcField = (RotatedCompositeField)_field; | ||
_rcProbe = null; | ||
} | ||
else if (_field instanceof RotatedCompositeProbe) { | ||
_rcProbe = (RotatedCompositeProbe)_field; | ||
_rcField = null; | ||
} | ||
else { | ||
System.err.println("Can only set a SectorDerivative with a RotatedComposite Field or Probe"); | ||
System.exit(1); | ||
} | ||
_momentum = momentum; | ||
// units of this alpha are 1/(T*m) | ||
_alpha = 1.0e-9 * charge * Swimmer.C / _momentum; | ||
} | ||
|
||
/** | ||
* Compute the derivatives given the value of s (path length) and the values | ||
* of the state vector. | ||
* | ||
* @param s | ||
* the value of the independent variable path length (input). | ||
* @param Q | ||
* the values of the state vector ([x,y,z, px/p, py/p, pz/p]) at | ||
* s (input). | ||
* @param dydt | ||
* will be filled with the values of the derivatives at t | ||
* (output). | ||
*/ | ||
@Override | ||
public void derivative(double s, double[] Q, double[] dQds) { | ||
double Bx = 0.0; | ||
double By = 0.0; | ||
double Bz = 0.0; | ||
|
||
if (_field != null) { | ||
|
||
float b[] = new float[3]; | ||
|
||
// convert to cm | ||
double xx = Q[0] * 100; | ||
double yy = Q[1] * 100; | ||
double zz = Q[2] * 100; | ||
|
||
if (_rcProbe != null) { | ||
_rcProbe.field(_sector, (float) xx, (float) yy, (float) zz, b); | ||
} | ||
else { | ||
_rcField.field(_sector, (float) xx, (float) yy, (float) zz, b); | ||
} | ||
|
||
// convert to tesla | ||
Bx = b[0] / 10.0; | ||
By = b[1] / 10.0; | ||
Bz = b[2] / 10.0; | ||
} | ||
|
||
dQds[3] = _alpha * (Q[4] * Bz - Q[5] * By); // vyBz-vzBy | ||
dQds[4] = _alpha * (Q[5] * Bx - Q[3] * Bz); // vzBx-vxBz | ||
dQds[5] = _alpha * (Q[3] * By - Q[4] * Bx); // vxBy-vyBx | ||
dQds[0] = Q[3]; | ||
dQds[1] = Q[4]; | ||
dQds[2] = Q[5]; | ||
} | ||
|
||
} |
Oops, something went wrong.