Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private Vector3D Pwm2Torque(Vector3D pwm) {
Vector3D dipole = new Vector3D(x,y,z);
Vector3D torque;
logger.info("PWM SIGNAL:"+dipole.toString());
torque = Vector3D.crossProduct(dipole,this.b_field);
torque = Vector3D.crossProduct(this.b_field,dipole); //TODO review this !
return torque;
}

Expand Down