pxt-ev3/sim/state/motornode.ts

243 lines
8.8 KiB
TypeScript
Raw Normal View History

2017-12-18 22:04:17 +01:00
namespace pxsim {
export class MotorNode extends BaseNode {
2017-12-18 22:04:17 +01:00
isOutput = true;
private rotationsPerMilliSecond: number;
2017-12-18 22:04:17 +01:00
// current state
private angle: number = 0;
private tacho: number = 0;
private speed: number = 0;
private polarity: number = 1; // -1, 1 or -1
2017-12-18 22:04:17 +01:00
private started: boolean;
private speedCmd: DAL;
private speedCmdValues: number[];
private speedCmdTacho: number;
private speedCmdTime: number;
2018-01-05 17:40:49 +01:00
private _synchedMotor: MotorNode; // non-null if synchronized
2017-12-18 22:04:17 +01:00
private manualReferenceAngle: number = undefined;
private manualAngle: number = undefined;
2018-01-10 23:08:50 +01:00
constructor(port: number, large: boolean) {
2017-12-18 22:04:17 +01:00
super(port);
this.setLarge(large);
2017-12-18 22:04:17 +01:00
}
2018-01-06 09:00:04 +01:00
isReady() {
return !this.speedCmd;
}
getSpeed() {
return this.speed * (!this._synchedMotor && this.polarity == 0 ? -1 : 1);
2017-12-18 22:04:17 +01:00
}
getAngle() {
return this.angle;
2017-12-18 22:04:17 +01:00
}
// returns the slave motor if any
getSynchedMotor() {
return this._synchedMotor;
}
setSpeedCmd(cmd: DAL, values: number[]) {
if (this.speedCmd != cmd ||
JSON.stringify(this.speedCmdValues) != JSON.stringify(values))
2018-01-10 23:08:50 +01:00
this.setChangedState();
// new command TODO: values
this.speedCmd = cmd;
this.speedCmdValues = values;
this.speedCmdTacho = this.angle;
this.speedCmdTime = pxsim.U.now();
delete this._synchedMotor;
}
setSyncCmd(motor: MotorNode, cmd: DAL, values: number[]) {
this.setSpeedCmd(cmd, values);
this._synchedMotor = motor;
2017-12-18 22:04:17 +01:00
}
clearSpeedCmd() {
delete this.speedCmd;
2018-01-05 17:40:49 +01:00
delete this.speedCmdValues;
delete this._synchedMotor;
}
setLarge(large: boolean) {
this.id = large ? NodeType.LargeMotor : NodeType.MediumMotor;
// large 170 rpm (https://education.lego.com/en-us/products/ev3-large-servo-motor/45502)
this.rotationsPerMilliSecond = (large ? 170 : 250) / 60000;
2017-12-18 22:04:17 +01:00
}
isLarge(): boolean {
return this.id == NodeType.LargeMotor;
}
2017-12-18 22:04:17 +01:00
setPolarity(polarity: number) {
// Either 1 or 255 (reverse)
/*
-1 : Motor will run backward
0 : Motor will run opposite direction
1 : Motor will run forward
*/
this.polarity = polarity;
2017-12-18 22:04:17 +01:00
}
reset() {
// not sure what reset does...
2017-12-18 22:04:17 +01:00
}
clearCount() {
this.tacho = 0;
this.angle = 0;
2017-12-18 22:04:17 +01:00
}
stop() {
this.started = false;
this.clearSpeedCmd();
2017-12-18 22:04:17 +01:00
}
start() {
this.started = true;
}
2018-01-10 22:47:39 +01:00
manualMotorDown() {
this.manualReferenceAngle = this.angle;
this.manualAngle = 0;
2018-01-10 22:47:39 +01:00
}
// position: 0, 360
manualMotorAngle(angle: number) {
this.manualAngle = angle;
2018-01-10 22:47:39 +01:00
}
manualMotorUp() {
delete this.manualReferenceAngle;
delete this.manualAngle;
2017-12-28 22:23:30 +01:00
}
2017-12-20 01:03:26 +01:00
updateState(elapsed: number) {
2017-12-28 22:23:30 +01:00
//console.log(`motor: ${elapsed}ms - ${this.speed}% - ${this.angle}> - ${this.tacho}|`)
const interval = Math.min(20, elapsed);
let t = 0;
while (t < elapsed) {
let dt = interval;
if (t + dt > elapsed) dt = elapsed - t;
this.updateStateStep(dt);
t += dt;
}
}
private updateStateStep(elapsed: number) {
if (this.manualAngle === undefined) {
2018-01-10 23:08:50 +01:00
// compute new speed
switch (this.speedCmd) {
case DAL.opOutputSpeed:
case DAL.opOutputPower:
// assume power == speed
// TODO: PID
this.speed = this.speedCmdValues[0];
break;
case DAL.opOutputTimeSpeed:
case DAL.opOutputTimePower:
case DAL.opOutputStepPower:
case DAL.opOutputStepSpeed: {
// ramp up, run, ramp down, <brake> using time
const speed = this.speedCmdValues[0];
const step1 = this.speedCmdValues[1];
const step2 = this.speedCmdValues[2];
const step3 = this.speedCmdValues[3];
const brake = this.speedCmdValues[4];
const dstep = (this.speedCmd == DAL.opOutputTimePower || this.speedCmd == DAL.opOutputTimeSpeed)
? pxsim.U.now() - this.speedCmdTime
: this.tacho - this.speedCmdTacho;
if (dstep < step1) // rampup
this.speed = speed * dstep / step1;
else if (dstep < step1 + step2) // run
this.speed = speed;
else if (dstep < step1 + step2 + step3)
this.speed = speed * (step1 + step2 + step3 - dstep) / (step1 + step2 + step3);
else {
if (brake) this.speed = 0;
this.clearSpeedCmd();
}
break;
}
2018-01-10 23:08:50 +01:00
case DAL.opOutputStepSync:
case DAL.opOutputTimeSync: {
const otherMotor = this._synchedMotor;
if (otherMotor.port < this.port) // handled in other motor code
break;
const speed = this.speedCmdValues[0];
const turnRatio = this.speedCmdValues[1];
const stepsOrTime = this.speedCmdValues[2];
const brake = this.speedCmdValues[3];
const dstep = this.speedCmd == DAL.opOutputTimeSync
? pxsim.U.now() - this.speedCmdTime
: this.tacho - this.speedCmdTacho;
// 0 is special case, run infinite
if (!stepsOrTime || dstep < stepsOrTime)
this.speed = speed;
else {
if (brake) this.speed = 0;
this.clearSpeedCmd();
}
// turn ratio is a bit weird to interpret
// see https://communities.theiet.org/blogs/698/1706
if (turnRatio < 0) {
otherMotor.speed = speed;
this.speed *= (100 + turnRatio) / 100;
} else {
otherMotor.speed = this.speed * (100 - turnRatio) / 100;
}
// clamp
this.speed = Math.max(-100, Math.min(100, this.speed >> 0));
otherMotor.speed = Math.max(-100, Math.min(100, otherMotor.speed >> 0));;
// stop other motor if needed
if (!this._synchedMotor)
otherMotor.clearSpeedCmd();
break;
2018-01-06 09:00:04 +01:00
}
}
2017-12-20 01:03:26 +01:00
}
2018-01-10 23:08:50 +01:00
else {
// the user is holding the handle - so position is the angle
this.speed = 0;
// rotate by the desired angle change
this.angle = this.manualReferenceAngle + this.manualAngle;
this.setChangedState();
2018-01-10 23:08:50 +01:00
}
this.speed = Math.round(this.speed); // integer only
2017-12-18 22:04:17 +01:00
// compute delta angle
const rotations = this.getSpeed() / 100 * this.rotationsPerMilliSecond * elapsed;
const deltaAngle = Math.round(rotations * 360);
if (deltaAngle) {
this.angle += deltaAngle;
this.tacho += Math.abs(deltaAngle);
this.setChangedState();
}
2017-12-18 22:04:17 +01:00
// if the motor was stopped or there are no speed commands,
// let it coast to speed 0
if ((this.manualReferenceAngle === undefined)
&& this.speed && !(this.started || this.speedCmd)) {
// decay speed 5% per tick
this.speed = Math.round(Math.max(0, Math.abs(this.speed) - 10) * sign(this.speed));
}
}
2017-12-18 22:04:17 +01:00
}
}
namespace pxsim {
// A re-implementation of Math.sign (since IE11 doesn't support it)
export function sign(num: number) {
return num ? num < 0 ? -1 : 1 : 0;
}
2017-12-18 22:04:17 +01:00
}