Hi All,
The last couple of days I've been working on a new LFO design, thinking that it might be fun to have something inspired by the Leslie rotating speaker.
What I've done is basically a variant of my StompLFO chip (same eight waveforms), but with two frequency controls. One control for the "Fast" speed, and the other for the "Slow" speed, although you can set either anywhere between 0.1Hz and 15Hz. Then there's a button which toggles between the two speeds, and a couple of extra controls that alter the "ramping speed" - e.g. how quickly the LFO speeds up or slows down. You can set the "ramp up time" independently of the "ramp down time", and both are variable between 0.2 secs and 6 seconds.
There's one other change from the StompLFO, which is that I tweaked the lowest values in the frequency table so that the LFO will stop completely at the very lowest settings. This allows you to do dramatic "slow down and stop" effects, which is quite cool.
Here's the prototype on my workbench:
(https://electricdruid.net/wp-content/uploads/2021/05/LeslieProto.jpeg)
And here's a sample of how it sounds in action:
https://electricdruid.net/sounds/ExampleLeslie.mp3 (https://electricdruid.net/sounds/ExampleLeslie.mp3)
The sound file goes through a few of the LFO waveforms, ramps up and down, square wave, triangle and sine. I haven't got the random waveforms debugged with the new code yet, but they should be fun too. The sound is an Erica Synths wavetable oscillator, Polivoks filter and VCA, with the Filter and VCA controlled by the Leslie LFO - so both the timbre and the volume are being modulated.
What..??!!!~!
7 pots, ONLY...?? 8)
Quote from: antonis on May 21, 2021, 10:22:49 AM
7 pots, ONLY...?? 8)
Only 7 ADC inputs on that 14-pin chip, Antonis! I used everything I could get!
To be honest, I could really use one more (and there is a pin free, but it's a digital-only pin) since then that might allow me to have separate Depth controls for the two modes too. So you could go from slow and deep to fast and shallow. That might be good. But there's no pin, so I either have to drop that idea, drop the Offset control (which is very useful on the original StompLFO, I reckon), or move up to a 20-pin chip (and I don't really need *six* more pins - a couple would be fine).
Brilliant, bravo!
I have a TC Viscous Vibe with one of those programmable "mash" foot-switches, goes a long way for some leslie type effects, like switching speeds or ramping. It also "takes a while" to stop after turning it off, nice touch. Ramping speed, (or inertia?), is an important part of the sound, such a cool effect.
I have a scavenged Leslie from an old organ laying around I've been meaning to rebuild, with extra controls and MIDI of course, we'll see if I ever get around to it. A heavy thing to schlep to gigs, good for the studio though, but then why use a real one, oh lazy conundrum...
I'm very much looking forward to seeing your LeslieLFO chips available in the store! ;)
I have two pedals that implement ramp-up/down with separate Fast and Slow speeds: a Pearl PH-44 phaser and a Line 6 Roto-Machine. In each case, there is only modest overlap in the range of the Fast and Slow speeds. One of the benefits is that less change in speed is crammed into each degree of pot rotation, allowing for easier dialability of the two speeds.
In the case of the Pearl, the ramping time is a function of the difference in the two speeds. Smaller differences between fast and slow speeds yields faster ramping. The Line 6 pedal has a 3-position slide switch for fast-medium-slow ramping, irrespective of speed difference.
How much variability in ramping time is actually useful? Hard to say. One possibility, that I'm quite confident you could code for, is 4 different ramping speeds in each direction, but linear or logarithmic for each speed. That might actually be useful for capturing the differential momentum of something speeding up vs slowing down; especially when trying to capture rotors of different masses. So linear (spd 1-2-3-4) then log (spd 1-2-3-4).
While I doubt the utility of different waveforms for the deliberate emulation of rotating speakers, I would imagine the goal is to have something that is capable of being applied to more than that specific scenario, making other waveforms useful.
Now, here's the $64k question: Larger true Leslie cabs, rather than the smaller Vibratones found in small parlour console organs, have separate rotors for woofer and mid-tweeter horns. Is it technically possible to have two analog outs for their respective speeds, and use one of the analog ins to set "stagger"?
(https://i.pinimg.com/236x/9f/ca/1b/9fca1b6c56c944790411a8839a18d7e7--leslie-speaker-electrical-engineering.jpg)
is there a way to control at which DC level it stops in stop mode? i really like phasers with fixed lfo/notch option next to the of moving notches.
cheers
Hi Mark,
Thanks for the thoughtful feedback and the selection of good ideas!
You might be right about the speed ranges. It would be possible to limit the controls to a smaller range, which would improve the control feel since you'd get more "detail". It would also serve to differentiate the two controls, since currently they are both identical, and it doesn't matter which you use as which. I think you might have convinced me - I'll put that one on the list!
The ramping time is a different story. Since the controls are just a pot acting as a voltage divider, it's simple to replace that with a resistor string and a switch (3 position slide switch, 4 or 6 position rotary, whatever) to select the junctions on the resistor chain if you don't want a fully-variable control. So the pot doesn't rule out the switch, but going for a switch would rule out a pot. So I'm leaving that one as it is.
Currently the ramping from one speed to the other is done linearly. This is because of the way I've done it - an interpolation between frequency increments for the LFO. Since I have a frequency table which is log-scaled (I usually do frequency controls on my chips so each octave covers the same amount of pot rotation) I could instead do an interpolation between the "fast" knob position and the "slow" knob position and then look-up the result in the table. That would work. Offering a choice between those two wouldn't be impossible, but since they're completely different methods and would require entirely different routines, it wouldn't be simple either.
I wasn't especially trying to go for a accurate Leslie clone, or to provide an LFO for such an endeavour. Rather, the thought was to add some of the drama of the Leslie speed-switching effect that organists use to other modulation effects and to get it into a format that guitarists could easily use. That said, you could fairly simply use a couple of chips to model the Treble horn and Bass rotor of a proper Leslie cabinet, and you'd be able to set the frequencies and the ramp-up and ramp-down times of each bit individually to get it correct. The heavier Bass rotor famously has more inertia and slower ramp times than the treble horn, and I think I remember reading that speed-up is different to slow-down too, by at least a little bit.
To answer the $64K question (the invoice is in the mail, btw ;)) yes, it's definitely technically possible. There's a bigger 28-pin chip with *three* 10-bit DAC outputs (the 16F1778) that I've looked at for tri-phase chorus LFOs and similar (coming to a website near you one year soon!) and that could produce two analog outputs for both rotors and potentially offer variable "stagger". But on the original Leslie cabinet, there's no linkage between the rotors, is there? They just work independently, I thought, so a two-chip solution is in some ways simpler and just as authentic.
Quote from: iainpunk on May 21, 2021, 03:20:32 PM
is there a way to control at which DC level it stops in stop mode? i really like phasers with fixed lfo/notch option next to the of moving notches.
Currently the only way is to choose when you stop it! That's fairly doable if you just twist the relevant frequency knob to zero when it gets close to where you want. If you stop it by having it ramp down all the way to zero, where it stops is basically random, since you don't know what part of the LFO cycle it will be in.
I've worked on this problem before for a client who wanted an LFO that did such a thing (slowed down to stop at a particular point) and it's actually a right PITA to do, since it involves working out ahead of time what the effect of the frequency changes will be and therefore how many further cycles/much further phase shift you'll get before stopping. It's awkward, or at least it is with my maths skills!
Quote from: ElectricDruid on May 21, 2021, 03:27:41 PM
Hi Mark,
Thanks for the thoughtful feedback and the selection of good ideas!
Always my pleasure and honour, Tom. My thanks in return for being so open to ideas.
QuoteYou might be right about the speed ranges. It would be possible to limit the controls to a smaller range, which would improve the control feel since you'd get more "detail". It would also serve to differentiate the two controls, since currently they are both identical, and it doesn't matter which you use as which. I think you might have convinced me - I'll put that one on the list!
Thanks.
QuoteThe ramping time is a different story. Since the controls are just a pot acting as a voltage divider, it's simple to replace that with a resistor string and a switch (3 position slide switch, 4 or 6 position rotary, whatever) to select the junctions on the resistor chain if you don't want a fully-variable control. So the pot doesn't rule out the switch, but going for a switch would rule out a pot. So I'm leaving that one as it is.
Fair enough.
QuoteCurrently the ramping from one speed to the other is done linearly. This is because of the way I've done it - an interpolation between frequency increments for the LFO. Since I have a frequency table which is log-scaled (I usually do frequency controls on my chips so each octave covers the same amount of pot rotation) I could instead do an interpolation between the "fast" knob position and the "slow" knob position and then look-up the result in the table. That would work. Offering a choice between those two wouldn't be impossible, but since they're completely different methods and would require entirely different routines, it wouldn't be simple either.
I think we're willing to wait. That's who good things come to, from what I'm told.
QuoteI wasn't especially trying to go for a accurate Leslie clone, or to provide an LFO for such an endeavour. Rather, the thought was to add some of the drama of the Leslie speed-switching effect that organists use to other modulation effects and to get it into a format that guitarists could easily use. That said, you could fairly simply use a couple of chips to model the Treble horn and Bass rotor of a proper Leslie cabinet, and you'd be able to set the frequencies and the ramp-up and ramp-down times of each bit individually to get it correct. The heavier Bass rotor famously has more inertia and slower ramp times than the treble horn, and I think I remember reading that speed-up is different to slow-down too, by at least a little bit.
That was sort of my reasoning behind suggesting linear AND log ramping. Although perhaps only one of those is really needed for ramping in each direction; i.e., linear for acceleration, and log for decceleration.
QuoteTo answer the $64K question (the invoice is in the mail, btw ;)) yes, it's definitely technically possible. There's a bigger 28-pin chip with *three* 10-bit DAC outputs (the 16F1778) that I've looked at for tri-phase chorus LFOs and similar (coming to a website near you one year soon!) and that could produce two analog outputs for both rotors and potentially offer variable "stagger". But on the original Leslie cabinet, there's no linkage between the rotors, is there? They just work independently, I thought, so a two-chip solution is in some ways simpler and just as authentic.
I honestly don't know the answer to your question. But a buddy in town, not far from me, services Hammond and Leslie products, with an entire basement full of cabs, and would probably know. I'll have to ask him.
Quote from: ElectricDruid on May 21, 2021, 10:17:08 AM
And here's a sample of how it sounds in action:
https://electricdruid.net/sounds/ExampleLeslie.mp3 (https://electricdruid.net/sounds/ExampleLeslie.mp3)
I have absolutely no idea when I would ever use that sound on my pedalboard.
I absolutely need that sound on my pedalboard. NEED.
Well, here's what my Leslie-servicing buddy said:
"Here's the theory of operation regarding Leslie rotors. There are two
induction motors per rotor. The fast motor is directly belt driven to both
the horn and the bass rotor. The slow motor is linked to the fast motor via
a clutch wheel which the slow motor engages by way of the rotor being
thrust upon the clutch wheel when energised. As you can imagine with any
analog device, there's a considerable amount of drag when the speeds are
switched....particularly on the bass rotor. It's so massive that it takes a
fairly long period of time to get to full speed when fast and also when
slow. The horn on the other hand is much lighter and due to the thrust
bearing mount is much more responsive to speed changes. Also, since these
motors are not RPM controlled like steppers for instance, they all rotate
at slightly different speeds. So looking at the influences governing the
speed variations, there are a few factors: Belt slippage, inherent
resistance to speed change due to mass, drag, air and bearing resistance,
Also internal motor resistance from bushings and bearings.....you get the
picture. Each Leslie is unique."
What this tells me is that, if one is aiming for a more authentic rotating speaker sound, differential ramping is in order.
I'm not sure it's the case that Leslie motor RPM is uncontrolled. Aren't they AC synchronous motors? So speed would be proportional to your supply frequency. Don't they have different diameter pulleys for 50Hz countries?
It would be true to say the two rotors are never synchronised due to tolerances in pulley diameter matching.
For multiphase, it would be worth having only 2 if there are pinout limitations. Isn't it fairly trivial to produce a 3rd phase by externally mixing 2 phases that are spaced 120deg?
Jim is pretty spot on. Speed is proportional to mains frequency and thus there are adapter pulleys for when you take the band "across the pond". Dismissing wear of bearings, belts and rubber grommets and also setting aside how much tension the owner or technician has set for the bottom belt (he belts are more like ropes than belts as well) and which pulley position they've selected for the upper rotor belt, the horn changes speed much quicker than the rotor and it can also achieve greater speed than the bottom rotor overall.
That being said, to truly mimic it, you'd need to account for those differentials and have a crossover as well (like a Leslie) so that the two elements are controlled separately.
That said, doesn't seem like that's what Tom is looking to do anyway haha
Quote from: anotherjim on May 21, 2021, 05:10:52 PMI'm not sure it's the case that Leslie motor RPM is uncontrolled. Aren't they AC synchronous motors? ...
I would be pretty sure they are wound as Induction motors. Line Frequency is a goal they never reach. They must "slip" to suck current to carry load and friction.
https://www.google.com/search?q=Induction+motor.+Line+Frequency&newwindow=1&source=lnms&tbm=isch&sa=X
Phonograph induction motors are sized and wound for low and predictable slip. Power-saw induction motors may slip 20% at maximum power and more when over-loaded. Room fans may slip a large percent of final speed for many seconds at start-up. Designing for low stall torque allows other design optimums (especially price...).
I suspect that a sudden change in bass rotor speed will slip at least 20%, and may not reach 2% slip ever.
The 50Hz/60Hz (20%) thing affects all speeds about the same and is worth a pulley change.
Hi All,
I made this circuit and replaced tda1022 with mn3007. Maybe this solution from the 70's will give you some idea for modulation control.
Unfortunately as usual I can't ulpoad file.More please on PM.
box
(https://i.postimg.cc/xJs6FsZV/Wersivoice.png) (https://postimg.cc/xJs6FsZV)
(https://i.postimg.cc/PPPTr9b9/rotor1.jpg) (https://postimg.cc/PPPTr9b9)
(https://i.postimg.cc/1gcZjQPn/rotor2.jpg) (https://postimg.cc/1gcZjQPn)
Link to rotor demo:
https://filebin.net/te7oc9zjk4wsgsnm
QuoteI'm not sure it's the case that Leslie motor RPM is uncontrolled. Aren't they AC synchronous motors? So speed would be proportional to your supply frequency. Don't they have different diameter pulleys for 50Hz countries?
It would be true to say the two rotors are never synchronised due to tolerances in pulley diameter matching.
Most small single-phase applications use shaded-pole motors. Exactly the same ones you see on old turntables. While the speed is roughly proportional to the mains frequency the exact final speed will depend of friction, the specifics of the motor, and pulleys. A whole lot of details. Putting that altogether they are unlikely to be synchronized. If they were nearly synchronized it would probably end-up with an annoying slowly changing pattern.
No idea how they dealt with the different mains frequencies. (Maybe gear ratios, or maybe they did nothing.)
Quote from: Unlikekurt on May 21, 2021, 07:10:45 PM
Jim is pretty spot on. Speed is proportional to mains frequency and thus there are adapter pulleys for when you take the band "across the pond". Dismissing wear of bearings, belts and rubber grommets and also setting aside how much tension the owner or technician has set for the bottom belt (he belts are more like ropes than belts as well) and which pulley position they've selected for the upper rotor belt, the horn changes speed much quicker than the rotor and it can also achieve greater speed than the bottom rotor overall.
That being said, to truly mimic it, you'd need to account for those differentials and have a crossover as well (like a Leslie) so that the two elements are controlled separately.
That said, doesn't seem like that's what Tom is looking to do anyway haha
I did a bit of research into Leslie cabinets at one point because I was working on an FV-1 program to do a rotary speaker effect.
What I found was:
Drum slow 0.67Hz
Drum fast 5.7Hz
Rotor slow 0.8Hz
Rotor fast 6.67Hz
The drum has more inertia than the rotor, so speeds up and slows down more slowly than the rotor. I can't remember what I learned about the crossover. I used 800Hz, but I don't remember if I found that number or did it by ear.
While I wasn't intending going and building an analogue Leslie emulation, I *was* intending to make it easier for people to do so. This chip does the speeds you need and does the ramping for you, and with a couple of chips for the drum and the rotor, you could do something pretty authentic.
But I think the key point for me is that the Leslie speaker shows not only that we like modulation effects, but that there's something very dramatic about *changing* modulation effects, and that's the bit I wanted to get. Slow phaser is great. Fast phaser is good too. But a phaser that slowly speeds up during the height of your solo when you stamp on the button - that adds some real excitement!
It's this use of the *speed change as an effect in it's own right* that for me is the crucial bit of the Leslie speaker and the way organists have used it, and that's what I'm after with this.
Crossover schematic,
(http://i296.photobucket.com/albums/mm170/pricedotjohnmarshall/incorrect%20leslie%20crossover_zpsc1busjlk.jpg)
Lows work out as f0 = 624Hz, Highs work out as f0 = 1007Hz, so a rough estimate for the crossover would be sqrt(624 * 1007) = 793Hz. Close enough to 800Hz. From what i can work out both drivers are supposed to be 16 ohms so reason for the crossover asymmetry isn't clear. (Off-hand, some possibilities: it relates to the woofer impedance rising, it's a tweak to make the crossover work acoustically, helps reduce power to the highs, the 16 ohm info is wrong.)
I concur Tom, a Leslie sim is great and everything but only one route to take. Dynamic LFO speed and depth and that kind of thing really goes a long way in making LFO modulated sound seem "organic" and less hamfisted. That's the beauty of lots of LFOs in a modular system, or software like Renoise.
I love the slow down of a Leslie. Pity it can't be made to do it continually without speeding up in between. Or can it? Is there an equivalent of a Barberpole/Shepard tone in a modulation effect?
Quote from: anotherjim on May 22, 2021, 04:24:50 PM
I love the slow down of a Leslie. Pity it can't be made to do it continually without speeding up in between. Or can it? Is there an equivalent of a Barberpole/Shepard tone in a modulation effect?
I suppose something similar would be possible if you were to introduce higher frequency components gradually and then fade them out as they got lower. That's how the Shepard tone works, and there's no reason why a similar thing at modulation frequencies wouldn't also work, but it's worth noting that the introduction and removal of various higher harmonics would make the waveform quite variable. Since the Shepard tone is of much higher pitch, we can't directly perceive the waveshape, only the "timbre" (much more vague!) but at modulation frequencies, you'd hear extra "wobbles" coming in, slowing down and disappearing as other wobbles came in above them. Might be good nonetheless.
I've had fun doing fast switches in one direction and slow ones in the other. So you can do long dramatic slowdowns, and then switch virtually instantly (instantly, if I wanted it that way - I felt 0.2sec was short enough) back to higher frequencies, ready for the next dramatic slow down. That's perhaps a better option for what you wanted.
Quote from: anotherjim on May 22, 2021, 04:24:50 PM
I love the slow down of a Leslie. Pity it can't be made to do it continually without speeding up in between. Or can it? Is there an equivalent of a Barberpole/Shepard tone in a modulation effect?
in Fruity Loops, i programmed in a barber-pole chorus, but it was a pain in the butt to automate 2 parameters on 3 phasers and make it sound organic. iirc i went with sine waves for the depth and sawtooth for the freq. you need atleast 2 that are out of phase to make it sound continuous, i used 3.
cheers
edit: just redid a 2 voice barberpole phaser, i'm sorry for the somewhat corny sounding synth, it was the first preset i randomly clicked on.
https://voca.ro/1oxizJEwzTlK
A few more notes about where I've got to with this.
I ran out of time in my first version of the code (it was a very rough and ready proof-of-concept type thing) so I went back in and rejigged it all. It now calculates LFO samples in blocks of 16, with an output sample rate of 31.25KHz and 10-bit resolution. Plenty good enough for an LFO!!
Following Mark's suggestions, I changed the frequency ranges for the Slow and Fast frequency knobs. The Slow range is now from 0 to 1.6Hz, and the Fast range is 0.8 to 12.6Hz. Rather than have two lookup tables, and since the ranges overlap, I used one big table, and the slow control uses the bottom 4/7ths and the fast control uses the top 4/7ths.
I also spent a long time playing with the control response curve to get a good feel. This is especially difficult when it goes all the way down to zero.
In the end, the control response looks like this:
(https://electricdruid.net/wp-content/uploads/2021/05/FreqControlResponse.png)
The response is based on octaves from 128 upwards (so the entire range of the fast control) and is linear from 128 down (so the bottom half of the slow control is linear). This seems to work well.
Mark also suggested I play with log/expo versus linear ramping between the frequencies. I've done this too, and since I based it on the lookup table above, the ramping response is exponential for higher frequencies and then linear when we get to really low stuff. This prevents the low end taking *ages*. There's four octaves between 1Hz and 8Hz, but there's also four octaves between 0.01Hz and 0.08Hz, so if we're *ever* going to down to zero, we need a linear element in the mix!
The response from the graph above gives a nice feel to the ramping up and down.
I added an PWM-driven output LED on the spare pin, because the main LFO output is a voltage output from a DAC and not ideal for driving an LED without more parts.
I've got a question for you all, too. What do you think about tap tempo on such a thing? It'd be possible (tapping would set the tempo of whichever of the two speeds you were in) but it means having three footswitches (effect in/out, Fast/Slow mode, Tap tempo). And how slow should the slowest taps be allowed to be? On the StompLFO, I think it times out after 4 seconds, so you can tap 0.25Hz but no slower. I'm not convinced it's worth it, and I'm wondering if there isn't something better to do with the pin I'd put aside for it (a digital input pin).
I know everyone is different but as a performing musician of 25+ years, I rarely use tap tempo anything. It might just be me, but I find the skip between old tempo and new tempo jarring, it's sounds like a "mistake" to me. I've heard guitarists incorrectly tap in tempo, or forgot how they set the quantization and all of a sudden the LFO is way off. If that hasn't thrown off the rest of the rhythm section, the tapper still has to bend over and fix whatever went wrong, or sit there tapping until it works. Either way, sucks to be on stage dealing with that.
However, I love the tap tempo pin on your LFO ICs though, because then I can use it for sync, which I do use all the time.
1) Thanks so much for electing to implement my suggestions, and finding them useful. That pleases me.
2) When switching between fast and slow is essentially "tap-controlled", I can't see a cogent basis for needing tap-tempo on top of that. Certainly one reason is that, as a Leslie emulator (and I realize it is not intended to be used ONLY for that), with ramping, any intended speed, established with tap tempo, is fundamentally a relative speed. I.E. it's X amount faster or slower than the "other" speed. Here, everything "goes all Heisenberg" on you. You can't tell how much faster/slower the new speed is if you're listening to the current speed, and you can't hear and set the new speed properly, unless you get to compare it to the "other" speed.
I could sort of see the utility of a completely different arrangement that had one momentary footswitch for speeding up, and a second for slowing down, with amount of deceleration or acceleration depending on how long one holds the corresponding switch down for. But that's a whole other system.
Like Gary, I'm not a big user of tap-tempo myself. But even though some folks truly need it, I think in this application it invites more problems than it solves. Thanks for asking, though.
How about a version of 2 button digital clock time setting method. A tap changes speed by a step in the ramp up or down. Hold the switch on for longer than a tap and it goes into auto ramp until the switch release when it holds where it got to. A knob presets the inertia (rate of auto ramp).
The feeling I'm getting here is that the tap tempo probably isn't worth it, but it's quite nice to have a sync input!
Ok, so the feature stays in, if only so that the tempo can be fixed to an external pulse. That avoids the third footswitch too, although it'd be simple to add for anyone that really did want tap tempo.
I'll have to work out what that looks like in the code with the two speeds. Either speed could be set by the control knob or by tap tempo. The previous code keeps track of which is being done, so if you've tapped a tempo, it ignores the control knob until it moves. That'll need doing for two knobs in this version.
Also there's a potential problem with sync, which is that if you had sync pulses coming in, and then switched speeds, you'd finish up with both speeds synced to the same pulse rate. Not very useful. Not sure how you deal with that.
On the Leslie crossover:Quote from: Rob Strand on May 22, 2021, 05:49:03 AM
[snip]
Lows work out as f0 = 624Hz, Highs work out as f0 = 1007Hz, so a rough estimate for the crossover would be sqrt(624 * 1007) = 793Hz. Close enough to 800Hz.
[snip]
It's an 800 Hz crossover, but it's component values don't correspond to modern filter synthesis methods or prototypes (Cheby, Butterworth, etc.). However, they do correspond to filter design methods from an earlier era (m-derived). In the Leslie crossover, the treble filter is inverted to eliminate the notch that would otherwise occur at the crossover point.
(https://i.postimg.cc/DzJQgzjh/Leslie-Crossover-Design.png)
Radio Engineers' Handbook, Terman, F.E., 1943 (https://archive.org/details/termanradioengineershandbook1943/page/n1/mode/2up)
That's what you get for putting the word "Leslie" in the title Tom ;)
Someone's bound to come along looking for Leslie stuff at some point, and when they find this thread, they'll have the frequencies and times, the crossover frequency, and an LFO chip to put it all together with! It's a little goldmine!
I'm just wondering what circuit to try this thing out in. I've got a Flangelicious board built up that might be interesting, and it shouldn't be too hard to plug the LFO into that. Pity I never built an expression pedal/ CV input into the one I boxed up, since that would have saved me some work.
Quote from: anotherjim on May 22, 2021, 04:24:50 PM
I love the slow down of a Leslie. Pity it can't be made to do it continually without speeding up in between. Or can it? Is there an equivalent of a Barberpole/Shepard tone in a modulation effect?
Or...dynamic envelope? Like the trigger from a downward envelope filter.
QuoteIt's an 800 Hz crossover, but it's component values don't correspond to modern filter synthesis methods or prototypes (Cheby, Butterworth, etc.). However, they do correspond to filter design methods from an earlier era (m-derived). In the Leslie crossover, the treble filter is inverted to eliminate the notch that would otherwise occur at the crossover point.
There's many reasons for that. It's more common for crossovers not to match textbook formulas. The formulas are only used for naive designs or "don't care too much" designs. Even in terms of textbook stuff you need to consider,
- The outright impedance. If you have different impedance tweeter and woofer the part values will be different on the two halves.
- The woofer voice-coil inductance often requires part value changes.
If you account for voice-coil inductance, speaker roll-offs, different distance to the drivers you can end-up with a crossover that looks nothing like a textbook circuit. The fact the Leslie is rotating puts a spanner in the works as far as distances to the drivers goes.
:icon_question: any updates 8)
Welcome Modj!
Well, the situation is that I'm getting ready to "release this chip into the wild"!
I've been doing a bit of work on it and finishing a few things off, and I also need to finish writing up the documentation for it, and I'd like to do a fully-analog rotary speaker effect circuit as an example application circuit. So there is some work to do still.
The chip itself works well, and I recently added the option to have a sine wave with separate depth controls for the two speeds (so there's a Fast Rate, Slow Rate, Fast Depth, and Slow Depth, and both are ramped gently from one to the other) or alternatively you have only a single Depth control for both settings, but you get a Waveform control that gives you eight waveforms (so Fast Rate, Slow Rate, Depth, and Waveform).
The Tap Tempo or sync feature is out, I'm afraid. It's too complicated to see how it would work with the two speeds. It just doesn't make much sense. Are you syncing the current speed? What happens if you change to the other rate? Does it sync that too, or now it ignores the sync? Should the new rate be whatever it was set to, or should it be relative to the sync? How? There's just too many questions about it.
So instead I've used that pin to select between the two options that I think *will* be more useful. The separate depth controls makes a lot of sense in BBD applications since you don't want the same depth at faster rates - it will produce more pitch shift. So the depth can be reduced to compensate and the overall effect can be maintained.
So...more soon..ish!
:icon_biggrin:
Sound delish allready. can't wait to build this.
Can't wait.
Having a chip like that would be awesome
Problem is there is more to rotary emulation than just the LFO, how do you plan to emulate the sound itself? Dual chorus?
Quote from: ferdinandstrat on August 13, 2021, 10:18:08 AM
how do you plan to emulate the sound itself? Dual chorus?
For an actual rotary speaker effect, yes, that's exactly what I'd got in mind!
Split the signal at 800Hz, use two chorus circuits to give plenty of swirl and ambience and a bit of pitch shift (so adjust delay times and depth to suit) and have the two Rotary LFO chips set up for the typical Leslie frequencies and ramp times so it sounds pretty authentic.
Of course, that's not the only option, and other people might decide some other circuit is more appropriate or just gives a better sound or whatever.
Beyond that, I want a flanger that speeds up when I stamp on it, and a phaser that slows down and stops when I stamp on it. Both of those sound cool too. Lots of stuff to do with this one!
Quote from: ElectricDruid on August 13, 2021, 01:31:29 PM
Quote from: ferdinandstrat on August 13, 2021, 10:18:08 AM
how do you plan to emulate the sound itself? Dual chorus?
For an actual rotary speaker effect, yes, that's exactly what I'd got in mind!
Split the signal at 800Hz, use two chorus circuits to give plenty of swirl and ambience and a bit of pitch shift (so adjust delay times and depth to suit) and have the two Rotary LFO chips set up for the typical Leslie frequencies and ramp times so it sounds pretty authentic.
Of course, that's not the only option, and other people might decide some other circuit is more appropriate or just gives a better sound or whatever.
Beyond that, I want a flanger that speeds up when I stamp on it, and a phaser that slows down and stops when I stamp on it. Both of those sound cool too. Lots of stuff to do with this one!
You are free to use the schematic I posted for the Korg CX3 thing if you want, I am not sure how close it is to the real deal though
I did notice that flangers come close to that rotary sound more than chorus pedals though
Quote from: ferdinandstrat on August 13, 2021, 01:55:46 PM
I did notice that flangers come close to that rotary sound more than chorus pedals though
That implies two things to my mind:
1) We want delays at the shorter end of what would be acceptable for chorus, or into the flanger range
2) Some feedback is probably acceptable or even a good idea (it typically wouldn't be for a chorus).
I can't see any way to determine these details beyond practical experiments. The only trouble with that plan is that different people have different tastes and opinions, so you tend to get several different answers. Basing yourself on some kind of "that's the physics of the situation!" approach gives you a justification outside of "I thought it sounded good".
Quote from: ElectricDruid on August 13, 2021, 07:16:34 PM
Quote from: ferdinandstrat on August 13, 2021, 01:55:46 PM
I did notice that flangers come close to that rotary sound more than chorus pedals though
That implies two things to my mind:
1) We want delays at the shorter end of what would be acceptable for chorus, or into the flanger range
2) Some feedback is probably acceptable or even a good idea (it typically wouldn't be for a chorus).
I can't see any way to determine these details beyond practical experiments. The only trouble with that plan is that different people have different tastes and opinions, so you tend to get several different answers. Basing yourself on some kind of "that's the physics of the situation!" approach gives you a justification outside of "I thought it sounded good".
Yeah which is why it's a good idea to have a chorus with manual and feedback controls........wait doesnt that basically make it into a flanger?
And yes, different strokes but this way at least you can get snobs off of your back :icon_lol:
Any flanger with some possible longer delays gives chorus sound. Andy Summers all the way... It does not render chorus obsolete, because dedicated Chorusses with wider delay spans give better vibrato options because of the bigger depth range giving higher pitching.
All depends which effect you want.
The feedback gives some slight resonance which makes for a better sim of a rotary with all the reflection going on. If you split in low and high you are very close. The pulsating tremolo effect is missing though. But that only applies to the modulated sound, not the dry signal coming through the cabinet.
any updates*?
Quote from: modj on December 09, 2021, 12:27:59 PM
any updates*?
Well, it's still on my bench. The chip itself is pretty much done, I'd say. I've been playing with a couple of example circuits using it, and I'm not happy with those just yet, so I haven't released it.
One is a dual speed Tremolo, which uses the Fast/Slow mode switching to provide two preset rates/depths for a trem.
The other is a similar thing, but driving a OTA-based phaser with 4 swept stages and 2 fixed ones. I thought that might be quite cool with the speeding-up/slowing-down effect.
I also sketched out a full analogue rotary speaker simulation using two BBDs for separate high band / low band spinning craziness. This needs two ROTARYLFO chips, plus tons of filter, mixers, etc etc - it's a big circuit. Whether it is really worthwhile trying to build such a thing entirely analogue seems like an open question to me at this point, having seen what's involved!
I'm also trying to finish another envelope generator design, and that's first up, so I haven't worked on the LFO for a bit. Hopefully I can get the envelope done and then get back to it and get it finished off too.