You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.3 KiB
Java

package com.verictas.pos.simulator.processor;
import com.verictas.pos.simulator.Object;
import javax.vecmath.Vector3d;
public class SimpleObjectProcessor {
private Object thisObject;
public void setObjectData(Object object) {
this.thisObject = object;
}
public double calculateAOP() {
// ORBITAL MOMENTUM VECTOR
Vector3d orbitalMomentum = new Vector3d(0,0,0);
Object object = this.thisObject;
orbitalMomentum.cross(object.speed, object.position);
// ACCENDING NODE VECTOR
Vector3d ascendingNode = new Vector3d(0,0,0);
ascendingNode.cross(new Vector3d(0,0,1), orbitalMomentum);
// ECCENTRICITY VECTOR
double mu = 1.32712440018E20;
Vector3d upCross = new Vector3d(0,0,0);
upCross.cross(object.speed, orbitalMomentum);
upCross.scale(1/mu);
double posLength = object.position.length();
Vector3d rightPos = object.position;
rightPos.scale(1/posLength);
Vector3d eccentricity = new Vector3d(0,0,0);
eccentricity.sub(upCross, rightPos);
// AOP
double aop;
if (eccentricity.getZ() < 0) {
aop = (2 * Math.PI) - ascendingNode.angle(eccentricity);
} else {
aop = ascendingNode.angle(eccentricity);
}
return aop;
}
}