![]() |
Are we still using only 256 unique PWM steps?
It seems like that limitation should be lifted when using the cRIO board, which appears to be a rebranded NI-9076 board running the Xilinx Spartan-6 LX45 FPGA, which looks like it is a 16-bit controller, and that seems to usually be the "bit chokepoint" when trying to generate a pwm signal.....This isn't a limitation by the victors or jags are they? I haven't taken apart a Victor, but it looks like there are just a bunch of LM317s in there. It looks like there's a large capacitor. Now if you just have an RC filter in there (which explains the large cap), there should be no problem accepting a higher resolution PWM signal. I haven't tried this. Would that be possible to do? Sometimes 8-bits just isn't enough.
|
Re: Are we still using only 256 unique PWM steps?
There are many good explanations of the PWM communication protocol on the web and on these forums. I suggest starting there before moving forward.
Quote:
The FPGA is not a 16 bit controller. The big capacitor is to handle the large current spikes when the bridge is switched. These PWM signals are not decoded by an RC filter. 8 real bits certainly is enough for FRC. The "bit chokepoint" in PWM is fundamentally limited by the IO update rate and the combined accuracy of the oscillators in sender and receiver. |
Re: Are we still using only 256 unique PWM steps?
Quote:
|
Re: Are we still using only 256 unique PWM steps?
Also, what bit controller is the LX45? Everything I'm seeing is saying it's 16-bit.
|
Re: Are we still using only 256 unique PWM steps?
Quote:
I believe there is additional resolution when using a Jaguar in CAN. Quote:
Note: The xilinx microblaze is a 32 bit processor. |
Re: Are we still using only 256 unique PWM steps?
Quote:
|
Re: Are we still using only 256 unique PWM steps?
Quote:
As to the resolution, most teams don't use the ~120 bits (accounting for the deadband and only one direction) as it is and most don't even calibrate the controllers. |
Re: Are we still using only 256 unique PWM steps?
A few small points on the PWM signals.
The WPILib API uses a single float value ranging from -1 to 1. Under the hood, it maps this between the usable high and low int values based on the calibration info. This doesn't attempt to linearize the response, but does remove the outer shoulders. Even when not calibrated, these values are given mfr specific settings which should lead to pretty good performance, especially for drive motors. As noted, neither the 9076's Freescale processor or the FPGA are 16 bit. The FPGA, as used, has no cores. It is highly reconfigurable, but for FIRST, thus far it acts as the high-horsepower I/O engine. It is capable of I/O rates up to 40MHz, but the I/O modules, especially those selected for use in the FIRST competition, take many cycles to reconfigure. The digital module being used is highly flexible with 32 channels, but with an access time of around 6.5microsecs. For discrete I/O on the robot, this is often the limiting factor -- encoder rate, PLM generation resolution, digital triggers, etc. As shown at ni.com/motion, the 9076 is not the limiting factor. Greg McKaskle |
Re: Are we still using only 256 unique PWM steps?
Quote:
You can get more resolution than 8 bits if you modulate the PWM command properly. For example, if you want 9 bit resolution you can alternately add and subtract a half bit from every output. For example, let's say you really want an output of 132.5. In that case, send 133 one sample and 132 the next sample (over and over again) and the electronics and mechanics of the system will act just as if you're sending 132.5. Of course, this depends on the system "time constant" being much slower than the rate you are outputting PWM commands (which it usually is for an FRC robot). If you want more resolution than that, you can create a fancy algorithm with a counter and a threshold, which is how PWM is actually implemented in many cases. |
Re: Are we still using only 256 unique PWM steps?
When I teach my students, I stress the difference between Pulse Width Modulation and Duty Cycle Modulation. It is a bit pedantic, but I feel that it helps to clear things up.
There are four measurements that can describe the timing of a square wave, but you can use any two to fully define it: duty cycle, frequency, positive width, negative width. The choice of which two depends heavily on the application, and helps separate the relevant factors. PWM is dimensioned by the positive width (value) and the frequency (symbol rate). As frequency changes, the positive width stays the same to send the same information. DCM is dimensioned by the duty cycle (applied 'voltage') and the frequency (allowed ripple). As frequency changes, the duty cycle stays the same to send the same average 'voltage' to the motor. The microcontroller in a victor or jaguar measure the pulse width of the PWM signal from the cRIO and calculate an appropriate duty cycle for the DCM signal they send to motor through their bridge. In mechanical terms, you can dimension a drawing many ways and produce the same part, but you may choose to show and hide a particular set to better communicate intention. |
Re: Are we still using only 256 unique PWM steps?
To beat a dead horse, 256 levels of PWM control are plenty. One must consider the system to which the output of the controller is connected - DC motors don't really have much of a reaction to voltages that differ by something on the order of 0.1 volt. Take that into the mechanism to which the motor is attached, and inertia will foil you every time.
Once you have reached overkill, more is not useful. |
Re: Are we still using only 256 unique PWM steps?
Doing the math for grins, a 4 microsecond change in pulse width signal to the Victor corresponds to roughly 0.8% change in the duty cycle output which is approximately equivalent to a 0.1 volt change seen by the motor. A 0.1 change in voltage to a CIM operating at 12 volts into a constant load at the max efficiency point on the curve results in about a 1% change in motor speed. I wonder how stable and accurate the pulse width coming from the DSC is. Has anybody ever hooked it up to a logic analyzer? |
Re: Are we still using only 256 unique PWM steps?
Quote:
The reason I mentioned that it would be nicer to have more resolution is well...put it this way. This year, the majority of teams (including 3138), had shooter wheels with a speed controller. If your max speed (that is full voltage to the motors/128 counts) is 4000 RPM, which is easily attainable, the finest you can change your motor speed by is ~30 RPM, which can be a heck of a difference. I'm sure there's got to be a way to use it as an unsigned value (that is 0-12V rather than -12-12V) to get 256 counts of resolution, but that would still only give you a 15 RPM resolution. While many teams figured out it didn't make a huge difference, it would be nice from a controls perspective to be able to control it down to a single RPM (which would be attainable with a 12-bit PWM signal) |
Re: Are we still using only 256 unique PWM steps?
Quote:
a) your wheel has sufficient moment of inertia, and b) you are reading the wheel speed sensor, computing your control algorithm, and outputting a new motor command fast enough, ... then you are not limited by the resolution of the motor command. In fact, you can get very accurate and stable motor speed with only 1-bit resolution of the command (ie ON or OFF), as described here. |
Re: Are we still using only 256 unique PWM steps?
Even an LT3080 would go vapor phase / light on fire / explode if used for this. Simply put, linear regulators are not used to drive motors. You should look up "H-Bridge" for some good explanations of how motor controllers work.
I'm still not convinced that you would actually see any benefit from additional resolution. The issue is resolution vs accuracy. In your 30RPM vs 4000 RPM example you have less than 1% error from resolution, but the accuracy is going to be many times that error from sources. For example, a good battery's rest voltage will vary several volts over the course of a match, and the actual voltage seen will swing wildly during normal transient loads. Open loop, any extra resolution in the bridge's duty cycle will be worthless. To compensate, wrap a PID loop around an encoder on the wheel. This will help with the accuracy error sources, and will eventually oscillate around a few values as it tries to dial in the speed. It will never be perfect, but it should be good enough. |
| All times are GMT -5. The time now is 23:04. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi