Help! Buster has busted.
Pages: 1 2
Steve Drain (222) 1620 posts |
As a Royal Navy helicopter pilot for many years and with two years teaching helicopter aerodynamics to student pilots I am probably qualified to comment here. ;-)
So far, that is a pretty good summary. It would be unfair to carp about details.
Very few helicopters have had hand throttles for half a century. I learned on one that did, but the perils of getting the rotor speed wrong have been much alleviated by automatic systems.
I am afraid that is so wrong, and it is the reason I am replying. ;-( I will excuse the misuse of ‘rudder’ as it might give the right idea, but the speed of the tail rotor is constant, since it is directly connected to the main rotor. The pedals adjust the collective pitch of the tail rotor blades to change its thrust. It is the ‘torque reaction’ of the drive to the main rotor that this thrust is balancing, and has nothing to do with gyros. Small adjustments to that thrust will turn the body of the helicopter.
If the torque reaction is not balanced by tail rotor thrust it will turn the body of the helicopter in the opposite direction to the rotor. That might be a disaster, but not necessarily. In forward flight the tail boom and fin provide lateral forces and if quick, a pilot can lower the collective, reducing the torque to zero. The helicopter will descend, but under control in a condition called autorotation, from which a safe landing can be made. This is Aldershot, so I hope this diversion is acceptible. ;-) |
Rick Murray (539) 13850 posts |
You must have found Airwolf to be somewhat amusing, all the “crank up the epic looking throttle to go faster” stuff. And we’ll just gloss over the aerodynamic issues of going even faster by the use of rocket thrusters. ;-)
That’s okay. I basically learned this stuff in a book1 that didn’t go into much detail about the behaviour of the tail rotor, other than “if it fails you’re screwed”. I did wonder how it would change speed, maybe some sort of slip clutch arrangement? But after your explanation, variable pitch there is a lot simpler.
I didn’t say gyros, I said gyro effect. That being that a thing with a part that is spinning will have a natural inclination for itself to start to spin (that’s why if you have a fancy gyroscope toy in a little metal cage, setting the flywheel part spinning will cause the cage to spin as well). It’s this that the tail is counteracting.
This is where your Royal Navy background is coming out. I bet one needs balls of steel to pull that off… 1 And two minutes flying a Westland Lynx (with the training wheels on2). 2 Direct quote of the proper pilot. Apparently they’re “interesting” to fly with the stabilisers off. He didn’t demonstrate. |
Steve Drain (222) 1620 posts |
I go further back to Whirlybirds. ;-) Even today you will hear the sound effect on film of the rotor increasing in speed as a helicopter climbs away. It sounds like a car would, so it must be right.
That is not so ridiculous in principle. Additional forward thrust offloads the main rotor allowing it to remain aerodynamic at higher speeds. But Airwolf was just daft.
It still has nothing whatever to do with gyro effect. It is all to do with torque reaction. You will come across people, some of whom should know better, trying to explain rotor dynamics in terms of gyros. They are wrong, wrong wrong.
Putting on my physics teacher’s hat, that too is not the gyroscopic effect. With good bearings the gyroscopic effect only happens when an attempt is made to change the direction of the spin axis. It then turns at right angles to both the spin and applied turn.
You train at autorotations very reqularly and full engine off landings often. It is a bit like gliding. Doing it without a tail rotor is not something you train for, but might think quite hard about. ;-) Edit. Pilots today do a lot of simulator training and might be faced with a tail rotor failure emergency. |
David Feugey (2125) 2709 posts |
This wasn’t my point. I’m just saying that a complex OS must stay simple to use. Example: archives. There is the case where it adds complexity (different way to manage them, compare to directories). And there is the case that add them without adding complexity: ArcFS, SparkFS, etc. And sometimes there is a third case: no functionality added, but more complexity. See Gnome3 VS Gnome2.
Wasn’t my point too. I wanted to say that if you wan’t to learn to go from point A to point B, it’s easier to begin with simple solutions (by foot, with a bicycle) before learning to drive a space shuttle. Even if the space shuttle is best way to go far away.
Correct. Was my point. Simple is sometimes good. Some people still asking why C is so popular, compared to other languages. The limited size of the base framework is important. Of course, it’s fantastic to have a framework that can do everything. But for a newcomer, thousand of pages of docs is a no go.
No, a RISC OS one :) |
Rick Murray (539) 13850 posts |
My mistake, I thought we were talking about the level of complexity in OS libraries. Yes, generally speaking operating systems nowadays are quite a bit easier than in the past. There are many imperfections, but “stuff plugs in” without all the hassle of fiddling with IRQs and the like in days gone by. Okay, the memory tweaking might have been a one-off, but you needed to know about HIMEM.SYS, LOADHIGH, and the fact that some things liked to be loaded in a specific order and/or not loaded high. All problems that nobody needs to care about these days. Tell me, how many people using modern PCs have any idea what A20 is? [ https://en.wikipedia.org/wiki/A20_line ]
I disagree. One must go with appropriate solutions. By all means favour simplicity over complexity, but go with what is most appropriate.
Because it is well known, widely supported, and is often used for operating system components? Useful, also, to distinguish between interpreted languages and compiled languages. They each have their strengths, even though there is some overlap.
C has just as many (if not more) libraries and frameworks available. They usually aren’t part of the base compiler installation, but can be added.
Ah, Chris Mahoney’s one. I didn’t use that as, well, it wasn’t that hard to use the URL module directly. The only quirk is that initiating the fetch doesn’t actually do anything, that part happens when you loop waiting for something to happen. :-) I note (brief look at the source) that httplib doesn’t appear to set the “Host:” header (does URL do this automagically?) and it doesn’t look as if it can handle redirections … though, arguably, URL ought to do this for itself before people devise a dozen different ways of doing the same.
Sometimes – the key word there. Thoughts and methods change over time. When processors were slow and expensive, clever hardware was important. But that’s no longer the case, a little microcontroller can run rings around any amount of cool hardware – that’s why today’s washing machines have electronics inside rather than the nifty mechanical things that came before. Plus the tech adds extra possibilities like sensing the amount of washing present to vary the water level specific to what is being washed. And in the future? Who knows… Maybe I’ll win the lottery and have somebody else worry about that. Maybe Iran and UK will go to war, blow the crap out of everything, and we’ll be back to using those old rustic lavoirs? |
nemo (145) 2552 posts |
Helicopters: I was always amused that the RAF lumped helicopters and hovercraft into the same “things that can’t glide” book. Mind you, I’m so old I had to sit on the parachute when I learned to fly. |
Chris Mahoney (1684) 2165 posts |
I’m pretty sure that AcornHTTP (which is called by URL) does this, although I’m at work right now so can’t check.
Agreed. It’s on my to-do list to put it in AcornHTTP, but given my backlog don’t expect it any time soon! |
David Feugey (2125) 2709 posts |
True too, but that’s another subject. Libraries are here for modularity, but tend to become towers of babel… sometimes used only by 1 application.
Yes, but there are steps to follow too. IT programming is the only domain where it seems to be a problem.
For IBM, in four years it will be brain like computing, with analog tech. It’s even not a joke. |
Rick Murray (539) 13850 posts |
I suppose you know Python has “made it” when it turns up in college-style calculators. Complete, I should add, with code colourisation, judging by the photos.
|
Rick Murray (539) 13850 posts |
What I don’t quite understand is why somebody would pay €75 for a “clever” calculator that offers a miniscule display and… I’m not even sure I want to contemplate how to enter code on such a device. Plus, I bet the processor is none too impressive either. For “that sort of price” you can get low spec Android tablets. They aren’t overly impressive (if my “freebie” one is anything to go by), but there’s a screen large enough to look at, large enough to offer a full keyboard (plus the ability to use a Bluetooth keyboard), a processor more capable than you’d ever find in a calculator, and as an aside it can play movies, do the usual web browsing stuff, IRC, email, calendar, word processor, cloud, blah blah. Here is a screenshot of my tablet doing some graphical Python stuff. I didn’t write it, it’s one of the demos. Not sure what I tweaked when prodding the screen but I quite like the result, it’s like an event horizon.
Worth noting is that the Python IDE was a big install that had to unpack a lot of stuff the first time, and then it needed to retrieve and unpack even more library code – matlab (IIRC?) and it’s dependencies took about half an hour to fetch and make wheels, whatever that means. I didn’t dare try any of the Qt5 examples. So – why would somebody buy a smart-ish calculator when they could get a tablet that does so much more than a calculator for, uh, the same sort of price? |
nemo (145) 2552 posts |
It’s got buttons. |
Jeffrey Lee (213) 6048 posts |
Texas Instruments have/had a stranglehold on the “graphics calculators for schools” market in the US for many years. Not because their calculators were better than the competition, but because they managed to get their calculators featured in all the textbooks. https://www.youtube.com/watch?v=zoGl8-Wc-L0 With the rise of tablets and smartphones I expect that TI, Casio, and others are starting to feel the crunch. Adopting Python may be one of their attempts to stay relevant – having Python on a calculator will be a lot more useful than the proprietary programming languages that you had to use before. And they can still try and convince schools that calculators are better than tablets precisely because of the fact that you can’t do half the stuff that Rick mentions. Sure, enterprising students will still install games on them, but for most students if a teacher sees that a student has a calculator infront of them then they can be confident that they’re doing work and not instagramming their latest myface tweet. Beyond schools though, yeah, graphing calculators are pretty much pointless, and have been for several years. |
Steve Pampling (1551) 8172 posts |
Decades? |
David Feugey (2125) 2709 posts |
And some works with BBC Basic too :)
That depends, since it’s probably “since school” for everyone. |
Andrew Rawnsley (492) 1445 posts |
One of the things about calculators which is easy to forget, is that they (by design) remain “offline” and “fixed function”. This allows them to be controlled in ways that phones/tablets etc cannot. For most purposes this is irrelevant, but in the schools market it prevents access to unauthorised materials during examinations. Calculators are usually permitted in science/maths exams, phones/tablets not so much ;) Mind you, I remember graphical calculators had just appeared as I went through A-levels, and since basic calculators were permitted, so were they. I recall kids trying to cram formulae and notes into the (extremely limited) program memory as text strings to smuggle into exams. Not sure it helped them much, since they don’t help much in algebraic proofs, but it shows how any piece of technology will be abused given the chance. Also, the manufacturers tended to partner up with schools to offer a “standard model” at a small discount. I recall being “taught” how to use a fairly basic model Casio calculator by a maths teacher who had (in the previous weeks) sent a letter round to parents offering this model through the school purchase scheme. It was probably five pounds cheaper than Argos or some such. The combination of “standard being taught by the school” and “discount” was enough to flock parents in droves. Thinking about it, in hindsight, maybe Acorn should have made the schools into dealers… There’s nothing a school likes more than fundraising ;) |
GavinWraith (26) 1563 posts |
There was a period in the mid-80s when TI were offering a special deal to universities comprising a desktop computer bundled with their Scheme interpreter and a copy of SICP (Structure and Interpretation of Computer Programs). As an educational package this made a lot of sense, as Scheme was always big in universities in the USA. They made a sales push for the UK, and Sussex University certainly considered it. In the end it was decided that Scheme, being typeless, was too old-fashioned. We started with ML for introduction to programming. |
Pages: 1 2