How to revolutionize aviation industry

I have been ranting about that personal aviation is starving and struggling at best to stay alive. But there is no such reason it has to stay that way. If nothing is done, ever increasing regulation and bureaucracy and the increasing expenses will make personal aviation extinct sooner rather than later. And in my opinion, sportplanes/LSA are not the right answer. They are substitute for something else that would be really needed instead – airplanes are most useful when they are used to get somewhere – with fun and with style. Let’s face it, flying traffic pattern is such hardcore fun that only dedicated pilots like me and maybe the readers of this blog will enjoy about. And to get somewhere, there is the blocker, which is weather. And I think there is a solution for that:

What is missing in general currently in current general aviation market is simply:
– affordable mass produced aircraft that are so simple to fly that much greater portion of population can do that, and with less training than currently is required for pilot’s license.

Lets address this simple to fly thing: mechanically controlled aircraft can be easy to fly to an extent. For example Diamond DA40 is very easy airplane to fly. However, it still requires a lot of training to fly one. To make airplanes more accessible to people, controls should be extremely simple to learn, should not be any harder to get it than learn to ride a motorcycle, or ideally, it should be easier. So what would be the cure then?

In my opinion the answer is in fly-by-wire. No control rods, cables and the like, but instead a (doubled for redundancy) computer that controls all control surfaces and specially purpose built brushless DC servo motors which are directly connected to control surfaces. User uses a fully electronic stick that only gives input to the computer which then decides what control surfaces to move and how much to respond to the input the way user wanted. Pushrod assemblies are very complicated, have many parts, of which many are expensive. To make the plane less expensive, all expensive parts should be designed out of it. Servo motors can be made in large quantities quite inexpensive and the control system will not be super expensive either as it would use off-the-shelf hardware. Doubling that for redundancy would not be very expensive as the hardware in question is similar than what controls all quadro copters and toys like that.

Second enabler will be avionics which displays only important information to the user. E.g. user does not need to know oil pressure, oil temperature, EGT, CHT etc. values if they are all well and optimal, ECU is controlling the engine without bothering you about mixture controls or other obsolete things, and trend analysis done by the computer concludes that trends are not alarming and user does not need to worry about engine failure. Only when something would fail, or something suspicious would be found from analysed trends, the computer would inform the user about the problem. If things are ok and green, why to bother user with 100 gauge displays on a cluttered control panel. User would be left with much less workload and he or she could concentrate on looking for other traffic and flying the plane rather than trying to watch all the engine monitoring etc. values.

The system could communicate automatically with ATC and would display the pilot a very easy path to follow to make a IFR approach without needing any of the workload that is the burden for IFR-pilots. The plane would do things automatically, a bit like a copilot that would be helping you on the right seat. You would not need to worry about what is ILS alpha approach as all the necessary information would be presented you automatically and the display would show you in very clear way which way to turn your plane. You would still be able to control the plane to not lose the fun of flying, but the hard and messy parts would be handled by automation. And for pilot going to weather he or she is not able to fly through, there could be a panic button that would direct the plane to the next airport and land automatically if the pilot so wishes.

And one more enabler would be nice to have. It takes awful lot of time to pre-flight a modern high performance aircraft such as Cirrus SR22. You open the checklist and start checking this and that and that and that and there are zillion items to check before you can even start the engine. What if there would be a computer with sophisticated sensors wired everywhere in the plane and it could do the pre-flight automatically without user needing to care about it unless he or she wants. Sometimes, in case of a short trip, due to the long time spent to pre-flighting the plane, one could reach the destination by car faster by driving rather than getting to airport, pre-flighting plane, filing flight plan etc. There surely should be a faster way to do it with some technology.

It would not be the thing how fast the plane would be. That would be secondary after the plane would be fast enough. How economic the plane would be has greater importance. But how easy it is has greatest importance. Not everybody is skilled enough to ever become IFR-pilots and let’s face it, single pilot IFR is a quite dangerous thing to do in hard IMC to the minimums alone without second pilot as helper. The second pilot would need to be replaced with very intelligent computer system that would take off the workload from the pilot so the pilot could concentrate on flying a perfect approach.

Since the plane would be fly-by-wire, it could be made more stable and the ride could be augmented to be less bumpy by automation. So that the plane would be always rock solid, in perfect trim etc. in all flight conditions that would make flying the IFR-approaches very easy and safe. This would enable really this pre-requisite of getting somewhere. Who would want to drive 1000 km with a car slowly averaging 80 km/h at best if there was a way to do it with airplane with no more expense, as easily as with the car, and much more conveniently and certainly with a lot more style. That would make airplanes desirable again to general public, that they currently are not. Only hardcore pilots (like myself) have a desire for the current selection of airplanes.

None of these things I presented here are technically impossible to do and neither they would or should cost much. Everything presented above is doable with even a less sophisticated hardware than a typical smartphone that costs no more than 400 euros. The authorities with ancient rules, regulations and bureaucracy is a thing that makes everything expensive, and I could imagine that some certification process could kill this idea for starters even before it began and this kind of installed system would cost due to certification costs, millions per one single unit. But lets assume that this would not happen and things would go the right way for a change.

To get somewhere, regulation should be largely reinvented in order to not kill personal aviation. Well it is already killed by certification requirements and regulations, it is more like a zombie now, but I would be really happy the GA to be reanimated and to be a real business again, and this time reinvented to be better than ever before. This is a market that would exist if it was not overregulated and that would employ a lot of people and would revolutionize how people travel from point A to B – instead of sitting in Boeing or Airbus and licking their knees in tourist class, they could enjoy similar freedom as driving a family car and getting to the destination with their own schedule without queues, waiting, walking kilometers in huge terminals of huge airports, and without associated anxiety etc. Instead of a large jumbo-jet now and then, there would be demand for hundreds of thousands to millions of small inexpensive and easy to fly aircraft that would be designed for serious transportation and not to be toys like LSAs. Current airplane market is more like a joke. To make it a real market, it would need to be completely reinvented and revolutionized, otherwise it is a dead end that leads to nowhere else than the gradually reduced amount of pilots and the remaining pilots facing more and more ridiculous expenses which will further reduce their interest and numbers which is no good for the individuals nor businesses.

How to parse a plist that has multiple dictionary items

I was surfing Stack Overflow and everywhere to find out how I would parse a bit more complicated plist XML than the usual examples around the Internet sites. In this case it is a munki catalog file that needs to be parsed. On main level the first item is array and under that next item is dict. Under that is the actual thing where the key value pairs of interest are located. So finally ended up with this (each dict on main level array has to be enumerated first using enumerator and then cast the resulting object to a new dictionary and then parse that), what makes this tricky is that many examples are not working, but they are just crashing. This should work:


// replace /mypath with your path to your file
NSString *dataPath = @"/mypath/mycomplexplist.plist";
NSString *errorDesc = nil;
NSPropertyListFormat format;
if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath]) {
// Handle the error if the file does not exist

}
NSData *plistXML = [[NSFileManager defaultManager] contentsAtPath:dataPath];
NSDictionary *dictionary = (NSDictionary *)[NSPropertyListSerialization
propertyListFromData:plistXML
mutabilityOption:NSPropertyListMutableContainersAndLeaves
format:&format
errorDescription:&errorDesc];
if (!dictionary) {
// Handle your error
}

NSEnumerator *enumerator = [dictionary objectEnumerator];

for(id object in enumerator) {
NSDictionary *innerdic = object;
NSString *name = [innerdic objectForKey:@"name"];
NSLog(@"name =%@",name);
// and parse the rest of the stuff of the interest here.
}

Thoughts: The secret of the commonly overlooked and underfunded cure for cancer

I am following many people on Twitter etc. and what I am often getting, is all kinds of campaigns for cancers. And they are specifically all for one single type cancer, e.g. breast cancer, prostate cancer etc. most commonly. 

The sad thing on this is that there will be no cure for a single type of cancer. Different types of cancers indeed respond differently to the barbaric treatment used today (e.g. chemotherapy). The sad thing is that people put all their power and thinking on improving cancer prevention and less how to deal with one once it has already happened. And even then, people look at how to treat it, not how to cure it completely.

Even people studying on the field (except some exceptions such as Dr. Akseli Hemminki/Oncos in Finland), seem to be missing the point. They look at treating the patients to prolong their life. They don’t look at curing the patients. And they think about how to improve the treatments, instead of seeking answer how to implement the cure. There will be many steps on this process of course. But only few on the field are actually taking them. Most are studying technologies which will improve the prognosis, but will not be the final answer. 

All cancers happen due to the very same mechanism. There are several safeguards in cells that prevent this to happen normally, but eventually these will go offline and it is inevitable, the longer one lives, the more likely is that a mutation reaches through the “firewall mechanisms”. And then it is thought it is just bad luck. No it is not bad luck. It is inevitable for everybody if they live long enough. 

A real cure for cancer is a such that will repair the cell mutation back. The cure will be found from genetic technology. And the cure will be also a partial answer to combat aging. This should be essential priority on medical field to solve. Only solving this big problem, the cancer will be won. After it is won, aging is also more understood and secret for (much) longer life may be also found. Progress happen on this area all the time, but with very low budget. Angel investors with big amount of money available should go help out the guys and gals which are going to seek out final answer for all cancers from genetic technology. It is sad to see how the only ones who actually work to find out the answer are bound to the limitations of a shoestring budget while big pharmaceutical companies offering only toxins that will not cure, swim in money. 

Since the aerospace technology is changing as the new Internet generation is making their dreams into reality (and space is no longer a program but a place), I am confident that now would be the time to same happen on the medical technology area as well. Finding the answer to this question will be very important for the future of the human race. There will be many things to come that will make preventing cancer harder and harder. We are eating constantly radioactivity, both naturally occurring, and both caused by nuclear tests, nuclear accidents (like Chernobyl and Fukushima) and we are constantly bombarded by particles from space which is unavoidable. And when we travel among the stars, we are at much greater risk for cell mutations when there are no Earth’s huge  magnetic fields giving their protection. To travel in space without dying to cancer young at very high risk (e.g. years long trip to Mars will be lifetime radiation exposure – one way already), a mechanism must be invented to reverse/stop the cellular mutation once it has started. And it does not happen by government programs, it happens by bright individuals working on a goal which is out of the box rather than inside the box, to break the cycle how things always have been done. 

 

(Wing) mold making for rapid prototyping

I am progressing forwards from concentrating on aerodynamics to also fabrication and optimizing the fabrication process. Been doing hand layups for a quite long time now, but I need to start doing shape accurate parts. Testing aerodynamics requires very high accuracy.

I have been doing several molds lately. One was almost successful, but it was a lot of work and it still had non-sharp edges.

So what I am trying to do is a wing mold with CNC fabrication. I have a CNC mill that can carve blue styrofoam, wood, MDF, Corecell etc. and is large enough for producing a half (lower or upper) of a wing section (with the limitation of the length, have to glue a big mold from ~1.2 meter pieces together).

I would need a rapid prototyping technique to produce shape accurate molds with glossy or at least almost glossy surface. So that manual work would be minimal. This is especially pronounced in case of making wing molds.

The problem I am facing is this:
– if I carve the plug to blue styrofoam, and then paint it and polish it, there is the downside:
– the styrofoam can be only painted with a paint that does not have solvent in it, and the only paint that will fill the surface is solvent free epoxy primer. The problem with that is that it also makes sharp edges round, and especially in a small scale (RC scale) the roundness becomes way too big to be acceptable. The edges where the lower and upper half meet, should be also absolutely accurate and sharp. Doesn’t happen with this technique.

Has any reader used molding epoxy? I saw some picture of a mold being filled with a molding epoxy and then milled with CNC again to shiny surface directly (?). Would that be viable option for my use? As it would be for rapid prototyping and for fabricating many wings (and not just one pair), it should be somewhat reasonably cost effective. Making the mold from wood is not completely inexpensive either – requires a very thick perfect wood block (or MDF block). I could not afford consider replacing the styrofoam with a huge solid mold plastic block (that is used in industry for prototyping shapes with CNC), because the same volume is much more expensive, would be possibly fine for a CNC model of a small device, but for making a mold for large wing the cost hikes out of the roof very quickly. Styrofoam is cheap and very easy for the machine to carve, but that’s the best part of it, otherwise it is really poor material.

Any first hand experiences on this?

Propeller placement article (external link)

There are many considerations where to put a propellers in a small aircraft or RPV. The common place to put them is at the nose. The biggest reason and driver for this placement is that it is advantageous for CG location. However, from aerodynamic standpoint that is not very optimal. There was discussion at HBA Forums about propeller placement and this document was linked (it studies difference of prop placed in pusher and tractor configuration):

http://www.icas.org/ICAS_ARCHIVE_CD1998-2010/ICAS2000/PAPERS/ICA0344.PDF

Optimal place is behind the wing, a bit above the wing centerline (only small part of the prop circle goes below the wing). This placement has the typical CG challenges with it. And it will require either pylon on the wing, or a pylon on the fuselage (assuming a single fuselage). There is then the question about the effect of the body to the prop located near the fuselage behind the trailing edge of the wing. There might be unfavorable flow due to the effects of the wing-fuselage joint that this study did not take in account.

According to the article, it was possible to increase quite significantly the Clmax of the wing with the rear placement of the propeller due to the suction effect to the wing. This leads to interesting thought about a line-thruster – multiple small electric motors turning multiple relatively small props behind the trailing edge of the wing, providing suction to the whole wing surface, or at least large part of it. Interesting question then would be that would a varying thrust angle be beneficial, should the pylons be actually mounted on the flaps? Downside of this is that this may lead to flap mechanism that is not very lightweight as the flaps have to take all the torque and push from the motors. Normal flap mechanisms would not like that.

Any comments on this?

Basics of Mac OS X Package management

The package management in Mac is quite non-existent compared to what Linux has to offer, e.g. Debian packaging which has full dependency resolving capabilities and ability to install package along with dependencies and uninstall along with dependencies.

Mac has a pkgutil command that knows something about installed packages on the operating system. It is also possible to dig information on what applications are installed on the OSX by using the System Profiler. In the System Profiler full report, all installed software is counted.

Here is man page for pkgutil:

https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/pkgutil.1.html

How to determine what each package contains:

pkgutil –packages list installed packages.

then loop through all the packages and run

pkgutil –pkg-info packageid

for example:
pkgutil –pkg-info com.blackmagic-design.DaVinciResolveApplications

command prints out: “

package-id: com.blackmagic-design.DaVinciResolveApplications
version: 1
volume: /
location: Applications
install-time: 1328796965″

From this we know that the base directory for this package is Applications folder on system root volume /.

Then we can find out what files this package has installed under the base folder.

pkgutil –files packageid

example:
“pkgutil –files com.blackmagic-design.DaVinciResolveApplications
DaVinci Resolve.app
DaVinci Resolve.app/Contents
DaVinci Resolve.app/Contents/Frameworks
DaVinci Resolve.app/Contents/Frameworks/Cg.Framework
DaVinci Resolve.app/Contents/Frameworks/Cg.Framework/Cg
DaVinci Resolve.app/Contents/Frameworks/QtCore.framework
DaVinci Resolve.app/Contents/Frameworks/QtCore.framework/Resources
DaVinci Resolve.app/Contents/Frameworks/QtCore.framework/Versions
DaVinci Resolve.app/Contents/Frameworks/QtCore.framework/Versions/4
DaVinci Resolve.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
DaVinci Resolve.app/Contents/Frameworks/QtGui.framework ….
– rest of the printout is clipped because it is large -….”

This information is actually found from a folder, pkgutil just finds the same information that is stored in bom and plist files under:
/private/var/db/receipts

The bom-files can be inspected with command lsbom.
lsbom com.apple.pkg.FinalCut_AppStore.bom

The plist files are typically binary format, but they can be converted to readable xml format using plutil:
plutil -convert xml1 -o –
This is hardly needed because the plist files can be also read with defaults read -command as follows:
Example:
defaults read /private/var/db/receipts/com.apple.pkg.Aperture_AppStore.plist
Please note that you must specify full url to defaults read, if you are in directory /private/var/db/receipts and try to execute defaults read ./com.apple.pkg.Aperture_AppStore.plist – it will not work.

Useful parameters for lsbom:
-s list only files (the numeric information disappears with this):
Example:
cd /private/var/db/receipts
lsbom -dfls com.apple.pkg.FinalCut_AppStore.bom

Someone has made a simple script to uninstall bom:
http://invariance.org/clemens/uninstall_bom
And here are instructions how to use that script:
How to use uninstall_bom

High Altitude UAV Launch for Microsatellite Launcher Rocket

Rockets lifting off from the ground are inefficient and require enormous amount of fuel and especially oxidizer despite there is plenty of oxygen in the low atmosphere. Rocket engine is very inefficient too, and to save fuel, the best way is to limit the time the rocket engine is needed => more reasonable amount of fuel needs to be carried and subsequently smaller rocket is needed.

To launch microsatellites, a similar approach than Burt Rutan’s WhiteKnightTwo (or Stratolauncher) is the best way to go. The difference for a microsatellite rocket is that the payload is much more modest and a much smaller and much less expensive airplane can be used. The airplane can be either UAV or optionally piloted aircraft. If it is just pure UAV, it can be made smaller and less expensive.

The principle of this airplane would be series hybrid propulsion. There would be a small but powerful modified series turbo liquid cooled motorcycle engine turning a generator (which is also a brushless DC electric motor, but bigger than the propulsion units). The actual propulsion would be provided with several smaller electric motors which would turn relatively modest size propellers (vs. the need for prop size in the high altitude). The large number of the propulsion units would compensate for the diameter. Very large diameter in the prop would cause severe geometric problems for the aircraft (landing gear, wing placement etc. as evidenced by Grob’s high altitude aircraft), but instead lowering the disc loading of the prop by increasing the number of the props, is much less expensive and much less complicated way to do it, especially since the construction with electric motors approaches trivial.

The aerodynamics of the aircraft would be based on a high aspect ratio long wing and conventional tail placed aft of a ideal laminar pod-shaped fuselage (for UAV pod-shape would be even easier because there is no need for seating people inside and no bumps / deviations of the ideal shape are needed). The airfoil designed for the purpose would be obviously a low Re airfoil with maximized L/D at moderately high Cl (unlike the cruise-oriented airfoils presented earlier on this site).

The airplane would lift the rocket with the hybrid electric propulsion to 50000-80000 ft like e.g. the Stratolauncher does, but with the difference that the aircraft would be very inexpensive. Even 80000 feet should be possible with hybrid propulsion since when the dual turbo can not provide enough power anymore (it would cut out pretty much after 60000 according to some studies done for HALE-UAVs), it can continue climb purely by using batteries. There is a limit though how much batteries can be carried along with the plane to not lose too much of the payload (the rocket). This is a compromise that needs to be optimized carefully to maximize benefits.

The airplane would be obviously fully reusable and good for a long long time. Different kind of payloads could be accommodated, depending on the need. E.g. rocket carrying multiple microsatellites or a rocket carrying one payload or a equipment that would study higher atmosphere (without rocket) or possibly a pressurized pod housing a human (as alternative to the rocket). It would be highly interesting concept to design & implement. It requires some budget, but can be done with quite modest budget not commonly considered in the aircraft/spacecraft circles.

Marching order would be this:
First study items for this would be:
1. Determine how large rocket would be needed for reaching orbit from case 1) 50000 ft and case 2) 80000 ft. Someone familiar with rocket equations could contribute if you would be interested. Please note comments are unfortunately moderated due to spam-comment problem, and may not appear immediately (only when I have time to go to press approve).
2. Then the size of the aircraft that will lift the rocket can be determined by requirements set by 1).
3. Determine the propulsion system needed for lifting the 2) to case 1) 50000 ft and case 2) 80000 ft.

Conservative assumption would be that the aircraft would reach 50000 ft and horizontal speed would be negligible at launch altitude, and the size of the rocket would need to be determined based on that altitude (and initial speed). Then if the aircraft could be made to reach 80000 ft, it would be all plus, bigger payload could be accommodated to the rocket.

The configuration for the aircraft could be quite simple:
– 2 small pods with two tails (or interconnected tail) like Burt Rutan’s high altitude lifters leaving the center section for the payload
– one pod could house the piston engine + fuel
– another pod could house the batteries
– four wheel landing gear would be located to both pods, similarly than White Knight

Pipistrel Panthera videos

I found some interesting videos from Youtube describing the new Pipistrel Panthera four seat aircraft that has incredible performance and economy compared to competition in the similar class:

John McGinnis’ Synergy Aircraft got funded in Kickstarter

Roughly 4 hours ago, John McGinnis succeeded to raise the goal for funding his Synergy aircraft on Kickstarter. The funding exceeded the goal by couple of tens of thousands. I think this is a remarkable achievement and it proves that also aircraft projects can be crowd-sourced. Congratulations to John and good luck with his project. Now it is his turn to finish the plane and get it on the air. This is now on critical path since as the plane is funded, the reputation of crowd-funding aircraft projects in the future will have this as a case example, so he better succeed. Looking forward to seeing Synergy to fly to Oshkosh! Please make it happen!

North Atlantic Adventure Photo Gallery

Here is a photo gallery of our 2009 North Atlantic Adventure.

Here is a photo gallery of our 2009 North Atlantic Adventure. IMG_1321 North Atlantic Adventure Gallery at Flickr

John McGinnis has Synergy Aircraft as Kickstarter project

I met John McGinnis in Oshkosh and he is a humble homebuilder guy with a dream and passion bigger and stronger than most of the aircraft fellas and he has unorthodox design that will be one of the coolest looking homebuilt aircraft when finished & successfully in the air. It is a kind of like flying wing but elevons placed in a box tail in the wing tips –  a configuration which is supposed to reduce drag. This is combined with very aerodynamic pod shape fuselage and laminar flow airfoil wings. And on top of that the plane will run on Deltahawk diesel engine and will work in places where AVGAS is no longer available and can just fill the tanks with JET-A, even in places like Kuujjuaq or Pangnirtung if he chooses to go for that kind of adventure. You can help this project getting this bird to the air by backing John’s Kickstarter project:

http://www.kickstarter.com/projects/launchsynergy/synergy-aircraft-project?ref=live

Thai Beef with garlic, oyster sauce, chili and bamboo shoots

Step 1. Prepare Marinade

Mix the followings in a bowl:
– 8 spoons of oyster sauce
– 4 teaspoons of corn flour
– 3 teaspoons of black pepper

Mix these throughly. If your oyster sauce is thin, then add more corn flour.
The one I use is very thick and not that more than this thickening agent is necessary.

Step 2. Beef Into Marinade + Precook

– Cut beef into small thin slices
– Mix marinade and beef and let the beef to soak the marinade for 15-20 minutes

After this, pre-cook the beef in microwave owen so that the slices are roughly “medium”.

Step 3. Oil
Mix the followings in a small cup:
– 8 spoons of sunflower oil
– 5 teaspoons of fresh crushed garlic
– 3 x small red chili cut into pieces, without the seeds (remove seeds). I used Rawit Chili which worked very well. 3 small red rawit chilis will make the food about medium hot. If you want very hot, add 2 more. Be careful because if your chilis are stronger than the ones I used, you will end up with way too hot food which no longer is tasty but just hot.

Cook the oil mix in the wok pan for a little while until the garlic has changed color from a light color to a slightly darker color. When this happens, pour the beef mix into the pan.
Continue cooking in the pan. Make sure you don’t burn the food.

Step 4. Vegetables
Prepare the followings in microwave owen:
– 500 g fresh champignons (common mushrooms). You can substitute with tin can of sliced mushrooms if you can’t obtain the fresh ones.
– 2 x 225..250g tin cans of bamboo shoots. Pour the water out before using. At least in Finland this is the only way the bamboo shoots are available. Fresh bamboo shoots may be better if you can obtain them.
– Add some basil (roughly same amount you would add oregano to a pizza)
– Add some soy sauce on top of the vegetables. This gives them moisture for microwave owen to operate properly and adds taste.
– Add up to 1 deciliter of water. If you add more, you will have too wet end result.

Mix these and cook in microwave owen until they have softened. Do not overcook.

Step 5. Mix vegetables to the beef to the pan

Mix the pre-cooked vegetables with the beef. Cook with moderate power. Be sure to not burn the food.

Step 6. Serve with either rice or noodles. 

Idea: Helicopter with the blades extendeding from the outer edge of a lens shaped lifting body

I was today walking with a dog and it occurred to me that with a fly by wire system a helicopter which would have blades outside of a circular lifting body and that would have a pusher prop (cruise prop) on top of the said flat lifting body in a pivoting pylon with thrust vectoring, could possibly fly stable and avoid the not that good things of a helicopter and be more efficient VTOL craft than a conventional helicopter. The bearing on the outer ring would possibly though be some sort of a challenge. On a big one, the outer ring could be not connected to the inner ring at all, but it could actually use maglev technique to levitate in a hole without physical contact with the bearing. This could come with too heavy weight penalties, so not sure if it would be feasible. So this is just a out of the box thinking idea because I have always felt that there is something wrong with helicopters, I have never really liked how they look like and how they function, there must be a better way to do that.

Cyclic system could be hidden inside the center section so that it would not cause drag like on a helicopter where there are lots of mechanical parts directly in the airflow causing drag. In cruise the plane would be a gyrocopter rather than a helicopter because it would have positive angle of attack unlike helicopter which cruises at negative angle of attack (and only blades have positive angle of attack).

I would like to try this as RC-model, but the challenge would be to fabricate such a large and yet lightweight bearing that would be size of the craft itself. The outer shell with the bearing would have a gear tooth that would be driven with a pinion gear that would be connected to the engine. This would also function as gear reduction drive. In addition to the ring drive to takeoff and landing, there would need to be a generator for driving the pylon mounted thrust vectoring prop that would be run with an electric motor.

The shape of the lifting body would be a suboptimal airfoil because it would need to be symmetrical and have both sharp leading edge and trailing edge but. This kind of craft would be naturally unstable but it could be artificially stabilized with software.

Cross sections in Rhino from a loft

I wrote a long time ago about how to do cross sections in Rhino. I mentioned that it needs to be Object intersection. If you do Boolean Intersection, this technique is not going to work. I found that the earlier instruction might have been a bit confusing because there are multiple ways to do intersections in Rhino.

The original article is here: http://designaplane.blogspot.com/2008/10/irhino-learnings-of-today.htmlPlease read it.

The function what you have to use is Intersect (to do Object Intersection).
If you type it to the command area, type Intersect, not Intersection or Booleanintersection.
You know that you have chosen wrong intersection method if you have to select two set of objects. Multiselect everything (your cutters and the lofted surface) at the same time and do Intersect. It works.

Expose properly with a DSLR

I have long time followed exactly the histogram of the DSLR to expose so that as much of the dynamic range is covered. However, that is not ideal in all cases.

In most cases shadow detail is what is lacking and the picture looks very dark and even unpleasant sometimes. Video codec, aliasing, lack of resolution etc. makes things even worse. This occurs mostly when shooting at available light outside and sun is pointing somewhat towards the camera (or some other light source doing the same). Even when it is not directly pointing to the camera, the areas on front of it will be very easily dark. Sun is extremely powerful light source and competing with it with exposure can be tricky.

People usually shoot with flat picture profiles, which a little bit helps on this case too. However, flat picture styles will reduce the available dynamic range because it compresses it. You will get more shadow details because the blacks are moved to right in the histogram, but the image quality reduces.

I found an old article which recommended exposing towards the right side (towards highlights) of the histogram. I could not believe it because I was thinking that I will lose dynamic range if I do that. I made an experiment: I shot an evening scene which was exposed as dark as it was naturally to the eye. Looks like the right way to do it? Yeah right. I took another shot which I overexposed it so that the histogram was leaning to the right (highlight side) so that everything was too light still without clipping the highlights.

As expected from my experiment: the scene that I made to look like it was in reality looked like it was in reality. Fiddling with Aperture – there was some noise and I could not get much more shadow detail out of it than there was. It was like it was exposed to look like it was and that’s it. No further alterations very much possible.

Ok now I then went to the next picture which was overexposed and a bit too bright. It looked like a failure to begin with. However, after I adjusted the exposure in Aperture, it started looking like it looked to the eye in the evening. And guess what – it had less noise – with same ISO setting! I could find lots of shadow detail in the picture.

I was recently also looking my old video scenes that I have shot for example in North Cape. In general they are rather muddy and dark. Some have rather unpleasant look. I have been trying to adjust them with Color and then with these couple of free plugins for FCPX but if I bring up the blacks, block artifacts and noise start to show up rather severely and the video quality drops to almost to a level of SD. In middle of these scenes there was one overexposed scene. And voila, when I exposed it in post processing towards blacks, there was lots of shadow detail, and even highlight detail in the scene and no visible noise.

So what I do now when I shoot next time (this is still an experiment, so don’t ruin your footage based on this instruction, or if you do, do it with your own risk):- I use a bit less flat picture style than e.g. Technicolor because the picture style after all is not a holy grail and does not fix all the problems in the exposure there are because the file format is not 12 bit RAW. Neutral picture style with contrast reduction is fine. Another possibility is to use Technicolor Cinestyle profile with contrast setting in the middle (not dialed all the way down). – Then I expose a bit towards highlights but make sure the highlights do not clip (otherwise the image quality will be low because highlights are clipped).

Automotive grade LiFePo battery cells and automotive grade brushless DC electric motor power controllers

In addition to the RC batteries from http://www.hobbyking.com, you can also get more robust packaged batteries from for example here:

http://www.ev-power.eu/

They also have high power motor controllers which are at or exceeding power class of a big hybrid aircraft.

How to use Nokia N9 as music production tool – encoding your sequencer’s tracks with Dolby Headphone using the Nokia N9

Nokia N9 has Dolby Headphone effect, which is gives pretty neat effect – makes the sound being perceived to be less inside the head. I have tried with several tracks that it can be helpful sometimes and I could even use that in my music. However, I don’t have Dolby Headphone encoder in my Logic Studio (as far as I know). However, if you want to spend the time, you can use N9 for the task and here is how:

1. Record your (stereo) audio track in your audio sequencer (like Logic, Cubase, whatever). Add a loud beep or loud peaky drum sample to the beginning of the track.
2. Mount the N9 to your computer. Then copy the track to N9. I have not tried wav files, if these don’t get indexed, you may have to do a detour and encode the file to lossless flac format.
2. Go to Settings application -> Applications -> Music. Turn on the switch Dolby Headphone.
3. Connect your computer audio input to the headphone output of your N9 (assuming you have the cable)
4. Start recording on sequencer (another stereo track) and go to Music player on N9, locate your track and play back the sound.
5. Now cut the track so that it starts from the loud peak in the beginning.
6. Line up the original track and the track you just recorded visually – the peaks should align exactly with each other.
7. Now you can cut the synchronization sound from your track and mute the original track and you have a track with Dolby Headphone encoding on it.

This roundtrip will add noise of course because it goes through analog domain (DA->analog head phone amp->analog input->AD-conversion) and it will also otherwise reduce the quality slightly. However, many synthesizers I use have only analog outputs and it does not prevent me to use them and I have never had trouble with noise. The added noise may be negligible.

This is not the fastest way to do Dolby Headphone encoding for your audio track in your sequencer probably and certainly is not the official way, but this is a neat effect that you can do with the built-in software of your N9 and is kinda awesome feature. And I think the quality of the audio output in the N9 is so good that I could consider using this myself like I explained above.

I have been using this kind of syncing with a peaking signal in DSLR movie making (where I have recorded the sound separately with a audio recorder (I have Zoom H4N for that)) and it works because unlike in the prehistoric times when you could not sync two tracks if they were from separate machines (as there was speed variation, e.g. if you had two drum machines from same manufacturer, set both to 120 bpm and then record both separately and then try to line up the tracks, it started going out of sync in mere seconds if these were not midi synced with each other), but with modern equipment this is not a problem. The tracks will line up nicely.

N9 Software Update with MacOSX or Linux (part 1)

This has been available for some time, but in case you have not noticed it, the new software release really worths installing as it significantly improves the performance of the device. You can see that for example the scrolling smoothness will be improved after updating from. Latest software release for Nokia N9 via Nokia page is 20.2011.40-4.

You can get a Mac and Linux flasher from here:http://tablets-dev.nokia.com/maemo-dev-env-downloads.php

The flash image is not currently available outside Nokia but is inside the exe that you can download from the Nokia web site for updating the N9. Unfortunately this exe obviously only runs on Windows (I for example don’t have any Windows machines around and for me the Windows exe is completely useless).

If someone manages to extract the flash image from the exe, it can be in theory flashed with Mac and Linux flashers. If you manage to succeed with that, please let me know and I will mention about it on my blog. Please write me at karoliina dot t dot salminen at gmail dot com or write to the comments on this post (please note that the comments are moderated to avoid spam and it will take time for me to approve them, so don’t be afraid if you don’t see them appearing immediately).

I tried to send a question about this to Nokia customer care [about how can I update my N9 with my Mac] but I was unable to do so because the form required all the lengthy numbers like serial number and my personal N9 was not with me today so I could not check it.

UPDATE: Got information that there indeed is a beta version (unstable) Mac Nokia Updater out there. http://betalabs.nokia.com/apps/nokia-software-updater-for-macIt does not state that it would support Nokia N9. I downloaded it and tried it with my N9. It didn’t work, it stated that N9 is not supported.

Also people have been using a software called navifirm to extract the flash image out of the Nokia software updater exe to enable flashing it using Mac. However, according to my Googling this software also runs on Windows, so it may not be so straightforward for Mac users to use that route. Maybe the beta version of the software updater for Mac is the best bet at the moment in case it would start supporting N9 (that I hope but don’t know).

It seems I still don’t have a solution for this. If you know a working solution how to get N9 flashed with Mac, please let me know.If I will find a solution for this, I will post a new blog post with instructions how to do it with Mac.

External link: Article about Flying wings

If you are into flying wings like me, this PowerPoint slideset might interest you. It compares the basics of conventional airliner and flying wing airliner.Much bigger planes in other words, than my interest area. However, some of the pros and cons findings for each configuration also apply for the small version. Not all though as the starting point does not have engine nacelles and engines sticking out of the wing. http://www.engbrasil.eng.br/index_arquivos/ap23.pdfI haven’t done yet comparison for the wetted area of a flying wing compared to a sailplane like structure.Logic tells that the flying wing in this size category might have more wetted area. But I am not sure. I need to design both and then measure the wetted area of both and compare.I am not a big fan of wing twist and the amount of wing twist on PUL-10 causes me shivers (wing tip twisted 10 degrees). That can’t be good for cruise, simply can not. Ten degrees is insane amount of twist – on cruise the tips are on negative angle of attack and cause a lots of negative lift. The wing tips act as rather poor tails this way – it is very short coupled and if you have tail deflected that much on that close, the wing center section will need to lift also the negative lift of the tips which will make the plane to perform poorer. I am quite sure that a flying wing should be made stable without that much twist.I have a related idea for a flying wing:- one problem with flying wing is that flaps can not be used- what if you had small trim tails that look like the ones in SpaceShipOne. When flaps would be down, the trim tail, would cause opposing pitching moment to negate the pitching moment of the flap- The elevator control otherwise would be like on a flying wing, with elevons.- I haven’t tried this out yet but it can be tested with RC model.

Short note: Electric motors for hybrid or electric aircraft

The Joby Motors seems to have good enough KV-values for running slow turning props (especially JM2S and JM2):
http://www.jobymotors.com/public/views/pages/products.php

Electric Lazair uses these motors.Standard windings are available for up to 700 volt system!

Video: Burt Rutan: Bipod update. Oshkosh Airventure 2011

HD-link: http://youtu.be/HSwkY5M4pPo?hd=1

OT News and Comment from Author: This is a sad day – Steve Jobs has died

I was shocked to read the bad news about Steve Jobs. He is surely one of the few persons in the Wolrd that have inspired me a lot. The World has now lost one of the guiding lights and Steve is no more.

His legacy should not die. In whatever you do (his wisdom is not limited to computers and mobile phones, but also apply for aircraft, space technology and everywhere) – live your each day like it was your last day. Ask yourself, that what you would want to give to the world if this was your last day. Don’t tolerate being mediocre, but create something that will change the World.

Steve is one of the rare people who had realized that statements like “maybe after 100 years we have the technology…” are simply failed logic. It does not take any period of time for something that would be like given from somebody. Nothing is given. Everybody has to work hard to make the dreams come true. There are no dreams coming true, if you don’t work for what you dream for. This after 100 years never comes if everybody is just waiting for the time to make its work. Time will not make its work, it is the passionate people who do it. Stop dreaming, do what you want to do, and show to the World that you can do it. Do what you are passionate about, it is the passion that will change the world. Even if it is something market does not even consider to exist, but if you are passionate about it and find others who are too, just do it.

My sincere respect to Steve Jobs and my condolences to the family and fans world wide. But please everybody make his legacy to live on. Stay foolish. Stay hungry.

Video: John Roncz: Inside story on Burt Rutan designs

I recorded this highly interesting presentation at Oshkosh 2011. John Roncz is telling inside story what happened with various designs he had teamed up with Burt Rutan.Link: http://youtu.be/E9eEwyVrAps?hd=1

Video: John Roncz’s talk at Airventure 2011, Oshkosh, WI, USA

I also had a chance to record the speech of John Roncz at Airventure 2011. John Roncz Presentation Airventure 2011

Video: Dr. Pete Gall: Designing Light Aircraft. Airventure 2011.

I recorded Dr. Pete Gall’s presentation at Oshkosh 2011 about Designing Light Aircraft. This presentation explains with a case example of Beech Bonanza how the wing affects the drag of the whole aircraft. In the presentation a new more efficient wing is designed for the Bonanza and the results are compared to the original aircraft. This presentation is rather interesting and worth to watch. Pete Gall’s merit list is rather long (see the end titles from the video). Here is the link to the event recording I made: YouTube: Dr. Pete Gall: Designing Light Aircraft. Oshkosh Airventure 2011

Takeoff on Burt Rutan’s Boomerang (video)

Someone was lucky in Oshkosh and took this short video clip from inside the Boomerang while it was doing takeoff. I find it rather interesting, especially because I am interested how this kind of window layout works.Here is the clip from some lucky person who got as a passenger to the plane:http://www.youtube.com/watch?v=QD8Cz0Sw44Q&feature=related

Ideas from Oshkosh. Cylons have a plan.

We got interesting ideas at Oshkosh and I think we have a plan now

So the concept is about high efficiency, high altitude and long range. In other words, these are called as HALR.None of these concepts have been designed yet. But I think we have now defined a goal that can be used as a target where to aim at.And what is the motivation for this? For fun of course. And because we can.

The plan now has the following steps:

 1. Develop, test fly, measure scale model aircraft of the full size concept. Electric propulsion is going to be used.The aircraft shall model the full size aircraft in configuration and prototype control mechanisms of the model 2 aircraft.Possibly more than 1 RC model needs to be built to validate feasibility of different configuration features. This step is very likely to succeed. There are no impediments for executing this plan.

 2. Develop, test fly, measure a human piloted scale model of the full size concept. The plane is intended to utilize electric propulsion. The aircraft shall be able to carry at least 100 kg payload, stay at least tens of minutes in air and then safely land on a grass runway.This requires some feasibility analysis – this one needs to be super-light because the full size one needs to be light as well, and needs to be able carry substantial amount of fuel (300-400 kg). I will blog about what I will learn about structural design and alsocan validate the feasibility of the concept along the way. We saw that single place CriCri size small aircraft is ideal test bed for testingconfigurations, technologies etc. for the full size aircraft. This one must work from our summer cottage neighbor’s airfield, in other words, needs to be relatively STOL. This has good chance to succeed but there are few impediments to clear out before this can succeed.

 3. Develop, test fly the full size plane, and then fly it to Oshkosh. The plane is intended to have hybrid propulsion.The aircraft shall be able to fly at high altitude non-stop from Helsinki to Kangerlussuaq, refuel, and continue and fly next leg non-stop to Oshkosh.The plane shall be practical efficient transportation tool that can partially replace using commercial aviation. The plane shall carry at least two persons plus rescue equipment plus baggage plus full fuel, and must defeat Toyota Prius 2011 model in transportation efficiency. Some serious problem solving is required before this will succeed.

The plane shall be able to fly long distances non-stop to avoid cost of landing fees and other costs associated by stopping on places of no interest.There are no guarantees of success of any of the mentioned steps, but this is the intent. The intent is subject to change. But this is where we are at today. We are very limited by the budget unfortunately and it can affect to the timing and success of each step. If we had substantial budget for this available, we would like to work on this full time, but unfortunately this is not the case.
  

Book collection (updated)

Here is a updated list of some of the books I have:
Rating, Book


***** Aircraft Design: A Conceptual Approach. Fourth Edition. Daniel P. Raymer
Great standard book for everyone. A bit different equations than the Anderson’s book. This + Anderson’s book is a great combination.


*** Simplified Aircraft Design for Homebuilders. Daniel P. Raymer
This covers only basics. Does not take very long before the Aircraft Design: A Conceptual Approach is very much required. Not bad, but is not enough information for getting started with aircraft design alone. Can be a good introductory book if someone starts from scratch, sort of “soft landing” to the world of aerodynamics.


***** Aircraft Performance and Design. John D. Anderson, Jr.
Great overall book, similar to Raymer’s book. I use this book very often.


* Aerodynamics for Engineers
Concentrates too much on transsonic and hypersonic and jets rather than subsonic design. I rarely open this book, I am not designing a Space Shuttle and even if I would, this is like phone book in the depth, depth of the book is rather small. Everything covered, but just very little.



** Aerodynamics for Engineering Students
Quite similar than the Aerodynamics for Engineers. But more basic. And nothing special here.


***** Fundamentals of Aerodynamics, by John Anderson
John D. Anderson’s books are great. This one is no exception. Highly recommended.



** MODERN AIRCRAFT DESIGN, Volume 1 5th Edition, by Martin Hollmann.
You have to look at the source code of the basic programs to get something valuable of this book. Otherwise you will not be so much enlightened. I have been converting the programs to C++. It also has the Oshkosh airfoil program source code. Real vintage.


** MODERN AIRCRAFT DESIGN, Volume 2 4th Edition, by Martin Hollmann.You have to look at the source code of the basic programs to get something valuable of this book. Otherwise you will not be so much enlightened. I have been converting the programs to C++.


** COMPOSITE AIRCRAFT DESIGN. REVISED 2003. By Dr. Hal Loken and Martin Hollmann.You have to look at the source code of the basic programs to get something valuable of this book. Otherwise you will not be so much enlightened. I have been converting the programs to C++. There is some information on creating pressurized fuselage for Lancair IV if I remember the book right and also about lightning protection on composite aircraft (not sure, could be also in Advanced Aircraft Design, I do not have the book at hand when typing this). The information in general is not very deep, just listed how it can be done and that’s it.


** MODERN AIRCRAFT DRAFTING by Eric and Martin Hollmann.You have to look at the source code of the basic programs to get something valuable of this book. Otherwise you will not be so much enlightened. I have been converting the programs to C++. And also if you use Rhino, the lofting programs presented on this book do not have so much importance. You can do the same more conveniently with 3D CAD.  The information in general is not very deep, just listed how it can be done and that’s it.


** ADVANCED AIRCRAFT DESIGN by Martin Hollmann.
You have to look at the source code of the basic programs to get something valuable of this book. Otherwise you will not be so much enlightened. I have been converting the programs to C++.  The information in general is not very deep, just listed how it can be done and that’s it.


***** BRUCE CARMICHAEL’S PERSONAL AIRCRAFT DRAG REDUCTION
Excellent book on drag, laminar flow and laminar bodies. No other book covers these. Old one, availability nowadays poor, but I have it. I am feeling lucky. 


*** Model Aircraft Design
This covers basics from different perspective.


Jan Roskam: Aircraft Design parts 1-7
Jan Roskam: Airplane Flight Dynamics and Automated Flight Controls
Jan Roskam: Airplane Aerodynamics and Performance
Theory of Flight
Smith: Illustrated guide to aerodynamics
Ron Wanttaja: Kit airplane construction
Bingelis: Sportplane construction techniques
Synthesis of Subsonic Aircraft Design
Theoretical Aerodynamics
Hoerner: Fluid Dynamic Drag
Flight Performance of Aircraft
Design of the Airplane
Burt Rutan: Moldless composite sandwitch aircraft consrtuction





I am considering getting Theory of Wing sections. I heard in Oshkosh that actually the first part of it has interesting equations before the airfoil data, and that’s where John Roncz program codes are largely based on. I did not buy it before because I thought that I do not need the NACA foil data. Now I have incentive to get that too.



Tip vortex reduction by tip propeller

We were discussing with Kate about possibilities to use tip propellers, in tractor configuration. Tractor configuration would cause a swirling motion to the opposite direction of the tip vortex before the tip wortex forms and it would reduce the tip vortex. Therefore the propeller at the wing tip would give more efficient dynamic thrust for the plane than propeller at some other location in the aircraft. In cruise condition when the tip vortex is low with low span loading wing, this could eliminate significantly the unfavorable tip vortex. With electric motors, additional tip propellers would be fairly easy to arrange.

Some analysis would be needed how much this would help. Of course it would depend on the weight of the plane. The heavier the plane, the more leakage to the tip, the more tip vortex would form. The bigger the benefit of having a opposite direction swirling motion to nullify the tip vortex formation.

John Roncz / OSH11: aspect ratio has nothing to do with induced drag

I was listening to John Roncz’s presentation in Oshkosh 2011. We had just talked with few aerodynamics people about the induced drag and that it is actually tangent of downwash angle (except for the tip vortex which forms from leakage of pressure over the tip and due to the movement of the plane, a swirling motion is created).

John Roncz was talking in his presentation about wing span, and finally noted about wing area, that he does not care about wing area, because induced drag has nothing to do with aspect ratio. That’s why gliders have not only skinny wings, but also very long wings. That’s why Rutan’s aircraft have long wings, not only skinny wings. Lots of span is needed for low induced drag.

However, there is a geometrical relation about AR to the drag: The lower the AR, the higher is the wetted area for the given span. Wetted area is bad, it causes drag, you don’t want extra wetted area. So the wing becomes skinny by definition. But now the wing is skinny (high AR) but also very long, and not only skinny.

There is another problem: I would think then that I want 20 meters long wing span, but very very narrow chord. The chord can not be infinitely narrow in order it to be structurally any sound, especially in speed. Therefore the higher the AR gets, and the lower the wetted area gets, the heavier the wing becomes. And the heavier it becomes, the worse gets the span loading if this is added to the weight of the plane. Then there is the another consideration, where I could taxi such plane which would have 20 meter span? On our airport even the Diamond’s comparatively modest wing span is in some places a bit tricky.

Interesting dilemma. This also answers why there are multiple pods on some Rutan’s aircrafts, along the span. The reason is to reduce induced drag, by moving the weight from the center more along the span. Then the lift required on the center where the lift given by the wing is worst does not give that unfavorable dip to lift distribution. And it reduces induced drag. On planes, like Globalflyer, induced drag plays major role in how much range the Brequet’s equation gives.

But there is even more to this: the higher the AR gets, the lower the Re gets. The higher the altitude, also the lower the Re is again. The lower the Re, the higher is the profile drag. To get high L/D and thus efficiency one has to get also the profile drag down. And airplane efficiency is all about L/D (lift/drag), no less.

So my basic concept remains and does not need to be revised for another configuration alternatives:
– conventional (to be able to use efficient flaps)
– large span, low span loading (to reduce induced drag)
– high aspect ratio, relatively high wing loading (to avoid extra wetted area and that way to reduce drag and AR also to have steep lift curve slope (in other words, closer to the 2D airfoil simulations of infinite wings)

– larger than minimum size elevator for larger CG allowance – this is for practicality rather than minimum trim drag
– The large AR is also needed for this: cruising with high wing loading causes need for high Cl for cruise, which in turn causes high alpha. To reduce alpha, the steepness of the lift curve slope is your friend. The lift curve slope steepness will make the plane to cruise fairly low angle of attack despite of flying at high Cl at high altitude with high wing loading.

EAA article about "Carplane Developers Criticize BiPod… and Burt Responds"

I was reading http://www.eaa.org/news/2011/2011-08-11_bipod.asp
I also listened Burt Rutan’s presentations about Bipod in Oshkosh 2011.

This article on the EAA news tells that some carplane designer thinks Burt’s Bipod is “too slippery”. I really wonder what is the definition of too slippery. There is a group of misguided people who want airplanes to have lots of drag for them to “not be too slippery”, in other words have aerodynamics of brick. I have bumped into Cessna pilots who think like that and they look for example our Diamond that “oh that is too slipperly plane for me”. From my standpoint, that is not too clever.

Drag is always unfavorable and waste of resources. There can never be too little drag (except in landing configuration when drag is helpful to land the plane in a meaningful distance). Low drag when plane is cruising, has absolutely nothing to do with the flying qualities of the plane. Having more drag does not make the plane any easier to fly. Having more drag just means you have to burn more fuel, you have to have bigger engine, you have to beef up structure, to compensate, you have to put even bigger engine, and have even more fuel on board. Airplane being slippery is a myth. Some Cessna pilots think our Diamond is “slippery” or “too slippery for them”. Yeah right, the truth is that the Diamond has better flying qualities than the C172, is easier to land and especially flare and it also stalls softer.

I wholeheartedly agree with Burt [about his Bipod]:  Gee, he complains that we have too much drag as a car but not enough drag as an airplane!”

I think the US LSA specification is deeply flawed as they have introduced the top speed limit. It will limit the category of LSA planes to such that it is not worth to make efficient planes and high drag has been made a standard. That is not too clever either. Apparently the rules have been set by non-pilots who do not have slightest clue on what makes airplanes safe and what makes them easy to fly [and land]… It is all about stability, stall speed, stall charasteristics and inertia. Europeans have understood that better since there is no top speed limit in Europe but there is a stringent stall speed requirement. Low inertia, low stall speed and gentle handling qualities, and no matter what is the top speed, the plane will be easy to fly.

Read about Burt Rutan’s Bipod here:
http://www.airventure.org/news/2011/110727_bipod.html

70% laminar airfoil KS-70pLaminar.DAT

I arrived back from Oshkosh and got lots of new ideas. I had a privilege to talk to many aerodynamics people and also aircraft designers. I met professors, homebuilders etc. It was awesome. I was listening to John Roncz’s presentation about how high L/D he achieved in this and that airfoil and attempted the same. I did not get yet 75% laminar flow, but quite close – 70% with thickness 15.72%. I think there could be opportunity for even higher L/D by reducing the thickness but I wanted it to be as thick as I could make it as possible for structural reasons. Thick airfoil also has more volume for storing e.g. fuel.

I created this new airfoil which has 70% laminar flow according to the simulation (please note, this is not tested in wind tunnel). It has a little larger pitching moment than the other airfoils I have done, but the L/D at low angle of attack (zero degrees angle of attack is Cl 0.35) reaches L/D over 100 at Re 5000000. The minimum drag count is 30 (Cd = 0.0030) at Re 7000000. At 5000000 the drag count increases to 31.

The airfoil can be downloaded here: KS-70PLAMINAR.dat.

Simulation results at Re 500 000, 1 000 000, 5 000 000, 7 000 000, 10 000 000 (Cl-Cd polar):

Simulation results at 500 000, 1 000 000, 5 000 000, 7 000 000, 10 000 000 (L/D polar):

Airfoil shape
Pitching moment polar. NACA 2412 and NACA 4412 included for comparison. The pitching moment is between NACA 2412 and 4412 airfoils. Not as good as NACA 23-series airfoils. This airfoil requires aircraft configuration with two surfaces and is not suitable for flying wing.

I will build RC scale model of this airfoil and test it with RC plane. At RC scale it will be a bit worse than best thin turbulent airfoils, but according to simulations, the polars are smooth to low Re which is desirable of course and this airfoil reaches at least the same Cd at the low Re than NACA 2415 unlike some other laminar airfoils.

Thinking: Curtis Channel Wing VSTOL considerations

I was just thinking about Curtis channel wing. I have a concern that this kind of design will result in tip stall in addition to the other problems there could be if something would fail.

However, what if you use electric motors instead and place that channel as a C on the tip of a wing? There is this 3D effect that flow tends to want to slip towards the tip and it causes wake turbulence and reduces Clmax. However, what if there is this C and then there is a prop inside the C. The flow comes to the prop and the prop sends it away and causes even bigger pressure differential between lower side of the wing and the upper side of the wing. With brushless DC electric motor it could be technically doable – one could not think about putting a Lycosaurus to the wing tip. You could even add redundancy by adding two motors in cascade. Should one fail, the another one would still be operational.

I think there are two kinds of aircraft that would be needed to cover the needs of personal air transportation: super stol/vtol for flying to airport from home to the pressurized long range plane that can cover large distances. I think today’s general aviation falls in the middle of these, but I think it could be obsolete with these new two categories. I think the today’s GA is not popular exactly because it falls between these two categories and does not fit in either purpose properly. And they are neither good toys nor good tools. This first VSTOL would cover the toy part and day to day short distance travel, and the HALE the serious transportation case.


I will write another blog entry about this split of concepts later because I believe I have – as a GA customer – found what’s wrong with it. What are the needs and what is the gap. I think I have the answer.





Interesting post about Dynaero Clmax (>3.0) at HBA

These calculations might interest you if you are wondering what is the Clmax in those little aircraft. Rule of thumb from Daniel Raymer et all says it is impossible, but flight data from MCR proves that ULC R has nothing short of extraordinary high Clmax.

Read more here: http://www.homebuiltairplanes.com/forums/aircraft-design-aerodynamics-new-technology/10349-specifications-coefficient-lift-dyn-aero-lafayette-mcr-ban-bi.html

New renaissance for general aviation; what is needed and how that can be achieved

Lets face the facts: general aviation is starving. Or it could be said that general aviation is even dying. There are many signs to that: less and less people are getting pilot’s license, regulations are becoming more and more unreasonable (especially in Europe for general aviation as they have been designed for airline companies, with all the standards drawn to such level where there is no business) and hardcore hobbyists (like myself) are flying with from aging and poor to mediocre flying machines that are very expensive to operate and that are not enough capable (there are few exceptions, but there would still be very much room for improvement) to be useful for serious transportation. Years come and go and nothing changes, and every new year comes with no progress and all new things come without learning anything new but rather on evolution which is not very steep but rather very shallow. Very small amount of people are interested anymore in subsonic flight and the breakthroughs needs to happen exactly on this subsonic flight this new renaissance to happen.

Yes, I am myself flying airplanes for fun, and the fun is very important. And the fun will need to remain important in the future as well. The fun part should therefore not be taken away. Airliners are taking the fun away, sitting in economy class is more like suffering than fun and business class is not fun either, everything has been made to take the attention away from the aviation, people are eating and drinking and not looking out of the window. Windows even are ridiculously small, even in business class.

Then if we look road transportation. How many people prefer traveling in bus rather than in a private car or taxi? Are you a bus-fan? At least I am not. We drive with our Prius to work everyday and my carbon emissions are less than they would be if we would drive with the 1/3 filled bus. You could argue that the bus drives anyway, but that is not the point. Bus travel is like being in the economy class, it does not have anything that I could describe with fun or enjoyable. However driving with own car or sitting in taxi can be much better experience.

So I think here is the cure for general aviation:
1) Diesel piston engine based efficient air taxis that can carry 5-6 persons. Requirement for the aircraft would be that they would need to be efficient (leading to low passenger mile cost), safe and comfortable. Low passenger mile cost means cost comparable to airline ticket price. This cost should be able to include the whole thing: aircraft cost, insurance, pilot, everything. I think this is doable, but requires some novel engineering and not doing things like they have been always done. These planes would look more like Burt Rutan’s special machines with very long wings or they could be possibly also blended flying wings but one could not expect these to look like Cessna C150.

2) Personal aircraft (I am not repeating what cafe is saying about PAV, this is my personal view on this) intended for serious transportation with large level of automation. This calls for fly-by-wire and stability augmentation. Pilot would rather choose to which direction to drive rather than correcting for bumpy air or cross wind. It would be different from autopilot, you could still drive the plane, but the plane would make driving a lot more convenient and so much easier that most car drivers could learn it. There could be additional aids, such as landing aid which would automatically line up the plane with the runway. It could use machine vision to be able to help the landing path all the way to full stop on runway independently from navigation aids. It would be still fun to fly even if it would be much easier. Why the definition of fun has to be hard? These aircraft geared for personal transportation would be at least 4 place machines making them comparable to family car capability.

Lots of people are shouting that “more entry level planes are needed”. I do not fully agree. There are lots of planes which are very suitable for flight training. For example the LSA planes, Diamonds, Cirruses etc. Of course if the intention was to fly a fly-by-wire PAV-machine, there could be a different path that would be trained with these PAV machines. Logical step in that direction would be to drop all medical, currency etc. requirements, but rather make the flying with these with similar requirements than driving a car. If flying these would be so easy, you simply would not need check rides now and then, BFRs etc. And then planes are made with unreliable parts which were certified 40 years ago while cars almost never break with parts that were designed one year ago.

In personal aircraft you fly with the computer the flying machine. This license should be upgradeable to a normal pilot’s license which would require then learning to fly with planes with traditional controls and avionics. Some could argue that this would be so expensive as the computers would be so heavy and they would cost more than a plane and what not. I don’t think so. Computer that can run this kind of algorithms in real time does not need to cost a fortune. In mass production, a reasonable price is hundreds of dollars, not tens of thousands or hundreds of thousands. Such computer weights less than 0.3 kg and while it would need some more weight for all the control hardware, it would not be that complicated. Actually telephones are so much more complicated today than any electronics in aircraft, in fact, these things are so low hanging fruits that they are waiting for somebody to implement.

What slows down the progress on this area in my opinion, is very conservative thinking in the aviation circles, not thinking out of the box and at least in Finland there seems to be a tendency to repeat old beliefs like they would be teachings in a church and even clever people may take silly things for granted. Of course that is all they can do, as there are no alternatives, but that does not mean it would be right. In fact, the situation with aviation is so desperate that this feels like some alternate universe in Stargate TV-series where things have gone real badly wrong. We are that dystopic parallel universe and someone needs to do something to fix it. So aviation in general needs a major overhaul. New kind of airplanes are needed, new kind of regulations are needed (while dropping old obsolete ones), new kind of air traffic control system is needed (when there are millions of personal planes in the air, there is no way for the current system to work, it is a dinosaur already, you can not have centralized system in a case where traffic is so huge, car traffic already has hard data about that) and new kind of attitudes are needed. New more efficient and less expensive mass produced planes and regulations are necessary enablers for the attitudes becoming more positive towards flying.

So what I am complaining about attitudes? Consider this: I was one day few years ago in cafeteria of the Malmi airport. There was a some mother with her child there. The little boy said that he wants to drive airplanes. The little boy spoke out the truth of what he wants. His mother then replied that “No, you can’t fly planes, they are so expensive that only richest of the rich people can afford that and these planes are just fancy toys for yuppies”. I was sorry to hear that. The no-way-you-can-fly attitude seems to be brainwashed to children at young age and their dreams are severed “ah that was the thing I can’t do, so I don’t consider about it”. This must change, personal and air taxi -like flying needs to become common practice to get from point A to point B. Not something that is for only rich people, but something that is for everyone.

No densely packed people in huge planes like in cattle car. No queues in security checks. No limitations on liquids, take as much Coca Cola you like. And you just pack your gear to the plane and make departure and arrive shortly after to your destination. No flight planning, you just drive the plane and all your plan is almost automatic. No radio communications with air traffic control unless you are in trouble for some reason. It would all be automatic that computer would do for you.

Personal and air taxi style travel can augment or even replace domestic travel and also part of the travel to neighboring countries in Europe. Busses and trains are still needed despite there are personal cars and taxis, but this what I described above is the breakthrough that needs to happen. It does not happen by itself. It does not happen by government (FAA, CAA, LAA etc.) making it readily available for you. No it does not happen without lots of work. It requires you. When I was little child, I was thinking that “what kind of technology there is in year 2010”. Later I realized that no, the technology is not given, it has to be done by people like you and me. Nothing is given, someone is always needed to invent, plan, design and implement it. Breakthroughs can be made by thinking out of the box and not just improving the envelope of the old. You can help by doing your part on that.

Thanks for reading and happy rest of the week.

>The problem for series hybrid: Potential solution; flying wing

>I have been thinking about the series hybrid and it may not be ideal for conventional aircraft configuration. The weight penalty is rather high and it needs to be accounted with wing area. It seems that best way to achieve more wing area is to make the plane a wing itself. Flying wing design ends up with large wing area very easily and this can be used to account for the weight penalty.

Therefore I am proposing now this series hybrid idea to flying wing instead. It would also save the long drive shafts and the associated problems which are in the Northrop early designs there.

The engine that drives the generator could reside in CG inside the wing and the electrical drive which is light could be distributed in the trailing edge to several motors and propellers.

This way also it would be possible to get lower disc loading for the same power for high altitude flight by distributing the power to several propellers which would be distributed in the trailing edge. This would work as alternative for using large propellers as these many props would move as much air as the two large props which would make the landing gear unbearably tall. These smaller props could also be inside the wake getting drag reduction benefit from the Goldschmied wake propeller idea but in a bit different form. These props would be easier to manufacture because of the lower power per prop and also smaller diameter for aeroelasticity considerations and it would also enable optimizing the prop planform to reynolds number on the rotation speed meaning very drastic taper ratio (very pointy blades with thick roots, and high curvature).

Interesting case example for poor power to weight ratio flying wing is Northrop N1M. 120 hp takeoff power for 1750 kg plane. That is enormously low power figure. The plane was upgraded later to a bit higher power, but it flew with that power, indicating that it would be realistic to design a rather heavy plane as a flying wing without needing to ending up using enormously big engines.

>Focusing and streamlining my concepts into 5 steps or tiers

>I have apparently so many ideas that they can not be incorporated in one aircraft. Therefore I have concluded that there needs to be several steps or tiers with a slightly different themes.

So these are now:
Tier 1: Conventional simplicity: Low drag low power low cost twin. Small wing but high aspect ratio. Compromise: Medium power to weight ratio required. Concept usable for personal aviation.
Potential outcomes: RC-models, UAVs, Private aircraft.
Budget: Shoe-string

Tier 2: Flying wing: Suitable for diesel power, series hybrid and other non-optimal power/weight ratio powerplants. Large wing. Compromise: Poor power to weight ratio is ok.
Potential outcome: Plane with long range and diesel economy. UAV applications possible.
Budget: Shoe-string, external funding possibly needed for the large craft

Tier 3: Ladder: Large aspect ratio, climb machine. Compromise: High power to weight ratio beneficial, has impact in fuel consumption. Interference drag from multi-fuselage configuration.
Budget: External funding required. Implementation requires substantial investments in infrastructure and machinery.

Tier 4: Scissor wing delta: Aircraft that are optimized for speed and altitude.
Budget: Requires substantial investments.

Tier 5: Will happen only if tier 1-4 succeed. Idea not announced. Not all of these will be guaranteed to produce real flying aircraft, these are just categorization for a family of concepts.

>More QML learnings

Check original from blogger to see includes properly:
http://karoliinamaemoblog.blogspot.com/2011/02/more-qml-learnings.html

I was trying to figure out how to connect button click to C++. Here is very short how (sorry for bad formatting due to this html which does not like code):
main.cpp:

For this I had these includes:
#include
#include
#include
#include
#include
#include “qmlapplicationviewer.h”
#include

Then continued with my program specific includes

int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QmlApplicationViewer viewer;
qmlRegisterType (“MetarClasses”,1,0,”Metar”);
viewer.setOrientation(QmlApplicationViewer::LockPortrait);
viewer.setMainQmlFile(QLatin1String(“qml/PilotHelper/main.qml”));
viewer.show();
Metar met;

return app.exec();
}

metar.h (from my unfinished application):

#include
#include

class Metar : public QObject {
Q_OBJECT
public:

explicit Metar(QObject *parent = 0);
~Metar();
QString readMetar(QString location);

public slots:

void replyFinishedSlot(QNetworkReply *reply);
void retrieveMetarClickedSlot();

private:
QNetworkAccessManager* nam;

};

metar.cpp:

implements clicked function

void Metar::retrieveMetarClickedSlot(){

qDebug () << "Click" << "\n";
QString myreply = readMetar(“EFHF”);
qDebug () << "METAR=" << myreply << "\n";

}

Then QML:

Imports:

import Qt 4.7
import QtQuick 1.0
import MetarClasses 1.0

Then button that sends click to the metar class:
Metar
{
id: met

}

Button
{
anchors.centerIn: parent
height: 50; width: 400
text: “Retrieve metar”
onClicked:(met.retrieveMetarClickedSlot())
}

(The button is custom button not defined in this snipplet, use your own button or button from meego (follow Kate Alhola’s Forum Nokia blog’s instructions how to do that).

>Powerful electric motors

>I found this one for example:

Turnigy CA120-70 Brushless Outrunner (100cc eq)

With two of these a small single seater would fly quite easily.

>Pipistrel 200 kts 4-seat hybrid aircraft

>Pipistrel is working on a new novel concept which would be a four seater and cruise 200 kts with relatively low power (200 kts at 160 hp). I have seen some references to it for quite some time now, but finally bumped into a blog post at Cafefoundation blog which includes also a rendering of the model:

Cafefoundation: Pipistrel hybrid

Looks pretty much like aerodynamically quite much cleaned up Diamond DA40 with some features somewhat resembling Nemesis NXT racer (e.g. the wing geometry) although with higher aspect ratio. I am confident that Pipistrel will succeed with this project and will show how the general aviation planes of tomorrow can be both efficient and fast and will not require many hundreds of horse power to be fast. I think this is one of the most interesting ones of the new production aircraft coming in sometime in the future.

The blog post says it is not a parallel hybrid, would that indicate then that it would be a series hybrid. It will be very interesting to see what will come up from this project. I will write more about it when I find more details.

UPDATE: Noticed from Cafefoundation page the bottom note; (Editor’s Note: Pipistrel will roll out the airplane in the new year, and will not allow disclosure of more than what has been shared here until then.) – this may mean that we don’t hear more about this aircraft before 2012.

UPDATE 2: The new year referred on the previous post was written 2010, so if we are lucky, we will see roll out of the craft this year 2011 then. Lets wait and see. I am sure it will have specifications that will make some jaws dropping. Will be very interesting.

Saving time in building process and still ensuring high quality

There are now several different types of composite parts readily available for use. I was interested earlier in the pultruded carbon rods, but then I was thinking how to connect them with each other easily and there was no good solution for that. I was randomly surfing the web and found this one:

http://www.dragonplate.com/default.asp

Ready-made carbon sheets (could be used as bulkheads and wing ribs)
Pultruded carbon rods
Connection parts for the pultruded carbon rods.

With the connection parts available for example from this company, one could build a new kind of tube-fabric airplane or facet mobile, just glue some rods and sheets together and you are done. No welding required and end result will be stronger and lighter! It could be possible also build wing spar/internal wing structure like on the sky lifts from the rods and connection parts. It could be interesting how much longer wings could be achieved by optimized rod structure (and it could lead to higher aspect ratio for the same weight without aileron reversal and flutter problems).

PSRU for automotive engines

It seems that the usual condition for an aircraft PSRU is to fail. It appears to be difficult to design one (which is incredible, because similar speed reduction units are widely used in industry elsewhere and I am quite sure that there are established ways to design them properly).

I bumped into this manufacturer about which somebody flying a Ford engine was very happy about. So I decided to share the link if that interests you any.

http://www.alternate-airpower.com/

Not sure if the price-what you get ratio is anywhere one could call affordable (7500 per unit) taking in account that this is a chain drive unit rather than a sophisticated reduction gear. However, reportedly this works. And the web page says at the moment “PSRUs are temporarily unavailable “. Maybe this is temporary I hope.

How to convert Canon EOS 5D Mark II h264 mov to image sequence part 1

I was trying to make image sequence for voodoo camera tracker software for 3D compositing in Blender. I tried to find a way to do it in either Final Cut Pro or Compressor. So far no luck. However, great open source software comes into rescue fortunately.

First I tried using ffmpeg and it failed – apparently it only converted keyframes successfully and the frames between them were gray with only the changing part of the frame visible (and obviously it looked really bad). Then after that I tried using mplayer. It was more successful.

This line converted my movie into png sequence
mplayer MVI_2894.MOV -ao NULL -vo png

There are still problems:
– voodoo takes in tga sequence and now I have a png sequence
– there is a gamma problem, this video has different gamma than the image sequence that results – the image sequence has too high contrast.

I will try to continue with this quest but decided to type this short mention that what seems to be a good way to extract the image sequence out of the H264 HDSLR video.

Propeller design rethought

Most manufacturers design propellers in the same way and they read the old books and reports and the prop gets no more than 80-85% efficiency at best. It is written in books that propeller efficiency will be about that at best and it is left often open how low it can be at worst.

Here is an interesting article about a guy that made a prop that was 90 percent efficient by not abiding the “old truths” but thinking out of the box:

http://www.eaa.org/experimenter/articles/2009-02_elippse.asp

Having a strong taper certainly makes sense since the propeller tip travels very much faster than the root through the air. Also the old saying that single blade prop is most efficient does not make sense if you think it in detail: the air that enters in the next blade is not the same air that went through the previous blade because of the forward movement of the aircraft. This could be extrapolated in a such way, that the faster the aircraft travels, the more blades the propeller can have without sacrificing the propeller efficiency. This should not actually require very high mathematics, but I am quite sure that it could be estimated with simple calculations where the downwash of the previous blade goes in relation to the next blade on the speed range intended for the aircraft being designed.

High altitude propeller will require some additional thinking for the tip chord because the Reynolds number will become low if the chord is this short. The TAS is much higher at high altitude, therefore the air travels faster through the prop, that would mean that the prop could have more blades. The high altitude propeller does not require full efficiency at low altitude because to be able to operate at high altitude, there needs to be a lots of excess thrust available regardless.

High altitude flight Re, new airfoil KS415/14.3

The Reynolds number at very high altitude is very low. Here is an article about airfoil study for 60000 ft altitude flight. My previous airfoils are not very suitable in a small aircraft at 60000 ft, they require longer chord to be efficient. I made series of new airfoils for short chord and high altitude and ended up with the KS415/14.3.

Example:
altitude = 20000 m
velocity = 80 m/s
wing chord = 0.8 m (80 cm)
=>
Re = 396331.94
M = 0.2711

Therefore it is beneficial that the airfoil used in this kind of aircraft is such that provides maximum L/D at low Re, here around 400000.

Here are some simulations:

Then some airfoils that I created:
http://www.katix.org/karoliina/airfoils/KS414.dat
http://www.katix.org/karoliina/airfoils/KS415%2014.3.dat
http://www.katix.org/karoliina/airfoils/KS416%2014.20.dat

KS416:

More simulation at low Re, two conditions: 80 m/s at 600000 ft and 111 m/s (400 km/h) at 60000 ft:

Added case 154 m/2 (300 kts) at 60000 ft:

Of these, the KS415 exhibits the lowest drag. Here is the geometry of the KS415:

Here is a smoothed version of KS415/14.3:
http://www.katix.org/karoliina/airfoils/KS415_14_3sm.dat

And simulation for a Reynolds number range:

High altitude without turbo

I was thinking one day about the Bohannon B1. It is basically a modified RV (Harmon rocket something) with very high power to weight ratio and that’s it. This plane climbed to something like 14 km.

So consider this (high excess power) case hypothetically:
– Airplane with high aspect ratio (low span loading) with high power engines with high power to weight ratio. Example: Chevrolet LS9 (600 hp).
– If the plane can maintain level flight with minimal power. 35000 ft we have remaining power 0.2 * 600 = 120 hp.
– Diamond flies nicely with 120 hp, actually 90 hp is quite sufficient for it for normal cruise speed. With lower span loading much less should keep the plane level.

So now the naysay would be “nah, LS9 can not sustain 600 hp continuous without breaking”. However, 120 hp is hardly 600 hp continuous even if the engine is at full throttle and giving all it can at the altitude. It is still stressed only for the 20 percent power.

Same engine, with single stage turbocharger, it should be possible to extend this quite a bit further. With two stage turbocharger even higher altitude should be possible, 70000 ft might be feasible given that the other challenges that come with the altitude are solved somehow.

So you could have a 1200 hp airplane with 240 hp used at altitude for cruise (in case of twin). This should give a quite generous cruise speed at the altitude given that the props are big enough (disc loading low enough).

KS400 airfoil


Airfoil


KS400 wing at altitude 20 km, speed = 155 kts

Here is the dat-file. Download it here: KS400.dat

Works from Re 500 000 up.

More simulations to follow later.

Two My First MeeGo Conference Videos Online

I was shooting a lots of videos at the MeeGo conference with my HDSLR equipment and I managed to put the first ones online. I will upload more videos later, but I decided to get these published now that I have something in a timely manner shortly after the #meegoconf.

These first two do not feature any presentations or presenters, devices (like the Lenovo idea pad which I did not receive myself btw), they are just trying to illustrate the location and few attendants. The latter one has myself also for a short moment visible.

First one (not color corrected, no music, clips just joined together):
Raw footage from Aviva Stadium

Second one (color corrected, with music):
Aviva Stadium (with Music)

If you were there, I hope you like the imagery I captured and it will help keeping the first MeeGo Conference in your memories.

I may publish some of the videos later on Vimeo but because I am not plus member, I can’t upload there more than one video per week, therefore these first ones are coming via Youtube (worse quality), sorry about it.

I made a new Test Song with demo version of Rob Papen Blue

I created a short test song with Rob Papen Blue software synth. This synth sounds pretty good to me, creates me similar inspiration than the Access Virus b used to do when it was new.

End titles

In addition to the Rob Papen blue, Apple loops and some other drum samples were used.

DISCLAIMER: This track contains very heavy bass and is therefore best reproduced with audio system capable of reproducing the deepest notes. I have set high pass to 20 Hz, therefore it should not break a good subwoofer, but less capable sub can bottom with this track when played loud. I recommend playing this loud because this is the point. If your sub breaks, get a better one next time!

Why I have cats

I have noticed that cat magazines are full of this and that family cats and their rewards in this and that competition. So for me it looks like some are having cats because they are sports gear custom designed for a competition. I feel differently – I have cats because it is the cat life long commitment to be their friend. For me our cats are our family members and not some tools of some competition.

When we got our youngest cat, a somali cat, it was sold with requirement of doing some offspring with the cat. However, maybe luckily, it was found out that the cat had a white spot in the fur. Nothing special, in fact it looks cute, but for the cat breeders it seemed to look most revolting error that the cat can have. Well I started wondering that “What are these people talking about?”. True love for a cat is unconditional love because the cat is my friend, not because it is perfect for some cat competition and perfect representation of the custom designed cat race and family.

So I am glad my little cat is out of the competition and cat production plant things and is just my committed friend. Every day waiting me to come home and every day talking to me, sleeping on top of me on the bed during nights (I fall asleep to the cat purring), and sharing life with me. They are my little children sort of.

So this is how this cat ended up on us and how he is my friend. Next I will write about how to raise a cat properly, and especially about what to not do. Many people do critical errors on raising a cat because they don’t understand them. You have to be able to talk with them and understand their talk and feelings and you both need to adore each other (you need to become a mother cat), then you can raise them properly. So stay tuned, more to come.

Vorlons vs. Shadows

Philosophy of today: You remember Babylon 5 series and Vorlons “who are you?” and Shadows “what do you want?”? I have been thinking and actually the shadows are actually more right. It does not matter who you are but what you do and what you don’t do. Vorlons were advocating for maintaining the status quo, but what actually is needed is a continuos ever accelerating invention of new. That is not status quo or improving the status quo but that is what another article referred as “disruptive technology” – i.e. technology that comes from nowhere and does not fit to the market but totally disrupts the market, reinvents what people need and want and gives them what they did not know they want.

So how this applies to e.g. Microsoft article that was mentioned in my Facebook: Praising the importance of some old technology that has been around and everybody has used for long long time is the Vorlon thinking “status quo”. Has been like this and will be like this forever. However, this is not how it works out. It is instead “What do you want?”. So “Who are you?” “What do you want?”. The truth is out there.

First learning project with QML, the very basics – how to make a button

There has been a lots of discussion about the QML recently, so I decided to look at it myself as well. I think that QML is a very good new technology in the Qt and it makes it very much easier to implement out of the box UIs which are not bound to traditional UI logic, e.g. to what for example traditional desktop toolkits (like gtk+) tends to limit.

After one evening of doing things with varying success (in some places syntax is a bit weird and it required some patience to get over it) for one evening and I got a simple button and a dialpad with buttons implemented. Well it is not very usable dialpad, it even does not have 0 or any other buttons that might be necessary on it. Actually I was thinking of doing a calculator and that’s why I collected the buttons like this. I did not try it on N900 yet, but started trying it out on desktop because it is the fastest way to learn this new thing. After getting into it it started to feel pretty nice and many of the difficulties I immediately faced in the beginning were RTFM errors. Good idea is to read some documentation about it before swearing too many curse words – after all it is not bad at all. I got some help from Kate Alhola who is a guru with the QML already and it saved my time a little bit.

Here is what I did: I downloaded latest Qt SDK 4.7.0 to my Mac. I also installed it on my Linux laptop, but this example I created in the evening on Mac. I created empty QML project with Qt Creator. I added the following files to the project.

qmlwiz.qml (this is going to be my main, renders here a numeric keypad)
SimpleButton.qml (this contains the button code)

Unfortunately Blogger strips down all indents and the code looks a bit ugly, but I hope you can still read it somewhat. At least this is quite short reducing the chance of confusion.

SimpleButton.qml:

import Qt 4.7

Rectangle {
id: simpleButton
width: 60; height: 60;
radius: 10
border.color: "gray"
border.width: 2

gradient: Gradient {
GradientStop { position: 0.0; color: "gray" }
GradientStop { position: 0.33; color: "lightgray" }
GradientStop { position: 1.0; color: "darkgray" }
}

states: [
State {
name: "up"
PropertyChanges { target: down_anim; running: false }
PropertyChanges { target: up_anim; running: true }
},

State {
name: "down"
PropertyChanges { target: down_anim; running: true }
}

]
// transition is unfinished, possibly not needed at all, because states take care of it
transitions: [
Transition {
from: "up"; to: "down"
}
]

MouseArea {
anchors.fill: parent
onPressed: parent.state = "down"
onReleased: parent.state = "up"
}

SequentialAnimation {
id: down_anim
NumberAnimation {
target: simpleButton; properties: "scale"
from: 1.0; to: 0.8; duration: 100
easing.type: "OutExpo"

}
NumberAnimation {
target: simpleButton; properties: "opacity"
from: 1.0; to: 0.5; duration: 100
easing.type: "OutExpo"
}

running:false
}
SequentialAnimation {
id: up_anim

NumberAnimation {
target: simpleButton; properties: "opacity"
from: 0.5; to: 1.0; duration: 10
easing.type: "OutExpo"
}
NumberAnimation {
target: simpleButton; properties: "scale"
from: 0.8; to: 1.0; duration: 10
}

running:false
}

Text {
anchors.centerIn: parent
id: button_text
text: "0"
}
property alias label: button_text.text

}

qmlwiz.qml:

import Qt 4.7

Rectangle {
width: 800
height: 480

transform: Rotation { origin.x: 30; origin.y: 30; axis { x: 0; y: 1; z: 0 } angle: -10 }
Rectangle {
SimpleButton { x:100; y:100; label: "7" }
SimpleButton { x:100; y:100+64; label: "4" }
SimpleButton { x:100; y:100+64+64; label: "1" }
SimpleButton { x:100+64; y:100; label: "8" }
SimpleButton { x:100+64; y:100+64; label: "5" }
SimpleButton { x:100+64; y:100+64+64; label: "2" }
SimpleButton { x:100+64+64; y:100; label: "9" }
SimpleButton { x:100+64+64; y:100+64; label: "6" }
SimpleButton { x:100+64+64; y:100+64+64; label: "3" }

Text {
text: "Karoliina's Magic Keypad"
}
}
}

To run the application, there is a button with green triangle on near to the bottom of the left hand side toolbar on the Qt Creator. When the main program file is selected on the file list and this button is pressed, the program is run from Main.

I looked the documentation further and discovered that there is also a repeater functionality which can be used to build e.g. the dialpad or calcpad shown above without repeating the SimpleButton instantiations manually for each number.

There is plenty of room to make this nicer, actually I like a lot a such button that is composited from two layers: basic layer illustrates the button itself. Then a translucent highlight layer is composited on top of the button when press down occurs. When mouse button release occurs, the composited top layer is faded away with alpha channel ramp. I may try that next, but I did not have time to do the graphics for the highlight yet (as it looks the best when it is made with e.g. Inkscape and not attempted computationally). I may try that later. Now I wanted to finish something before going to sleep.

Bottom line is that QML is very nice and super easy. With short time it is possible to learn to do some quite nice things already. I rotated the scene a bit because I like how the menus on Colin McRae: Dirt are rotated. Actually with QML it is very easy to make similar dynamic animated rotation so that the scene slightly turns by itself on time back and forth. To do that, I was thinking using the NumberAnimation. I may try that after doing the composited button which I think is even cooler. Then I need to also hook these to C++ application to do the calculation logic on the C++ side. Kate has a nice AR-Drone control app doing this exactly already, so I need to look her code to see how to do it. Quick look reveals that it is very easy. I need to try maybe tomorrow if I have time.

Ar-drone flying

I referred to the AR-drone in previous article about flying car. We produced a short video about Ar-drone flying:
http://www.vimeo.com/16147472

iPad provides control input (which direction one wants to go) and the computer inside the AR-drone provides artificial stability (so it is very easy to fly unlike RC-helicopters).

The Future – How do we get there?

I remember when I was a child, I was thinking what the future might bring and that year 2010 we would have this and that. It was based on think that because it is 2010, we will have this and that. I was kind of naive thinking that it will be made for me, someone will invent it for me and I will just enjoy the ride – like television, you just watch what the broadcast networks broadcast to you.
But what kind of ride that would be if you weren’t in the controls? So start driving by yourself.

I have been thinking this a lot. So later I realized that it does not work like that. Future is not something that is given. It does not come by itself. What we predict for the future today will not happen if somebody does not do those things. You see we don’t have all the wonders of science fiction of the past predicted at hand now except for the very fancy telephones – in fact much nicer superphones than even Star Trek ever predicted. But that is only one thing. We can have so much more and we need to have much more than this.

So who is this somebody who will fabricate the future? Some special person that will do all the work for you? No. That special person don’t exist. You and me are responsible of fabricating the future.

So if you think that year 2020 we will have this and that, because it is already 2020, stop. Think again. It will only happen if you do it. We all are fabricators of the reality and the future. Every little thing matters. You might think “this has been always done like this and I am required to do it like this”. Stop this and think how you could do it better or how you could invent something that gets it done for you. Think out of the box and do not think that you can’t make it because it is impossible. Nothing is impossible. You can do it if you want. One step at a time and you will get results. Try to make a change.

Every little drop forms an ocean and this is the only way to make dreams come true. And what the dreams are? These form new drops in the ocean which grows on each cycle bigger and bigger. And this is how breakthroughs happen. And these are very important for the future of you and me and the human kind.

So on next Monday when you go to work. Think how you could improve things. Tell what you would like to be done better. And do it yourself. Continue one task at a time until it is done. You can do it. I can do it. We can all do it. And the revolution begins. The future will happen because you created it, we created it. It is not given, but achieved. We all are the instruments of the future, we fabricate it.

Thinking out of the box: The case for flying car

I have been thinking what would make “flying cars” feasible. I think the answer is pretty much that it needs to be VTOL. Anything that lands on runway will become very complex design mechanically. A real solution would be to land on the car anywhere, e.g. shop parking lot.

So what are the breakthroughs needed for this? I doubt that the internal combustion engines can do this ever very well and turbines are out of question as well because nobody can afford flying to shop with turbine power. So I think this will require electric motors and advanced battery technology. Hybrid design could possibly work too.

Large helicopter propeller blades will become a problem when landing on congested place and it would cause also safety issues. You could hit something with the rotating prop and newspapers would be full of horrific accidents very soon. Someone sliced somebody or sliced somebody’s house or whatever. The props should be shrouded for safety of general public. Then how many props? One prop and it will require tail and tail rotor. Not so nice. Coaxial rotors, that would be better but still will require one to be helicopter pilot. I think the case of how it would work is very simple, and the case example already exists in small scale as sort of “RC copter”:
http://ardrone.parrot.com/parrot-ar-drone/usa/

So computer controlled fly by wire and the user would be just selecting to go forward or backward or up or down or to rotate. Computer handles the rest. Each prop would have electric motors, big ones instead of the small ones found from the little thing. This plane could even have small wings, which could be optimized for cruise only (and not for landing at all) and could be possibly pivoting – when airspeed increases less vertical thrust would be needed. This could be “the flying car” that everybody can control. Not everybody can become a helicopter pilot or even airplane pilot – requirements are all the time becoming more and more and less and less will ever succeed to become pilots (from those who dared to start the training), but anybody that can drive a car, can select up, down, turn left, turn right, go forward, go backwards. This thing could be done so that all “flying cars” would have a data link to other “flying cars” nearby. The computer could automatically avoid collisions without the need of centralized air traffic control at all. Actually air traffic control is a system that can not scale to the level of cars are used on the roads, no matter what. The only way to manage the huge amount of traffic is to not have centralized control at all, but the control would need to be between the aircraft and it would need to be automatic data link, not this antiquated AM radio we are using to call ATC. I think it would be reasonable to make the system such that there could be as many flying cars in the air than there are cars on the ground now. Traffic congestions could be easily avoided because there is lots of space in the vertical plane in the air (when we forget about airspace altitudes and minimum altitudes etc.).

The four rotor configuration would also solve the problem of placing ballistic parachute. It could be directly at the CG and it could be even made automatic, if something fails, parachute would be pulled right away.

So what would be needed:
– lightweight electric motors with high power (already possible with today’s technology)
– fly by wire system (already possible with today’s technology)
– data link to other aircraft (would be already possible with today’s technology)
– combustion engine to charge batteries (already possible with today’s technology)
– high capacity light weight batteries (this might require next generation batteries to have good enough usefulness)

For these to be good for mass market, the following points must be considered:
– it must not require pilot’s license
– it must not require medical of any kind
– it must not be over-regulated, otherwise it will never gain any popularity
– it needs to be very much automatic and very easy
– there must not be super-restrictive regulation where one can land and take off, the usefulness of this concept depends on possibility take off and land from and to everywhere, it would make no sense to take off from airport and to land to airport
– it would not replace airplane, instead one could fly with this kind of machine to airport to get far away with the airplane, I don’t see that this kind of design could be made ultra long range and super fast.
– it is unavoidable that this design actually requires more space still than a car, quite large diameter props needs to be used for efficiency. However, each of them would be more reasonable size compared to one helicopter rotor and less expensive to manufacture. Also four rotors provide more thrust and lower disc loading than a single rotor.

Then how these could be manufactured?
– For mass market I think they should be pressed with 3d molds from aluminium with monococue type construction like cars are made of steel. This should be feasible with today’s technology because Piaggio P-180 Avanti is manufactured from this type of aluminium construction.
– There could be no rivets and there could be no hand layup in anywhere in the structure to make the price down
– The price of high capacity batteries must drop to get the price down
– the electric motors are inexpensive to manufacture in great volumes

So I don’t believe in Möller’s design as such (combustion engines driving ducted fans), but this slightly different version (with helicopter like but shrouded rotors) could possibly be feasible. And these could be made aesthetically to look very stylish unlike helicopters, and they could have bigger mass market appeal also because of that.

Hybrid aircraft ideas, continued from the previous article

The previous article received lots of very good comments, and since my reply to one comment became too long, I decided to post a new article about it.

One reader proposed either push-pull hybrid where one engine would be diesel and the other would be electric motor. There was another possibility also considered, with coaxial propellers the same thing. This is a valid point and would work. There are some challenges on it therefore here is some cons I considered and hereby listed for this setup:

I may post this as a separate article also because otherwise it possibly does not get read by that many:

This is reply to a commenter for the earlier article:
There is a little incompatibility here that I don’t see how to overcome:
– the diesel engine operates at medium rpm which requires reduction drive
– the electric motor can designed to be direct drive and low rpm without need for reduction unit

Having series hybrid there is weight penalty of two brushless DC motors and the engine and the battery, but no other systems. The engine runs the brushless DC motor without reduction gear and the motor that is used as generator can be designed to operate at the rpm the engine operates. The other motor which drives the prop can be made to operate at low rpm.
-> this sytem has NO:
– weight penalty of reduction gear unit
– reliability penalty of reduction gear unit
– need for propeller clutch and the associated reliability penalty and weight penalty
– need for drive shaft to achieve aerodynamic cowling shape

You already listed the most of the pros for the diesel direct drive. I list the cons:
The diesel direct drive cons:
– would not work without clutch, the power pulses would make the prop come off in flight if it did not fail on ground testing already
– does not get necessary power to weight ratio from the engine because of the need to run it at low rpm because of the prop requires low rpm
– weight penalty of the additional gear reduction unit
– reliability penalty of the additional gear reduction unit
– weight penalty of the clutch
– reliability penalty of the clutch (in Thielert engines they have failed now and then, especially in the original design, the latest engine models might have addressed this issue but I am not sure)
– added complexity
– aerodynamic cowling shape may require drive shaft, and reliable drive shaft has been proven to be hard to design and manufacture such way that it would be 100% reliable
– the diesel engine is harder for the prop than a electric motor because of power pulses (even with clutch) and more expensive propeller is needed than would be needed with the electric motor alone.

There is however a case what has not been talked about for your case:
– planetary gear system for driving the electric motor and the diesel engine at the same time – Toyota Prius hybrid synergy drive thing. That is about bullet proof and single point of failure will not stop the prop, one motor is enough to continue driving the prop.
– This of course has associated weight penalty. On Toyota Prius it does not matter, but on aircraft it does matter.

Case for push-pull:
– To avoid drive shaft, the diesel engine would need to be the front engine.
– case for achieving any kind of laminar flow to the fuselage would be pretty much lost
– inefficiency problems on the rear prop because of the front prop. I have not quantified this on the other hand, apparently nobody is able to answer how much is the penalty, it is not even exact in literature.

Nice collection of tech papers (3LS and more)

Here is a yet another collection of tech papers, however, in this time in a quite hand-picked manner – those most interesting ones (Voyager liquid cooled engines, Rotary engines, three lifting surfaces papers etc.):

http://www.protonet.org/doc/

Go to get them, good stuff.

New song on a video

I made a new song for this video:
Attila short film

The style is this time a bit like Vangelis.

Approved some comments in old posts

Sorry for not being very active on this blog lately because I have been busy (work, summer vacation (I have been busy (work, current airplane, summer vacation etc.). I noticed that there were plenty of not yet approved comments. Sorry for the delay, I have been busy. Your comments are now approved and after you have been approved once, I think you can comment without prior approval in the future. Thanks for writing comments!

Karoliina and Meego band live playing Meego-Song

We had an opportunity to play live at Nokia Summer Party. I had earlier composed this song for our internal team building event, but then I went and asked from Eastway if we could fit our band to the schedule. So this is it, engineers from Meego playing live! It was fun. Jani Mikkonen made on-topic nice lyrics on it. It was fun for us! I hope you will enjoy it. I play the Nord Modular, Jani Mikkonen is singing and Peter Vajda is on bass. The rest of the band is myself on the last few weeks at my home studio, playing the tracks in the Logic Pro one by one. The final part has very many tracks and voices at one time, sad that it is hard to hear from this recording. We will put a proper hifi quality soundtrack later online separately.

Here is the vid. Enjoy the summer:

Meego Band Live on Vimeo: http://www.vimeo.com/12807797

Yes jou meegou!

Karoliina Live 23.06.2010

I played live yesterday. Here is a video of it. I played the Nord Modular live.

VIMEO: Karoliina and Meegoband playing Meegosong

Atheism is a religion too – Universe may be a much more complex system than we can comprehend

In my opinion atheism is a religion for sure. But I can see also that it can be a less harmful religion than the others. I am agnostic myself because lack of proof is not a proof of inexistence. If religious books are just astrology and religions are just way to use power and control, it doesn’t still prove anything to any direction. It can be true only in a singular narrow case when viewed from specific perspective.

Because universe may be a much more complicated than you or me can see or understand or comprehend. Even 100 years of advanced technology might be indistinguishable from magic. Think of a civilization that would be 1000 000 years ahead of humans. Then when you think that (don’t think captain Kirk, that is not 1000 000 years ahead of us I hope), how could you tell the difference between a god and this kind of being? I am sure you couldn’t.

You could compare yourself to ant. Ants would believe that everything they know and see is the universe that exists. However, they can not comprehend beings like humans for sure. But still we humans exist.

And what it comes to the topic, death:
– each cell dies because it has programmed to die
– different animals have different lifespans, because they have different genetic code, not because they would be worse designs that are worn out faster – think what if you could change the genetic code? Dying becomes obsolete.
– I can already also predict one another thing: humans will have life span of at least 1000 years before humans are capable of any kind of interstellar travel. Forget captain Kirk that dies under age of 100 years. The real captain Kirk could be 900 years old or more. And in fact, it would not be out of the question even that the real captain Kirk would live in a computer and the biologic bodies would have been long time abandoned already as obsolete, or it could be that the beings are combinations of technology and biology (cyborgs).

There can be many levels of existence and everything is relative and biased by the eye of the beholder and with the very limited knowledge, it is impossible to draw sure conclusions, and with more information, already done conclusions are usually refined and corrected. You never can play only one horse, because there are many horses, and the likelihood that you play the wrong horse is higher than when you would not be conclusive about which horse to play. I find being agnostic the only way to be without religious belief. Because just a belief that something simply does not exist is a belief already, and it is not scientific.

European, Stuck in San Francisco due to volcanic ash clouds?

Here is what useful you can do while waiting:
1st task: if you are located in downtown San Francisco in a boring hotel without a car, move yourself away from there at once. You need a car and more central place to for seeing interesting things. We prefer usually Palo Alto as the central location. Car you can get from Hertz if you don’t have already one. Prices are great e.g. in Palo Alto city center, much better than on airport.
Other places to see in San Francisco Bay Area:
– Hiller Aviation Museum, San Carlos
– The hills between Silicon Valley and Half Moon Bay. Find a way first to Skylonda, then follow Skyline boulevard to south. There is for example nice place to see called Russian Ridge. Go to the parking lot and then walk maybe a kilometer or two on trail and the view is magnificent. You can see Silicon Valley and San Francisco at the same time. Take camera with you.
– Half Moon Bay: Pacific Ocean seashore. There is a nice beach there. Take swimming gear with you. At this time of the year the water is pretty cool, but by Finnish standards, it is humanly possible to go swimming.
– Mountain View – Palo Alto sector: the best Sushi and Indian restaurants I have ever visited.
– Fry’s Electronics in Stanford: If you are missing any gadget, cable, card or anything that you would look from verkkokauppa.com in Finland, you can find it from Fry’s electronics.
– Apple Store (one is in Stanford shopping center): If you want a good deal for a Macbook or Macbook Pro or perhaps iPad (that you will be able to carry back), that is a place. Also software for Mac. And bonus: You will get Nokia discount there too, not only in Humac store and Mac People Store in Finland. Take Nokia card with you, otherwise you don’t get the discount.
– Palo Alto airport: one of the most active general aviation airports in the world. If you want to see bay area from the air, you can go to West Valley Flying Club and ask for demo flight and specify that you want it to be the Bay Tour. Recommended aircraft: try one of these: Cirrus SR20, SR22, Diamond DA40. You can safely be in controls as a prospective student pilot with a flight instructor. You don’t need TSA approval or anything for the demo flight. You can also walk around there if you want to see all kinds of small airplanes, the airport is full of them.
– The woods/forest between Palo Alto and Half Moon Bay is pretty cool. There are roads through it and you can see very tall and very thick trees, there is nothing comparable in Finland, go there to see it by yourself.
– Of course you have to drive all the bridges.
– There are more hills on the other side of the bay too, these you can also explore if you have time, these are between Oakland and Livermore.

Using Teknodur polyurethane paint like topcoat, two layers of paint to finished surface without any pinhole problems

I have noticed (well, might be that it is a usual way to use it but I just haven’t heard of it) that Teknodur polyurethane paint that can be used to paint composite structures like those on experimental aircraft, can be applied with brush and then perfected with sanding like on applying topcoat (/gelcoat) on a sailplane.

This just works for me, please do not follow if you are not willing to take the responsibility of potentially ruining your paint:
0. Do not use base paint or raw epoxy method, you don’t need to fill pinholes, just forget about pinholes with this method! In other words, you can directly apply like this on top of smooth sanded dry micro or automotive polyester filler!
1. Apply thick layer of Teknodur 2 component polyurethane paint (e.g. white) on top of the composite structure. Any other similar polyurethane paint works too (I have also tested with Hempel 2-component boat polyurethane paint). Base paint is not necessary, the Teknodur takes on a bare epoxy surface which is sanded to dull (be sure it is sanded to dull, if it is not, then it will not take, but peels off). Do not use solvent to make the paint thinner, the thick property is desirable. The thick paint blocks the pinholes on the surface below.
2. Let it cure and then inspect. Look, 1 layer of paint and no pinholes! There may be runs, but you can get rid of the runs easily!
3. Wet sand the surface smooth. Use quite coarse grit at this point.
4. Add second layer of Teknodur paint. You can use a bit solvent now, and you will get no pinholes. Try to avoid runs more carefully at this time.
5. Wet sand to completely smooth finish.
Use all available wet sand paper grits up to 2000 if you can find 2000 grit. 1200 grit is fine though.
6. Use polishing compounds to finish the surface to high gloss.
7. Add vax and polish.

A little bit tedious with all the wet sanding, but on the other hand: full control over pinholes, no base needed, and most sanding goes to the paint without harming the critical glass/carbon fabric under it.

I am just in middle of painting a little composite part this way and I have noticed that it works. Before you ruin any large parts by using a method where the paint is misused and done differently than all painters will teach you, please try it to some scrap part first. I have finished two scrap parts like this and they have been in the snow and ice the whole winter without any harm done to the paint surface, so I would guess that this sanding method does not ruin the paint.

I am not sure, but it could be that:
– You would be even better off if you first apply a very thin layer of paint that enters the pinholes. Sand dull. Then don’t care about the pinholes, just add the thick layer of paint on top of the thin layer.

On the base and on the first layer, the sanding result does not need to be smoother than 240 grit. Anything more than that is waste of time because the thick paint rounds the minor irregularities.

Pros:
– Polyurethane paint is easy to sand, very very very very easy compared to sanding epoxy
– Runs on polyurethane paint is no big deal, just sand them off in a minute and you are done!
– Quick to finish
– The thick paint is very weather resistant and is as smooth as you sand it

Cons:
– The layer of paint becomes pretty thick and it is heavy, and in some cases might be undesirable.

Idea: Series hybrid in airplane using auto engine and avoiding the pitfalls of auto conversions

I have been thinking this back and forth now quite some time. This idea is quite simple, the purpose is to fix the most critical problem with auto conversions, achieve better aerodynamics, propeller placement and mass and inertia distribution.

Auto conversions most often fail, no surprise, because of the reduction gear or belt. The core engine is not the root cause in the problems and many problems with the reduction belt or gear system can not be seen beforehand because the dynamics of the vibrations of the engine, propeller and their inertia forces affecting each other is a bit more complicated than one could think at first – it is not that simple to make these parts to last for hundreds or thousands of hours.

So we came up (with Kate, we usually talk with Kate about these things and we kind of invent these things together, I usually happen to be the one who writes them down – and it is usually so that Kate is the opponent into which I test my idea’s feasibility before I write it here) with the idea of having a auto engine, possibly a diesel engine, running at constant power, most likely exactly at the optimum point of the engine, always. Then all the power variation would come from the electric motors which would drive the propellers. The idea is that the diesel engine only runs a generator.

The downside of this idea is the additional weight from the generator, batteries, motor controllers, electric motors and the props (depending how many electric motors are used, it is also possible to use just one if that is preferred). However, there are two several things possibly good about this:

– First the diesel engine burns less fuel, resulting smaller fuel tanks.
– Secondly the gearbox system is saved. The gearbox system can be very heavy duty in a high power aircraft engine and they still have tendency to fail. Possibly something like 40-50 kg is saved straight away.
– Thirdly the aerodynamic advantage – optimal aerodynamic shape without using long extension shafts and couplings to deal with the dynamics of the rotating shaft connected to a non-optimally rotating propeller and the power pulses of the diesel engine. Now there is the chance to put the engine anywhere in the airframe where it best fits and propeller drive don’t need to be considered at all.

Then there is the redundancy thing. Brushless DC electric motors usually never fail, but the prop can still fail in bad circumstances. Therefore having two independent props for the one diesel engine could be advantageous. Same thing with the batteries – if the diesel engine fails, the batteries could be sized such that the aircraft can fly without the diesel engine for example for 30 minutes in level flight. That might be enough in most cases to get safely on the ground, except on middle of an ocean. The most likely place for the engine to fail is the takeoff. This takeoff stress would never happen with this engine configuration – the engine would be run always at optimum and safe power, never on takeoff power. The extra power for the takeoff can be easily taken from the batteries if they have proper capacity and the electric motors are powerful enough. On takeoff the batteries at full power are not discharging that quickly, because the diesel engine is recharging the batteries at the same time. The takeoff power can be rarely used for longer than 5 minutes on an aircraft equipped with Lycoming engine either, so having a limited period of time for the full power is not that big problem.

Generator and electric motor can have very high efficiency, and the gap to a efficiency of a reduction belt system is not that great. Best electric motors (though heavy ones) are around 98% efficient.

On descent the diesel engine could be shut down providing there was enough battery capacity. The motors could actually regenerate also batteries when the pilot wants to decelerate the plane.

Maintenance cost would be like a single engine aircraft, but the reliability geared towards a twin. Of course there is the one little fine print: the battery pack is expensive and it has an expiration time and date, unfortunately. But nothing is perfect and without compromises.

Any comments about this idea? This surely would not be a racer as the power to weight ratio would be rather poor, but anyhow I am thinking, providing it would be efficient enough to climb adequately, this would be a quite economical thing to fly and also easy conversion-wise, almost stock auto engine would be okay, no reduction gear and prop installation and an assembly that takes the push or pulling loads, would be needed. Also waiting on the airport would not waste any energy, since props can be completely stopped when the plane does not need to move. For example Lycoming IO-360 consumes about the same amount of gasoline per hour when waiting on IFR clearance on the ground than our Toyota Prius car on highway. Consuming zero amount of fuel when still on the ground, but still being ready, would save some liters.

And answer to the question, why diesel and not gasoline when gasoline engines can be run very lean and quite great specific fuel consumption values can be achieved in optimal conditions – it is quite simple: availability of the 100LL/Avgas seems to be becoming poor. There has been three 100LL operators in Finland, but two of them decided to discontinue this year. There is only one left. When that only one decides that it is not profitable enough, there is no 100LL available for anybody and the whole country’s fleet of Lycoming and Continental based planes are grounded. The Jet-A1 is not going anywhere, so engine that can burn the jet fuel would be a safe bet. Jet engine, turboprop, or turbofan are out of the question because those are not available in meaningful sizes and power classes – there is not a small turbofan that would have high pressure ratio and bypass ratio available, nobody manufactures such a thing. And it is unlikely anybody will in the future because this personal flying all is a very niche market unfortunately until it changes for better (if it ever does).

The implementation possibilities have challenges; namely no such electric motor available (would require custom motors possibly), etc. And the weight also causes penalty for the efficiency and speed of the plane. But the power to weight ratio will be with this arrangement a lot better than on a pure electric aircraft. And pure electric aircraft is feasible, why an electric aircraft with a generator and a fueltank added would not be.

And by the way, even if it is first of April at the time of writing this, this blog post is not an April fool.

Rutan Proteus photo collection

NASA has nice photo collection. If you like the looks of the Proteus (in my opinion it is one of the most beautiful aircraft ever done), have a look:
http://www.dfrc.nasa.gov/gallery/photo/Proteus/index.html

Airplane design from structural efficiency point of view combined with aerodynamics point of view – multi-domain optimization

So far I have been looking only the aerodynamics side, but it is quite evident that compromises are needed on the aerodynamics side to achieve the best structural efficiency. I think one good example is Virgin Global Flyer (Scaled Composites model 311). I have not analysed yet the structure, but common sense says that trimaran has weight placed more evenly along the wing span avoiding a very large point load in the middle where the single fuselage would normally exist. The trimaran may have more wetted area than a single fuselage, but on the other hand, weight savings in the very high aspect ratio wing and space gains for the extra fuel are in this concept very important factors.

I find the trimaran configuration quite interesting – several different engine placement configurations for example can be used with this configuration without changing the aerodynamic shape of the concept very much. It is also interesting because it allows placement of the main gear away from the center fuselage and thus provides greater stability on the ground when the aspect ratio is high even if there is fuel placed to the wings very far away from the center of gravity. And as can be seen the same design suits several different missions: Global Flyer is very much like White Knight 2 with SpaceShipTwo under it on the center. Almost the same configuration, adapted to different kind of mission for very different kind of parameters (Global Flyer = long range cruise, White Knight 2 = optimized for climb).

Global flyer drawing Google found from some site
Wikipedia has another great photo, this is from front

The configuration is not really so new and not so unproven either, as people might expect, here is one example where a similar configuration has been used a long time ago:
Northrop Widow
The only difference here is that the Northrop Widow was optimized for different mission than either of the abovementioned and that it had piston engines in front of the outer “fuselages” which were interconnected from the tail section similarly than in Adam A500 whereas the Global Flyer and White Knight Two have two separate tails. It is quite apparent why the tails are separate in these aircraft – because the outer fuselages are placed so widely apart from each other, connecting the tails would have made the tail unnecessarily large which would have caused negative effect for the drag despite it would have had fewer intersections. On the other hand, I have been looking different HALE concepts, and it is quite apparent that the number of intersections is not the major drag source in high altitude aircraft, but the induced drag is, and to minimize induced drag, more intersections can be allowed as the penalty from them is lesser than limiting the aspect ratio would be. This is why there are even some concepts considered at the moment which have wing struts – even if everybody knows that they produce drag, in some concepts, the significance of that drag can be proportionally small whereas the increased aspect ratio has major effect on minimizing the total drag of the aircraft. HALE aircraft have to be quite different than those which are designed to cruise at low altitude, the drag percentages of each contributors are quite different and “one size does not fit all”.

It is quite interesting area to explore when the structural efficiency is added to the equation in addition to the aerodynamics and the result is a compromise on both structures and aerodynamics instead of being optimized for either aerodynamics or for structures. The mission parameters tend to heavily affect both and best suited results can be achieved by combining these two and by knowing the intended use exactly, potentially bigger gains can be realized than in a concept that is a general purpose in everything (GA = GENERAL aviation).

Austin’s jet design

x-plane.com website had looked a bit boring lately, Austin’s long and interesting changelogs are hidden deep under the menu structure, looks like a design of a web designer lately.

But luckily yesterday I realized that Austin had added a link on top of the page. Small link on top of the web designer blob and that goes directly into an interesting page. Now today there are two links (as there is 9.50 beta for X-plane available too), but this one was particularly interesting in the topic of this blog: The Laminar Research X-1 Cavallo is conceived

Why Diamond uses Wortmann FX63-137?

I have been thinking over and over again why Diamond has chosen the Wortmann high lift airfoil FX63-137 on its aircraft. However, I am suspecting what might be the reason (not confirmed though since anybody on Diamond booth e.g. in Oshkosh is usually never able to answer to my questions). Here is my theory about it:
– The FX63-137 has high L/D at fairly high alpha and thus Cl (as the airfoil is such that the Cl rises rapidly as a function of alpha). This is maybe not the best configuration for cruise where a low drag bucket at low Cl is desirable. On an airfoil which has best L/D at low Cl, the climb has more D component (because high lift devices cause drag) and while getting more L with high lift devices. It might be close to the optimal climb optimisation on the chosen aspect ratio on those planes and compromise is drawn to cruise and it is not seen as a bad thing because competition is not faster but usually slower, it does not take so much to win e.g. a C172 in efficiency and speed after all. So it might be that with a lower drag cruise airfoil e.g. DA42NG with the very heavy diesel engines might have somewhat poorer climb rate on single engine situation or it might not climb alltogether if the airfoil was not optimised to provide low drag on high Cl.
– Comparison between the DA40 and Cirrus SR20 kind of potentially shows this: the Diamond shows significantly better climb rates with a quite similar AR and quite similar wing loading (SR20 takes some toll on that, but not that much in comparison if a light loaded SR20 and heavy loaded DA40 is compared), despite of the fact that the SR20 has more sophisticated flaps and the SR20 has 20 hp more engine power available.
– This can be also evidenced on best climb rate speed: with similar wing loading, the best climb rate speed is much higher on the SR20 than it is on the DA40, which partly indicates that the sweet point in the L/D occurs at lower alpha on SR20 than on DA40. SR20 also requires quite accurate angle of attack and thus speed to climb optimally whereas the DA40 is not that critical which would also indicate that the low drag bucket of the FX63-137 is broader than on the (according to UIUC data site) Roncz airfoil on the SR20.

So this is just my home-brewn theory style thinking, is based on collected information and my experience with flying the Diamond DA40, DA42 and Cirrus SR20 and SR22. I might be wrong as always, but here is some food of thought if you have been thinking why there is this airfoil with high L/D at high Cl and the airfoil also has fairly high pitching moment which some find undesirable because of for example trim drag.

Wanna send SMS from your app? Easy to use SMS and Messaging API to Maemo 5

Are you a developer and are you interested in messaging API (on your N900)?
Kate Alhola recently released a very interesting blog post about the API she created and it seems that it got under the flood of the MeeGo related posts. So here is her great article, please go and read it if you are interested on this, I think it is worth it:

Easy to use SMS and Messaging API to Maemo 5

Why Maemo is a powerful platform? Because of native applications!

I have been thinking what is the major difference of Maemo compared to many other platforms, and I think it is that it offers native Linux for developers. Instead of living in the limitations of javascript, Maemo enables you to do much more and enables you to use the full computing power available from this little computer. I feel that the train went already for Java, I was in the middle of the previous Java-bubble that pretty much exploded in around year 2000 depression. Been there, experience it first hand. Needless to say I don’t believe in Java or .NET or similar hypes anymore. The future is for mixed offering including both native and high level environments. And that is what Maemo exactly is today, you can use both high level languages _and_ more importantly low level languages.

Coding native applications can be tricky for newbie developers, but the possibilities are vast compared to running just for example javascript on top of some runtime or some proprietary environment with proprietary closed APIs.

What helps nowadays more in Maemo is the Qt, it makes the development of native applications a magnitude easier and more efficient. Instead of tinkering a lot with the user interface, now you can build one even with Qt Creator / Qt Designer.

Qt for Maemo 5, that Antonio Aloisio and Kate Alhola among others made it possible with their long work of hildonizing Qt, is now available as beta now from the Qt-labs. This technology luckily became officially supported from the roots of community supported port and hopefully this will get now even greater audience than before and attract more Maemo developers and prospective Maemo developers than before.

While Gtk is available and Maemo 5 applications have been done with Gtk, I would recommend to use Qt in the new future projects. PeterMaemo is saying that Qt is “forward-compatible technology on Maemo for years to come…”, I want to believe in that because the most wise thing to do is now stick with Qt for years to come to have best possible backwards compatibility for UI applications.

Recently there have been interesting development on native iPhone apps which utilize the power of the CPU (which would not be possible with some runtime without the CPU of the device being a supercomputer), like X-plane flight simulator, a controller for RC aircraft that streams video to the device and uses augmented reality to make a game on top of the cake, Voice Band where one can sing notes in a sequencer which translates them to notes and plays back with instruments so one can do convincing sounding compositions on the road without any musical instruments other than one’s voice etc.

I would be eager to see this kind of apps to emerge on Maemo. Maemo 5 has OpenGL ES 2.0 support, Qt, and a native application development environment. I think that is very cool, and one can do really creative and innovative things with it. If somebody will do X-plane quality simulator for N900, I will certainly even willing to pay for it. Same goes for Voice Band, I would eager to use it when I am not front of my iMac which is stationary in the corner of our living room – you know, you can’t really control when and how you compose, the ideas just pop in the head by itself in uncontrolled manner and they are gone (at least happens in my case) if they are not right away utilized. And I would like also augmented reality apps for the Maemo. Maemo has great camera and it is the most open phone out there, so I would think it would be the ideal place to hack this kind of things. And what’s more, there is even TV-out on the Nokia N900, I was thinking that one could connect data glasses to the TV out potentially and the image from camera and some computation could be used as augmented reality – not just in someday in the future, but right now today on Maemo 5! If you have some great idea, now it is a good time for pursuing it. Just remember to use Qt as UI toolkit and it has a good chance to survive also the future incarnations of the platform (you may need to do modifications to places where you use the lower layer, but if you do it wisely and in portable manner, you might not be so unlucky with future generation of Maemo and the Maemo devices).

A long time ago I was doing a loudspeaker box design program with Qt (actually that was before I even joined Maemo). The project unfortunately almost died. However, Kate found one day a backup from one hard drive and she uploaded the code to our home gforge. Luckily it worked out of the box with Qt 4.5.x on Today’s Ubuntu and possibly will also work with Qt 4.6. And luckily enough, the UI was actually designed with Qt-designer, so basically it is easily replaceable, and I can possibly produce a Maemo-version. Loudspeaker box design program may be niche, but since the current availability of them for other platforms than Windows is poor, it could be possibly cool to make this application a reality. It currently calculates correctly just closed box and the vented box calculation is broken. I will look if I can make it work with the vented boxes as well and then it could become somewhat useful compared to otherwise nothing available. It will not have all the features of e.g. WinISD initially, but it is cross platform and will run on Mac, Linux and Maemo, so that should be something. The cool thing about Qt is that you don’t need any high level language that would potentially cripple the features and performance to achieve cross platform compatibility (the calculation algorithm takes some time even on desktop machine, so it would be possibly too heavy for some Java app or similar). I think I will give it a try because it turned out that I will need this little software myself right now, so do it yourself is the best help yourself. It will be free GPL software.

I hope many people get inspired with the vast possibilities of the great Maemo platform and start making really cool things that utilize the CPU and GPU of Maemo device fully. Anybody can for example write a simple calculator app with some high level language, or maybe like somebody wrote the silly “I am rich -app” for iPhone, even entirely on QML, but when there are dozens of little calculator apps and silly apps which have no usefulness after 1 minutes of trying, it starts to be no point to be yet another on the sea of many. My recommendation: find something that does not already exist, get yourself an inspiration, aim for superhigh quality, and just go for it! Maemo is cool, but it is even cooler with your app, and your audience will love your creation!

Cheap aircraft

I have read this report before, but it still remains quite interesting, it is about the FMX-4 Facetmobile: http://www.wainfan.com/pavreport.pdf

Nokia N900 in Amsterdam

I created another video (I previously announced Maemo summit video). This video is also from the Maemo summit trip, but features more about the Nokia N900 Maemo 5 user interface – if you haven’t tried it yourself, it is something unlike anything you have used before, in a positive way – I liked this chosen Maemo-5 UI concept from the very beginning and I was happy to see it becoming reality. Try N900 in a Nokia flagship store or somewhere else if you are still thinking and not already an owner of the device.

The Bounce Evolution, desktop and browser were all filmed in a hotel room in Amsterdam. Then there are few scenes from the city and new scenes from the Maemo summit – featuring possibly some of those who were missing from the previous Maemo summit video. I intended to use the footage in another video, but I did not finish it. I found the reuse for it on this video. I hope you like it. The UI videos are not cut, just trimmed – meaning that what you see is what you get.

The video can be watched in Youtube in the following URL:

Nokia N900 in Amsterdam

Credits:
Video: Karoliina Salminen
Music: Karoliina Salminen
Music remix: Juan Manuel Avila

Few words about the music remixer artist: Juan is from Fin-music mailing list – it was a virtual gathering place a group of hobbyist musicians (which were specialized to electronic music and who almost all wanted to do some Jean-Michel Jarre) used to have while they were gathering around exceptionally talented artist that called himself Fin (Christian Worton). We were sharing our creations with each other and giving feedback and sharing ideas and tried to sound like Fin (Fin sounded superb by default). Juan was one of the active members on the list and luckily now Facebook has connected this group of fellows again. Juan also composes his own music (I have few of his CDs he have given to me) but he is also excellent in doing remixes. Many thanks for him for making a remix of the Maemo summit opening soundtrack (please see my maemo summit opening video if you want to hear the original to compare, you can find it on youtube, by looking the list of my videos, it should be there one of the first ones on the list as it is a quite recent video of mine).

Maemo Summit 2009 video


I recorded quite a bit video footage at Maemo Summit 2009 which was held in Amsterdam, Netherlands. I did not have presentation there (because my proposal did not get approved (clutter app development)), but I recorded what the others were talking about, the people attending, the happenings around the Maemo summit 2009 and the place, Amsterdam.

I have been editing the footage for a quite some time now and finally decided to release the first my video about Maemo Summit despite I have only clips from perhaps 1/5 of the scenes I was filming at the summit. It is three and half minutes and features 720p HD video and music. No speeches, just audiovisual experience to deliver some feelings from Maemo summit 2009.

Be sure to click the HD and full screen buttons for a better viewing experience.

Maemo Summit 2009 Video

The video was shot with Canon EOS 5D Mark II + 24-105 4L IS USM at 1080p30 and edited afterwards with Final Cut Pro and then downgraded to 720p30 for Youtube. I hope you enjoy the short video. Please give me also feedback. Comments on my blog are enabled for the first two weeks after the release of the blog entry.

SpaceShipTwo unveiled

Here is a great article with pictures and video:
http://news.bbc.co.uk/2/hi/science/nature/8400353.stm

Awesomely pretty machine. I would like to fly that thing (as a pilot rather than passenger).

MIT course materials online

I found this site quite interesting:
http://ocw.mit.edu/OcwWeb/web/courses/courses/index.htm#AeronauticsandAstronautics

MIT course lecture material online for everybody for free.

New ring tone your new Nokia N900: Superlectro

You have got new N900 but having hard time which ring tone to choose for your device and the songs you have are not suitable length and are not looping? Think no more, here is the solution:

I created a new ring tone intended to be used with the Nokia N900. The style is electronic and I clipped it so that it (almost perfectly) loops, so when you set it as ring tone and it continues to play, it continues from beginning (almost) seamlessly. The song sounds surprisingly loud on the device, thus justifying that it can be used as ring tone.

You can download the song from my mikseri.net page:
Direct download link

If you have any difficulties with the above direct link, please try going to this page and then download the song manually by clicking the download link:
Superlectro Ringtone Song page on mikseri.net

Click “Lataa mp3” link to download the file in case the page represents itself in Finnish to you and if you don’t talk Finnish.

I will upload the file later to katix.org server, but it is not there yet. It is likely to appear later to url: http://www.katix.org/karoliina/media -folder.

To install the ring tone to Nokia N900 device, do this (it is very easy, but steps are presented here just in case you are new to the new unconventional UI paradigm of the Maemo5):
1. either download the song with the device browser directly or if you use your computer, first copy the mp3-file to the device.
2. Go to Settings
3. Select Profiles applet
4. You see page with Silent and General -buttons. It is pannable. Scroll (pan) it down. Ring tone button comes visible.
5. Press the Ring tone button to choose the ring tone.
6. Click Add on the right hand bottom side of the screen
7. Go up from Audio clips folder since it is most likely not in the audio clips folder with the button located to the left hand top side of the dialog.
8. Point your ring tone mp3 file (you need to point the file, you can’t choose Artist/Album/whatever)
9. If you did it right, the new ring tone starts to play
10. Move the volume slider of the ring tone to maximum (because this is hifi-recording it is not _that_ loud for the little speakers of the N900, even if it is loud with my terms).
11. Click save and you are done!

Next time somebody calls you, you have personalized a ring tone not everybody else has, unless everybody else downloads my ring tone also of course. I hope you like it and have fun with it. You can use this of course with any device, but I have only tested it on N900 and with the speakers of N900 it sounds quite good to me (irritation level with this tune is low + volume level is good (=loud enough to be heard from pocket in a somewhat noisy environment) when it is set to max).

New theme in the works, for your review

This song is not finished and it is pretty much the beat, bass and few other things:

superlectro preview

I would like to get your feedback, to which direction I should develop it. I was doing it in attempt of
being able to perhaps use it in Maemo Summit 2009 music video I am doing at the moment.

IFR flying in Finland

Here is a new video about N756DS:

IFR Flying in Finland with N756DS – several approaches to EFTP in IMC

PRELIMINARY AERODYNAMIC DESIGN CONSIDERATIONS FOR ADVANCED LAMINAR FLOW AIRCRAFT CONFIGURATIONS

NASA TP PRELIMINARY AERODYNAMIC DESIGN CONSIDERATIONS FOR ADVANCED LAMINAR FLOW AIRCRAFT CONFIGURATIONS can be found from the following link. I found it quite interesting.

http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19880014362_1988014362.pdf

IFR training flight with N756DS -video from Palo Alto, California

You can watch it here:

http://www.youtube.com/watch?v=kWWoFbb9LgA

Landing to Oshkosh

Video about landing to Oshkosh 2009 with N756DS is here:

http://www.youtube.com/watch?v=zEvV4KAtrzE

Flap mechanisms for RC aircraft

http://www.nextcraft.com/highlift_rc_setups.html

KS118

You was able to see the polar of KS118 on the previous blog post. Here is the airfoil in question, it is very similar but slightly different from KS125.

KS118.DAT

Here is a wing simulation with this airfoil:

Comparison between NACA and KS118, 2D-simulation

KS118 Cl-alpha polar, including stall region at 1M, comparison with NACA23012 and 23015 included:

New airfoil KS125


KS125

Dat file in QFLR5 format:
KS125.DAT

Here are the polars:

Airfoil investigation database

Pretty neat airfoil database with search and quick illustration capabilities.

http://www.worldofkrauss.com/

How to simulate a wing with QFLR5 -tutorial

1. Batch simulate airfoil for different Reynolds numbers so that the whole range of the wing is covered (speed you want to simulate + chord length on the root and tip). Fast way to calculate Reynolds numbers and mach numbers for your simulation case is to use this web page:
http://aero.stanford.edu/StdAtm.html
Use the metric values.

2. When you know your Mach number and Reynolds number range (ranging from tip to root), simulate the airfoil of your choice on QFLR5 on that range. Using batch analysis feature.

Please note that it can take significant amount of time to batch analysis all the airfoils you want to simulate (e.g. if your wing is going to use more than one airfoil for example, and if you want to compare it to other wings which have different airfoils).

3. Go to Wing and Plane Design. Select from Unit preferences. Replace millimeter units with meter, so you want m/s, m^2, m for length etc.

4. Select Define wing from the menu. A window with a spreadsheet appears.

5. Define the wing by entering the y positions (you can define as many as you like). For simple taper it is enough to enter root to y position 0 and then tip to the position where the wing ends. For 12 meters long wing this position is 6 meters (as the plane is quite often symmetric). Select chord length for the root and tip. Select dihedral and twist for the root and tip. Select foil for the root and tip. Select the number of panels you want for the simulation. The more panels, the more accurate. Please note that the dimensions here affect to the Reynolds number, so if your simulation later says it is out of flight envelope, it means that you have not simulated in the Foil direct analysis section the appropriate Reynolds number range, something is missing. Please go back to the web site stated above and check your Reynolds numbers.

6. When you have a wing with desired shape with desired airfoils, click Save and Close from the bottom.

8. Select from Polars menu Define analysis. Select your simulation speed. Please note that this affects your Reynolds number. You need to know at this point your desired speed you want to fly. Select plane weight and moment location on the wing. You can
then select 3D panels. For example I have 150 kt, 800 kg, 0.40 m, 0.00, 0.00.

9. Analysis settings on the right, uncheck sequence if you are interested in one angle of attack only. This most likely is the case if you want to simulate a constant speed (e.g. the 150 kts described above). Then click Analyze and your wing is analyzed for that angle of attack.

Some examples of analyzed wings:

NACA4415:

KS20 (same wing):

NASA NLF414F (same wing again):

QFLR5 MacOSX unofficial snapshot

Get it from here:
http://www.katix.org/karoliina/packages/QFLR5.app.tar.gz

Soundtrack for Maemo Summit 2009 Opening Video

Here is a recording of Maemo Summit 2009 Opening sequence which features my music.
http://www.youtube.com/watch?v=dqsMAkKrXJ8

Maemo Summit 2009 Opening Video on Youtube

Maemo Summit 2009 Opening video on Youtube

My computer just finished uploading the opening of 2009 Maemo Summit to Youtube. It features the N900 video and Peter Schneider’s welcome. If you see embedded version of this video, please make sure you click the Youtube logo to see it in HD (after clicking HD, you can click full screen to get the most benefit out of it).

The video Peter Schneider plays features my music. The video content is from two Nokia N900 videos that I remixed together. I edited the soundtrack of this video so that the music part mixes sound from the event and the original soundtrack so that the music has higher fidelity than what you could record on the N900 hall on Maemo Summit at Westgasfabrik.

Unfortunately I was kind of busy with releasing this (since people seem to be eager to see the videos now rather than later), so editing and filtering is not best possible and there is for example some visible noise on it. The film was filmed with Canon EOS 5D mark II with ISO setting 25600 (the very high ISO explains why there is some noise in the video – in same conditions my old video camera would have turned almost black and white and greenish and would have produced quite low resolution video).

Anyway, have fun with the video: http://www.youtube.com/watch?v=dqsMAkKrXJ8.

KSNLF51 airfoil – high L/D, high lift, low to medium Re

I created this airfoil one day. I was looking for getting high L/D at low Re. This is pretty nice. I tried simulations as low as Re 100000-300000 (not included in here, you can try by yourself with QFLR5).

Airfoil KSNLF51:

KSNLF51 L/D graph:

Data file: http://www.katix.org/karoliina/airfoils/KSNLF51.DAT

Polars:
Re 1 million, Mach 0.3
http://www.katix.org/karoliina/airfoils/KSNLF51_T1_Re1.00_M0.30_N9.0.txt

Re 3 millions, Mach 0.3
http://www.katix.org/karoliina/airfoils/KSNLF51_T1_Re3.00_M0.30_N9.0.txt

Re 5 millions, Mach 0.3
http://www.katix.org/karoliina/airfoils/KSNLF51_T1_Re5.00_M0.30_N9.0.txt

License: Creative Commons Share-a-like

Comparison between some airfoils:

Open source tools for CFD

http://www.geuz.org/gmsh/
http://www.opencfd.co.uk/openfoam/

Karoliina’s pineapple smoothie (recipe)

You need the followings:
– 1 liter: Tropicana Pineapple juice.
– 1 package of coconut milk
– 3 bananas

Mix together until the mix is smooth (with power mixer).

Aerodynamic efficiency index, AEI

I have been trying to come up with my own formula (that differs from the various CAFE formulas to have a weighting that suits me better). I found another interesting comparative formula, the AEI.

AEI = (W0*U0)/hp

where W0 is the gross weight in lbs
where U0 is the free stream velocity in ft/s
where the hp is the horse power required

In other words for Diamond DA40 this is:

W0=1200 kg = 2640 lbs
U0= 214 ft/s (127 kts cruise at 10000 ft)
hp_cruise=90

=>

AEI(Diamond DA40) = (2640*214)/90
AEI(Diamond DA40) = 6277

Unlike the CAFE formula this has no weighting for these parameters.
If I would like to make my formula based on this, I might want to weight the hp a bit more.
That is because the lower the hp figure gets, the better is the fuel economy if everything else remains constant.

Why this index is good? Because it isolates aerodynamics from structural engineering and does not care how much useful load the craft has. It only considers the aerodynamically important point, how much power is required to move the mass forwards and at the same time keep it on air.

Minimizing fuselage drag (external link)

Bruce Carmichael: Minimizing fuselage drag. http://www.aerorag.com/resource/aircraft/aerodynamics/carmichael/min_fus_drag_carmichael.pdf

AOPA article about Klaus Savier’s 100 mpg Vari-Ez

Here is a link to the article by AOPA about Klaus Savier’s Vari-Ez.

“For all these guys that think magnetos are so great, I only have one question: Why don’t you put magnetos in your cars?” Read more by clicking the link below:

http://www.aopa.org/aircraft/articles/2008/081230100mpg.html?WT.mc_id=090102epilot&WT.mc_sect=gan

Jet glider conceptual study (link)

http://www.google.fi/url?sa=t&source=web&ct=res&cd=6&url=http%3A%2F%2Fsalamanca.khbo.be%3A8080%2Fdoks%2Fdo%2Ffiles%2FFiSe8a81998218eeb4e50118ef3ae0650156%2Feindwerk.pdf%3Bjsessionid%3D5E70EC2B35D00A97C21355C91E39AFE5%3FrecordId%3DSKHB8a81998218eeb4e50118ef3ae0630155&ei=0tKfSpiOCoaQsAbvkPkc&usg=AFQjCNE_pm74spwMHweSYoUJ4k-GTc4ocw&sig2=hhrDwapR25sdgbscQ8vHPA

Hands on with the new amazing Nokia N900

There has bee a lots of interest around this new device and the Maemo 5 operating system. Lots of positive comments and then I have read some comments where people doubt that the transitions would be just some flash animations and not a real thing (which of course is not true). Well, this is a OpenGL hardware accelerated Maemo device, and all you see is real. Quim Gil just posted on Twitter a link to a new video showing how the Maemo UI works, if you had doubts, you can put the doubt aside and see by yourself. The user experience is slick and beautiful.

You can find the video from here:
http://www.youtube.com/watch?v=ZrYqemylpIo

In my opinion, the UI experience on the Maemo 5 has improved greatly over what it used to be and also over the competition. It is really pleasant to use and there are not so many things that would be annoying. There certainly is lots of wow, and this kind of shows the innovation these days is occuring in the mobile space rather than on desktop, desktop environments are already lagging behind and the transitions on these UIs are not so practical they are in Maemo where they are all well thought and well implemented and not just random eye candy and special FX without purpose. Maemo 5 really rocks on this segment.

There is also an article about hands on experience on N900. Slashgear is reporting from Nokia World conference. There is both video and lots of good pictures included. This shows how the device looks like rather than the UI. The video I mentioned above is better showing how the UI functions.

http://www.slashgear.com/nokia-n900-hands-on-0254743/

And here is yet another hands on video. This is also very good:
http://www.youtube.com/watch?v=Zr-BF0Gs0_E

And here is the replacement for a gaming console.

http://twitpic.com/g6smv

The Nokia N900 can be used as accelerometer equipped controller and connected to a TV. Hint for game developers: Here is the great platform to start developing games. The platform supports full OpenGL ES 2.0 and a OpenGL-ES game does not even need to care that much what Maemo version it will run on, Maemo 5, Maemo 6, and the GL is standard. It is not a bad long term investment to invest on Maemo. The N900 has a capable graphics accelerator (for this small mobile device) as can be seen from the Bounce game and from also the UI which heavily relies on the accelerated 3D graphics. The capacity of the device is great – it has plenty of RAM and there is plenty of flash too on the user’s home directory. And if the RAM would not be enough, there is also virtual memory like on any modern operating system nowadays. The games don’t need to be that simple and amateurish anymore “mobile games”, I am quite confident that anything that has been done for Wii could be done for this device, in other words, this could be used as a serious gaming device despite that is not what it was primarily targeted for (as it is Internet device really). But like computers, there are many uses for the single device. Also, the device can be always connected, so massive multiplayer games would be superb on this. Looking forward to try some serious 3rd party games in the future! Hey Austin, if you read this, please port the X-plane, I want it.

TMS turbo installation on Rotax 914

Here is an article about turbo system of the highly modified Rotax:

http://www.designnews.com/article/13660-Turbo_power_reaches_new_heights.php

Nokia announced Maemo 5 based N900

Our secret N900 “The Device” is no longer so secret as it just got announced. I can’t though show yet my own videos about it (I will post them some time later, so stay tuned), but there is already plenty of announced material that might interest you. Others have already announced links to them I am sure. I really love our device and I am sure you want it too!

New site, lots of cool pictures and information:
http://maemo.nokia.com

There is a video in Youtube (not my video, but cool nonetheless):
N900 interaction documentary

I recommend watching the above video if you are eager to see (I am sure you are) how our completely renewed fancy UI works. It is very cool and it works!

Tractor vs. pusher

There is lots of strong feelings about tractor vs. pusher propeller configuration but no exact generic answer. Here is one article about the topic. Does not make definitive answer, but gives some background for the topic:

http://www.flyingmag.com/technicalities/1582/pusher-pusher.html

Here is another article:

http://dic.academic.ru/dic.nsf/enwiki/514042

Forum discussion

Another forum discussion

http://www.aiaa.org/content.cfm?pageid=406&gTable=mtgpaper&gID=50663

Tractor (prop forward of laminar flow wing):

http://www.aiaa.org/content.cfm?pageid=406&gTable=Paper&gID=1248

Hypotenuse and catheti and how blending makes wetted area not larger but actually smaller!

Most aircraft have larger than necessary wetted area and not so optimal body shape. One could think without thinking in more detail that wetted area is saved by lofting the plane so that the engine cowling is part of the main fairing and then there is a minimum canopy added on top of that.

However, a little thinking further: which one is the shortest route always, hypotenuse or catheti? Unlike the first thing which comes to mind when looking at planes and saving wetted area, instead of having this complicated shape, actually having more volume and fairing everything in the single form actually produces not only easiest path to the airflow, but also it produces lowest possible wetted area. So making the fuselage larger by removing canopy and putting the cockpit inside the main shape decreases wetted area and drag instead of increasing it. The shallower angle for windows does not decrease the visibility – the visibility can remain still the same. The only problem comes from the optical quality of the windows – as you are looking them from angled direction, you are looking through more plexiglass than you otherwise would and it can degrade the visibility. However – the visibility directly forwards is usually not so good in single engine aircraft which have engine in the front and it is neither better on planes without engine on front since somehow designers seem to not think that people would like to see straight forward very well too. Some twin engine planes have very high panels and poor visibility forwards despite of the fact not having the engine in front would make it possible to make the forward visibility a lot better than that.

So the design on CAD system becomes easy when the shape is not complicated but super simple. And in turn the super simple shape (convex to all directions though, in that sense not so simple, but I mean it is a single loft) has the best drag coefficient and the best wetted area too. At times it feels unbelievable that the solution can be so simple (and I have difficulty to believe it myself when looking e.g. our shared ownership Diamond DA40, it has many shapes, parts and forms), but who says that it has to have so many shapes. Nobody. So it will not have so many different shapes and forms if one shape can do it all. And who says the instrument panel needs to be panel and everything laid out to the panel? Nobody again. A bit more creativity and a lot better forward visibility is achieved despite of not having a bubble canopy and despite of having a pressurized fuselage.

Blending the fuselage to the wings increases frontal area. But who cares about the frontal area. It has very little effect to the drag in airplanes. It is all about wetted area and saving in the wetted area (in addition to maximizing the laminar flow). So blending the wing decreases wetted area – hypotenuse again, it is not a good idea to follow catheti. And the air likes that too – in fuselage wing joint the airflow can not sustain laminar flow. But what if you eliminate the joint and at the same time save in the wetted area. Great stuff.

One could say that it is hard to make a door to a such fuselage. Yes it is hard to make a door. But the solution for the door is to eliminate the door. A hatch that has no hinges and that is larger than the hole is the most light weight door one can imagine. It does not require complicated mechanism to hold it on place and it does not require lots of latches. It holds on place by itself because of the air pressure differential. It can be locked with a lot lesser heavy duty mechanics from inside to the fuselage. And how to ensure the hatch does not ever get out of the hole? That is super easy too: the hole and hatch can be circular and there is no way to put a larger circle out of a smaller circular hole. Not even magicians can do that!

Now then the window problem:
– to glue windows on pressurized fuselage, how to make sure the windows don’t rip themselves out – how to glue them on place. Keep it simple and stupid solution: glue them to the inside so that they are larger than the hole in the fuselage. Now what, we have a problem that there is a dent outside of the fuselage on the window area which is really bad for the airflow. No problem again, there can be a simple non-pressurized window that is glued to the outside and faired level with the fuselage around it. It is also a fail-safe: if the windows that are exposed to outside get scratches, no problem, it does not affect the pressurized fuselage – these windows can be replaced fairly easily. And guess what, no bolts are needed, no rivets are needed, very simple.

Then how to get the blended fuselage to work with pressurization. Again super simple: the blend can be fairing on the outside and the pressure vessel can be tubular with completely circular cross section inside.

First atlantic crossing completed

We completed the first atlantic crossing in the N756DS (Diamond DA40) on Wednesday and arrived to Helsinki-Malmi. There will be a presentation about the trip in SIL-luokka Helsinki-Malmi later. I will let you know more about it when I know more details and have prepared the presentation. If you are a reporter in a newspaper or magazine and want to write a story about our not so ordinary adventure, feel free to contact me karoliina dot t dot salminen at gmail dot com.

We received the ferry flight training from Edward Carlson.

We want to do the trip again also, if you are looking for inexpensive ferrying from USA to Finlandm or to any other European country via Denmark/Opmas, I am glad to inform that the Danish VAT will work still to next summer as followings: if you buy aircraft this year before the end of the year and complete all the agreements, according to Opmas, the plane can still benefit from the Danish VAT if it is ferried on the first half of 2010. We would be glad to help for free (no ferry flight fee) at the price of the expenses (gasoline, hotel (we choose cheapest options always), maintenance needed for the plane, airport fees). If you are interested in inexpensive ferry (or should I say delivery) flight, please contact me to the abovementioned address. You can not fly the North Atlantic for first time by yourself, but you need someone that has flown it before to get insurance (which is mandatory for the flight). We have now flown it once and are willing to help people who haven’t flown it yet and/or who do not want to fly it by themselves. The summer time is the best time for ferrying an aircraft because of weather. We will spend our summer vacation for flying your plane for free, you can not get better deal from anybody. We agree to fly the following aircraft make and models: Diamond DA40-180/G1000, Diamond DA40XL/G1000, Diamond DA40-CS/G1000, Diamond DA40-180/Avidyne, Cirrus SR20/Avidyne, Cirrus SR22/Avidyne, Cirrus SR22/Garmin Perspective or Diamond or Cirrus with any other comparable glass cockpit avionics – this list is based on our prior flying experience – we have flown Diamonds and Cirruses before. We can consider also other aircraft, but that will rise the expenses a bit since we need to get checked out to these prior flying the trip. I could estimate that most familiar of those would be Columbia 350, Columbia 400, Cessna 350 Corvalis, Cessna 400 Corvalis and these we would be glad to fly providing that we would get proper check-out before starting the trip to feel comfortable enough flying the plane in not so ideal conditions. We may not agree to fly steam-gauge IFR planes and surely will not agree to fly VFR-only equipped planes. Also we will not fly C172, because that is not suitable for the trip. We are not interested in taking unnecessary risks, we want to deliver.

We arrived safely to home Wednesday 19.7.2009 evening. The trip was finally over and i felt so good to be at home with my cats. There is lot of stories to tell, many blog articles are waiting to be published. i just need to finish them and chose pictures attached. We got around 200Gigabytes of picture and video material with our EOS 5D mk II .

Our route was following N756DS route in Great Circle mapper

That makes about 9000 Nautical miles and that is not counting yet my Instrument training in Palo Alto or that many legs were not great circle but airways via fixes. You can find more precise tracks and IFR plans from Flightaware N756DS

N756DS video

I quickly collected some video clips from our collection. I created this first because I really loved the
scenery in the Kulusuk, really beautiful mountains:

http://www.youtube.com/watch?v=j6aLdd7ZYmU

First Northern Atlantic Crossing

I have been recently a bit silent on this blog. The reason have been that I have been too busy and out of Internet most of the time. In other words, I have been flying.

I am typing this from Iceland. Our trip has been so far quite incredible:
1. from Helsinki to Miami with airliner
2. from Miami to Jacksonville with car
3. from Jacksonville to St. Louis with plane, N756DS
4. from St. Louis to Pueblo with N756DS
5. from Pueblo to Palo Alto with N756DS
6. IFR training in San Francisco Bay Area with N756DS
7. from Palo Alto to Sioux Falls with N756DS
8. from Sioux Falls to Oshkosh with N756DS
9. spent couple of days in Oskosh/Airventure 2009. Camp with Cozygirrrls.
10. from Oshkosh to Rhode Island with N756DS
11. from Rhode Island to Wabush (Canada) with N756DS. First Northern Atlantic Crossing in a small airplane was started for us. We are flying with Ed Carlson (he is a ferry flight instructor specialized in Northern Atlantic crossing).
12. from Wabush to Kuujjaq (Canada) with N756DS
13. from Kuujjaq (Canada) to Iqaluit (Canada) with N756DS
14. from Iqaluit (Canada) to Kangerlussuaq (Greenland) with N756DS
15. from Kangerlussuaq (Greenland) to Kulusuk (Greenland) with N756DS
16. from Kulusuk (Greenland) to Reykjavik (Iceland) with N756DS
17. from Reykjavik (Iceland) to EGILSSTADIR with N756DS

We will continue to Faroe Island / Vagar next. After that is either Bergen or Stavanger in Norway.

Kate has been keeping a blog about the adventure here:
http://n756ds.blogspot.com

Palo Alto, completing the IR training

I started my IR training in West Valley Flying Club ( http://www.wvfc.org ) in San Francisco area . The plan was to get fast and cheap instrument rating. Soon I noticed that if you really like to get easy IR as as quickly and fast, the San Francisco bay area is worst possible choice. If you like to get good IR with it you can fly about any busy airspace, it is excellent choice.

First surprises were that American airspace system and regulations differ a lot from European ones and San Francisco bay area airspace structure is really complicated and busy. Helsinki area is about small village compared to SF-bay area. There, Palo Alto, just one of dozens local general aviation airports has as much GA-airplanes that exists in all Finland. It was also surprise that radio fraseology differs a lot from European one and if you are non native English speaker, busy fast IFR radio communications needs some time to adapt.

It is also not the fastest and cheapest to start IR training with Cirrus SR20 with Avidyne glass cockpit. When I started the training, Cirrus was our number one alternative and WVFC did not had Diamond in this time. They charge $199 or $214 for SR20, $164 for C172/G1000 but Steam Gauge Cessna or Piper you may get around $100 . Cirrus is also not considered as ordinary airplane for WVFC, it needs minimum 11 hours type training and special check ride called phase check.

Flying club as like WVFC was not a fastest way to get training, there is also other members booking planes and flight instructors and therefore you can’t fly when you want to do so. Some flight schools may designate plane and instructor for you all of the course. This Flying club system is just not most cost efficient if you are not local but coming from distant country and need to pay hotel and car rental for every day you are flying or not. Also Silicon valley is not the cheapest place to stay.

When i started my flight training 2008 I Strongly underestimated my schedule, I scheduled one month period for flight training. It was strongly underestimated, i just could not got booked enough plane and instructor to get training completed. I spent many days just for keeping vacation, that was not bad idea at all in SF bay area. IR Training is also and work, so it is not bad idea to have some free time between sessions. I had plan to return autumn to complete training but this did not happen. In 2008 trip I also learned that many things can go wrong in paperwork. I had plan to get FAA Medical and FAA PPL . When i was already in Palo Alto, FAA told to me that they did’t approve my translated medical records because they are not translated by FAA approved translator. Even today, i don’t know what is and where to find FAA approved Finnish to English translator. For next trip, I asked doctors to write their statements in English and sign them as originals to avoid this translation problem.

I returned spring 2009 continuing my instrument training, I chose cheaper C172 G1000 plane that the club had more of them than Cirrus SR20’s and i got in practice designated flight instructor. I think that also economical depression affected so that instructors and planes were no longer so booked than spring 2008 . Now I also has basically all paperwork done. I had European JAA and FAA medical and i had file application for FAA Restricted PPL .

When I returned after one year since i had my previous instrument training, it needed several hours training just to get level where I was year ago when i left. In Spring 2009 i did written test and got basically training program done but once again bad luck with paper work. I got my FAA Restricted PPL based on European pilot’s license but i was unable to get appointment booked to San Jose FSDO and therefore I was unable to have Check ride.

Now in this trip, i finally had everything done. I had training done, I had all medicals in my hand, i had appointment booked to San Jose FSDO and I had check ride booked. The trip from Florida to Palo alto took couple of days longer than estimated and we needed to re-schedule my check ride to Monday 27 July. Now i had couple of days time to refresh my IR skills before check ride. Then Monday i was thinking that everything is ready and we started ground part of checkride but it was interrupted n beginning because there was couple on flight instructor signatures missing from my logbook. The Check ride was then re-scheduled Wednesday 29.

In Wednesday, we finally were able to begin my checkride. I had Tom Hornak as my check ride pilot. At first he went thru my application and logbook, then checked airplane documents, maintenance records etc. Then he did tho oral part, series of good questions like what i would do in complete radio failure situation, some details from approach plates, how to get weather briefing etc. Then started actual check ride, I filed flight plan to Stockton ( KSCK, route SJC V334 SUNOL V195 ECA ). In Stockton we did VOR rwy 21, touch an go, then continued GPA A to Tracy ( KTCY ) and that approach we did as partial panel. From tracy missed approach we did couple of holds and then ILS rwy 25R to Livermore. That was the check ride and I was really happy and relieved when Tom said that I passed. Finally long lasting dream and couple of years long project was completed.

About actual training, my instructors in West Valley, Scott Stauter and Brian Elliot give excellent instruction. Wvfc had excellent facilities, wide variety of planes to chose, starting from old steam gauge Cessnas to modern glass cockpit Diamond Star DA40, TwinStar DA42 Cirrus SR20 and SR22 and several G1000 Cessna 172 . They also have Frasca G1000 simulator that we used as mush as we could for my training. There is several good reasons to use simulator. With simulator you can practice mush more approaches in same time, you can practice more fault conditions than in real plane and it costs 100 dollars less for hour than aircraft.

Then there is question, should you get your instrument training with glass or with steam gauges. As my personal opinion, if you plan to fly modern glass cockpit planes, you should get your training with glass. Flying glass needs so much different skills. Reading the attitude indicator , altitude and airspeed is the easy thing. Much more skills is needed to program flight plan, selecting approaches etc. Your most busy times comes when you approach your target airport, get weather and you are cleared to approach. In this situation you need to program right approach into system, brief it to yourself and be all of the time up to date with radio traffic and on course fly the plane. You can practice most of the things in ground but then real thing is to do it in busy conditions in flying airplane. Partial panel is also completely different with glass and steam. In practice difference between Cirrus with Avidyne/GNS430 or Diamond with G1000 is not as big at all. Garmin logic to program flight plans and approaches is very similar in both of these.

Other question is that should you get your IFR training done in some peaceful little city or in busy San Francisco bay airspace.If you like to get it done cheaply and fast, small city flight school may be good choice. If you like to get your skills to level where about no airspace is too busy to you take SF-Bay but remember
that you may not got it done with minimum hours.

Now, i have crossed north American continent twice and passed many big cities Class-B air spaces but i have not yet found as busy as SF-bay area . Some rumors tell that Los Angeles area is even worse but i have not yet had change to try.

Lessons learned. Best is not cheapest and fastest. If you fly glass, take your IR with glass even it costs more. If you plan to fly in busy airspaces get your IR there but you need more hours. If you need split your training to multiple chunks, it causes some penalty, may be 10 hours to get level you where uou were when you left. If you are flying IR in flying club, verify that you have plane and instructor available or you can’t keep your schedule. Be prepared that what ever you try, some factors may ruin your schedule. Prepare your paperwork lot of advance, book appointments to FSDO etc lot of advance. Remember, that if there is something wrong in papers, it may took two months round trip to fix it.

And at last but not least, IFR if fun, i don’t regret that i started . I think that getting training in SF-bay and with glass was right choice but it definately was not fastest or cheapest one.

Pueblo to Palo Alto , Over the rockies and thru the burning hell

We started Tuesday 21st waking up early morning and got ourself to airport around 8am morning.It is best time to cross mountains in morning when air is not yet hot and most of cumulonimbuses appear in afternoon. It was once again Karoliina’s turn to fly, we decided to go as VFR via pass thru mountains. In IFR minimum enroute altitude
should be highest point enroute rounded upper thousand feet plus 2000 feet. In VFR is enough not touching terrain. We were uncertain how well Diamond would climb in worm air with three full size adults inside and we decided not to take any rists. We still needed to climb to 12500 ft but Diamond did it without any problems.

First leg and mountain crossing went without any problems in excellent weather. Our first stop was in Farmington, New Mexico (KFMN), elevation 5500ft. This airport had nice FBO with air-conditioned restrooms facilities for flight planning we took tanks full of fuel and planned to go Grand Canyon, KGCN .


The route to Gran canyon was really great scenic route, sceneries familiar to most of us from western movies . First we flew over monument Valley and then over grand canyon. When we arrived Gran Canyon, there was thunderstorm just over airport and we decided to go on.

We landed Kingman, KIGM, elevation 3360ft . That place was like burning hell, temperature around 40 degrees of celsius. We got there in place where was no cover from sun, airport staff advised us that restrooms are in passenger terminal and there was no other
way back to apron expect left someone open to gate and we did not find any flight planning facilities. The place was also graveyard of DHL american fleet.

From Kingman we continued to Lancaster, KWJF, hot but not so hot than Kingman and there was even some wind to make it to feel more comfortable. There was also good facilities air conditioned building to do flight planning. We decided to file IFR plan to Palo Alto via route PMD V197 EHF AVE V137 ROM V485 LICKE and it was Kate’s turn to fly IFR . When we took off, it was evening twilight and soon it was completely dark night but weather was good. I must say that I don’t feel comfortable to fly in night in mountaineus terrain. If engine quits, there is no way to chose good
place for forced landing. In plains, there is good possibility that terrain under is not so bad.

We landed Palo alto 22.56, we had some probems to get taxi and finally got to our motel Standford Motor inn around 1am.I must say that i felt really exhausted, long and hot flight day.

If ypu would like see more pictures, please look our N756DS Picasa callery

St Louis to Pueblo, CO , Beauty and Beast

We kept Sunday just for resting with our friends, in Chrissi’s and Randi’s place. On Monday morning we checked weather and noticed that there is front with thunder storms moving across our route. We filed IFR plan to Salina (KSLN) via route 1H0 SNYDR V12 OJC V508 TOP V4 ZITIK KSLN but then we saw thunderstorms front of us and decided to land in Topeka (KTOP) to wait front pas us. We waited couple of hours in Topeka FBO weather briefing room and followed from Nexrad thunderstorms moving south east. After thunderstorms passed, we filed IFR plan to Hays (KHYS) via route
V4 SLN V508 KHYS. At beginning of route we needed to fly in rain but still in VMC.

We landed to Hays in perfect VMC conditions and sunny weather but there was big cumulonimbus growing nearby and it looked threatening. We decided togo on as
quickly as possible and now it was Karoliina’s turn to fly. We filed route to Pueblo via V244 but
soon we needed to ask defer from our course because there was really beauty monster, huge thundercloud from our right side. I have never seen same time s beauty but also so threatening thundercloud before. It did not cause a actual danger to us because is was easy to see and avoid. I just looked lightnings sriking from cloud to ground. There was other thunderstorm to go around that just passed Pueblo. We were able to land Pueblo without any problems.


In Pueblo, there was local FBO, Flower Aviation, they booked Hotel to us and arranged transport. We spend night in La Quinta inn after long and challenging flight day.

Second Day From Florida to St Louis

We had plan to leave Florida as early as possible to avoid bad weather but we were so tired because we did had so much lack of sleep during last few days.
We woke up in Jacksonville Ramada Inn 9 am and arrived with car to Sterling Flight in Craig Municipal airport ( KCRG ) 11 am. There was front of
bad weather arriving from north west. Kate needed to return our rental car to Jacksonville International Airport ( KJAX ) and Karoliina flew N756DS
there. Cloud ceiling was already low and there was moderate precipitation. Kate got rental car return point but there person in Rental car return did not know
how to get General Aviation terminal ( FBO ), she was completely unaware that such thing as general aviation even exists and could only say
that you need to go airliner terminal. Kate finally found FBO by walking and sweating half an hour in the hot Florida weather.

Karoliina arrived the same time
Sheltair FBO. We checked weather and noticed that we need to leave quickly to avoid getting worse weather. After take off from KJAX we were able to climb
to 2000ft . Soo Ceiling started to go lower and we ended to fly below clouds under 1000ft in uncontrolled Airspace over Florida swamps but still
safely within VFR minimums. After half of hour ceiling started to raise and we were in perfect weather for rest of this leg. We arrived safely to our
refueling stop Russel Rome airport ( KRMG ) near by Atlanta.

From KRMG our next leg was to St Louis, Missouri. Ceiling was high and we were able to cruise 4000ft . We used VFR Flight following for both legs
to get warnings about possible severe weather or traffic. That was a easy leg, just put flight plan to G1000 and autopilot on. Our target for
this leg was Creve Couer airport ( 1H0 ) . We arrived there about 9pm just around sunset. The airport is under complex St Louis Class B airspace.
The G1000 was very useful showing all airspace borders and altitude limits. VFR Flight following was also useful when arriving to unfamiliar
complex airspace.


Weather front is just arriving to St Louis

When we landed, Karoliina called our friends Chrissi and Randi, the Cozy Girrrls. They arrived soon with their minivan that had already back seat removed
for carrying things to Oshkosh. We get in to their van and let our Bird to rest for night. Chrissi and Randi are experimental aircraft builders and they
run their own small experimental aircraft parts business CG Products. They do really great work and perfect professional quality parts in
their workshop.

Good night to N756DS for good flight

The Pretty bird got a new home – day 1

Our first day, we drove from Miami to Jacksonville, 6 hours via Inter State 95.
Karoliina was using N97 to write mails to our insurance broker. We got all needed work for insurance done just 15 minutes before we arrived to pick up plane from Sterling Flight training.

There the our new Pretty Bird was waiting for us. Just fresh annual done and no
extra repairs needed. We decided to go for test flight with Sterling flight instructor and at the same time get checked out to the plane. First Touch and Go’s in At Augustine ( KSGX ) and then scenery route to Space Coast Regional Airport ( KTIX ).

It would be big sin to go so near of Nasa Cape Caneveral launch site and not even seeing it. Sad that so distant but we have wery tight schedule. Next morning we needed
to fly the plane to St Louis.

In KTIX we switched pilots and it was Karoliina’s turn to fly. She went to St Augustine to do touch and go’s as night flight. We happily landed back to KCRG 10.00 pm. Then it was time to get some sleep in hotel, happy but really very tired.

Karoliina and Kate are in Dysseldorf waiting for connection flight. Very tired. fb

T-0. We are leaving home now and heading to airport. fb

Packing for the USA trip is almost finished. Last bits of housecleaning tasks to be done before leaving to EFHK airport. fb

HECS part II

Aerodynamic Comparison of Hyper-Elliptic Cambered Span (HECS) Wings with Conventional Configurations

LINK: How to design blended wing body RC airplane

http://rcairplanedesign.googlepages.com/Design-BWB-Blended-Wing-Body-RCplane.htm

The mentioned AVL can be found from the following address:
http://web.mit.edu/drela/Public/web/avl/

Ducted fans

Inlet Channel for a Ducted Fan Propulsion System of a Light Aircraft – a 300 km/h ultralight aircraft with ducted fan propulsion is discussed

Common errors in ducted fan design
Performance Study of a Ducted Fan System

DFDC

Crescent-shaped wing

http://morphing.mae.cornell.edu/Papers/%5BManzo%5D%20HECS%20MS%20Thesis%20Master.pdf

http://www.aiaa.org/content.cfm?pageid=406&gTable=mtgpaper&gID=65912

>Misc tech paper etc. link collection

>I created a wiki page to katix gforge for link collection.

I hope you like it. It is not sorted in any sense, but it contains lots of interesting links. A friend of mine has been sending these to me a quite long time and I thought that I could share the collection with you.

http://gforge.katix.org/gf/project/twinzygger/wiki/?pagename=MiscTechPapers

Misc tech paper etc. link collection

I created a wiki page to katix gforge for link collection.

I hope you like it. It is not sorted in any sense, but it contains lots of interesting links. A friend of mine has been sending these to me a quite long time and I thought that I could share the collection with you.

http://gforge.katix.org/gf/project/twinzygger/wiki/?pagename=MiscTechPapers

>Tailed blended wing body with laminar flow body and Goldschmied suction and pressure thrust

>New idea:
– A body that comprises of a laminar body and wing blended together
– There is a V-tail in a blended boom
– Rear of the center section has suction slot on top side
– The boom contains a electric fan that is used for suction and additional thrust
– There are two turbocharged Rotax 912UL engines in the wings which are hidden in blended pods that continue the airfoil shape of the wing without interruption
– Both engines turn additional turbochargers which drive generators which generate electricity for the rear fan of the aircraft

Items that need to be studied:
– does pressure thrust work with this kind of shape, or does it require axisymmetric body?
– compare the drag of minimum axisymmetric body with non-blended wings to a blended wing body which has larger cross sectional area, but potentially lower wetted area.
– wing incidence relative to the center section – center section has a lower aspect ratio than the wings and what it requires to achieve optimal lift distribution in this combined case
– the achievable gain from the lack of interference drag or very small interference drag
– optimal wing loading for a combined blended wing body compared to a pod+boom+wings solution
– shark fin shape on the outer wing sections, the gain and the issues

Tailed blended wing body with laminar flow body and Goldschmied suction and pressure thrust

New idea:
– A body that comprises of a laminar body and wing blended together
– There is a V-tail in a blended boom
– Rear of the center section has suction slot on top side
– The boom contains a electric fan that is used for suction and additional thrust
– There are two turbocharged Rotax 912UL engines in the wings which are hidden in blended pods that continue the airfoil shape of the wing without interruption
– Both engines turn additional turbochargers which drive generators which generate electricity for the rear fan of the aircraft

Items that need to be studied:
– does pressure thrust work with this kind of shape, or does it require axisymmetric body?
– compare the drag of minimum axisymmetric body with non-blended wings to a blended wing body which has larger cross sectional area, but potentially lower wetted area.
– wing incidence relative to the center section – center section has a lower aspect ratio than the wings and what it requires to achieve optimal lift distribution in this combined case
– the achievable gain from the lack of interference drag or very small interference drag
– optimal wing loading for a combined blended wing body compared to a pod+boom+wings solution
– shark fin shape on the outer wing sections, the gain and the issues

>Rutan Ares

>Youtube video about Burt Rutan Ares

Rutan Ares

Youtube video about Burt Rutan Ares

High transition length NLF body

I was looking Parson’s high transition length body in a book and thought that maybe if I modify my body shape also so that the nose becomes sharper. By sacrificing some interior space, the flow acceleration can be kept for high transition length according the book I was reading this. My modified body looks like this.

Despite the QFLR5 algorithm is not maybe designed for simulating NLF bodies (it is designed for simulating wings), the pressure distribution looks like the same as the wind tunnel data for the Parson’s body which makes me think that it might not be that much wrong.

High transition length NLF body

I was looking Parson’s high transition length body in a book and thought that maybe if I modify my body shape also so that the nose becomes sharper. By sacrificing some interior space, the flow acceleration can be kept for high transition length according the book I was reading this. My modified body looks like this.

Despite the QFLR5 algorithm is not maybe designed for simulating NLF bodies (it is designed for simulating wings), the pressure distribution looks like the same as the wind tunnel data for the Parson’s body which makes me think that it might not be that much wrong.

>Wolfram

>Ever wanted a Star Trek’s computer? It is here today:

http://www.wolframalpha.com/

For starters, try out for example: integrate x+y^2
This service is superb.

Wolfram

Ever wanted a Star Trek’s computer? It is here today:

http://www.wolframalpha.com/

For starters, try out for example: integrate x+y^2
This service is superb.

>Random thinking about the feasibility of fabrication of a partial pressure suit

>I have been thinking this topic for quite a long time and my old conclusion was that it is not feasible. However, there is very little information about pressure suits out there, but looking at the very little there is about the old Mercury suits etc., I have got indications that actually fabrication of a partial pressure suit might be feasible. Buying one might not be feasible because of lack of availability and insane pricing.

I would like to learn more about the topic, but in the Internet at least, there is very little or nothing. If someone has some insight, please leave some comments.

Random thinking about the feasibility of fabrication of a partial pressure suit

I have been thinking this topic for quite a long time and my old conclusion was that it is not feasible. However, there is very little information about pressure suits out there, but looking at the very little there is about the old Mercury suits etc., I have got indications that actually fabrication of a partial pressure suit might be feasible. Buying one might not be feasible because of lack of availability and insane pricing.

I would like to learn more about the topic, but in the Internet at least, there is very little or nothing. If someone has some insight, please leave some comments.

Fuselage drag reduction principle

A major portion of aircraft drag (in addition to the wing) is generated by the fuselage. The poor aircraft has to drag the draggy fuselage forwards. It is justified to target for reducing the fuselage drag in addition to the drag of the wings to achieve high L/D ratio and thus high efficiency and exceptional miles per gallon figure.

The idea comprises of the following claims:
– a laminar body with optimal fineness ratio for minimum drag
– a tail boom behind the optimal fineness ratio laminar pod
– electric motor (or couple of electric motors in cascade) turn
one or many ducted fans that are in cascade inside the rear of the fuselage.
The fan(s) take their air intake from the boundary layer of the fuselage.
– the fans are driven with batteries on takeoff.
– the fans are driven in cruise with electricity generated from the exhaust gas of the two gasoline engines which are mounted in wings.
– there is an additional turbine mounted in the exhaust that turns a generator rather than compressing air for the gasoline engine.
– the exhaust for the air is either in the tail boom prior to the tail or after the tail, whichever is found to provide best results.
– the fans provide suction for the fuselage boundary layer and also additional thrust for the aircraft. This configuration however, does not cause additional drag for the aircraft but reduces it.
– additional generators can be mounted to wing tip vortices so that the wing tip vortex turns the turbine blades and thus generates electricity for the fans located in the rear of the fuselage.
– the generators, battery charging and fans are computer controlled.
– the fans utilize all power that can be drawn from the exhaust gas and the wing tip turbines and thus runs at full power available to it continuously. On takeoff batteries are used to ensure high centerline thrust for the hypothetical situation where one of the gasoline engines would fail.

Fuselage drag reduction principle

A major portion of aircraft drag (in addition to the wing) is generated by the fuselage. The poor aircraft has to drag the draggy fuselage forwards. It is justified to target for reducing the fuselage drag in addition to the drag of the wings to achieve high L/D ratio and thus high efficiency and exceptional miles per gallon figure.

The idea comprises of the following claims:
– a laminar body with optimal fineness ratio for minimum drag
– a tail boom behind the optimal fineness ratio laminar pod
– electric motor (or couple of electric motors in cascade) turn
one or many ducted fans that are in cascade inside the rear of the fuselage.
The fan(s) take their air intake from the boundary layer of the fuselage.
– the fans are driven with batteries on takeoff.
– the fans are driven in cruise with electricity generated from the exhaust gas of the two gasoline engines which are mounted in wings.
– there is an additional turbine mounted in the exhaust that turns a generator rather than compressing air for the gasoline engine.
– the exhaust for the air is either in the tail boom prior to the tail or after the tail, whichever is found to provide best results.
– the fans provide suction for the fuselage boundary layer and also additional thrust for the aircraft. This configuration however, does not cause additional drag for the aircraft but reduces it.
– additional generators can be mounted to wing tip vortices so that the wing tip vortex turns the turbine blades and thus generates electricity for the fans located in the rear of the fuselage.
– the generators, battery charging and fans are computer controlled.
– the fans utilize all power that can be drawn from the exhaust gas and the wing tip turbines and thus runs at full power available to it continuously. On takeoff batteries are used to ensure high centerline thrust for the hypothetical situation where one of the gasoline engines would fail.

>Goldschmied papers online

>I found these some time ago, but now got reminded about it also on one comment to a previous post. Therefore I decided to open a new topic for it:

Goldschmied drag reduction tech papers:
http://cafefoundation.org/v2/pav_enablingtech_dragreduction.php

Interesting reading for anyone interested in achieving major breakthroughs in the fuselage drag.

Goldschmied papers online

I found these some time ago, but now got reminded about it also on one comment to a previous post. Therefore I decided to open a new topic for it:

Goldschmied drag reduction tech papers:
http://cafefoundation.org/v2/pav_enablingtech_dragreduction.php

Interesting reading for anyone interested in achieving major breakthroughs in the fuselage drag.

KSNLFFUSELAGE20

New iteration of laminar body fuselage shape:

KSNLFFUSELAGE20

New iteration of laminar body fuselage shape:

>Looking at historical data

>One interesting aircraft in the historical data:

Lancair Evolution

P/W Power to weight ratio 7.54 kg/kW, 12.28 lbs/hp.
W/S Wing loading 142 kg/m^2, 29.05 lbs/sqft
Stall speed 61 kts
Empty weight to gross weight ratio: 0.55
Fuel to gross weight ratio: 0.2
Aspect ratio: 10.3

Aircraft with 12.28 lbs/hp power loading and 29.05 lbs/sqft wing loading in other words can
be made to climb, and it can also meet FAR 23 in stall speed requirement (61 kts). According to an article, the LC Evolution demonstrated glide ratio of 1:22 which is amazing compared to the competition, especially achieving this with only AR=10.3.

With these parameters, a smaller Rotax powered twin aircraft would be sized as follows:
Engines: 2 x Rotax 912UL, each turbocharged at 100 hp
Gross weight: 1116 kg
Empty weight: 0.55 * 1116 kg = 613 kg
Fuel weight: 0.2 * 1116 kg = 223 kg
Fuel volume: 314 l
Wing area: 1116 kg / 142 kg/m2 = 7.75 m2
Useful load (including fuel): 503 kg
Useful load full fuel: 280 kg
Endurance: 10.4 hours

Challenges:
– achieving the stall speed of 61 kts, requires very high Clmax for the flapped airfoil
– achieving > 20 glide ratio with lower Re, requires higher AR most likely
– achieving positive climb rate with single engine
– achieve the Clmax with wings that carry two engine pods on them (blanketing potentially flap and part of the wing).
– The fuel potentially does not fit inside the wing of this low wing area.

What it shows:
– Still with this high wing loading, it would be possible to fit three adults on the plane with full fuel. The result is not at all bad compared to any production aircraft.
– Empty weight looks realistic taking in account there are two Rotax engines on the craft. It is higher than it would be if it was relatively as lightweight as a Dynaero.

Bottom line: The parameters of the Lancair Evolution are very impressive and inspiring.

Realism hits:

Reduce the wing loading to 120 kg/m2
Wing area becomes: 1116 kg / 120 kg/m2 = 9.3 m2

-> It ends up in the magic 9.3 m2 wing area I have ended up from many directions already several times before.

Looking at historical data

One interesting aircraft in the historical data:

Lancair Evolution

P/W Power to weight ratio 7.54 kg/kW, 12.28 lbs/hp.
W/S Wing loading 142 kg/m^2, 29.05 lbs/sqft
Stall speed 61 kts
Empty weight to gross weight ratio: 0.55
Fuel to gross weight ratio: 0.2
Aspect ratio: 10.3

Aircraft with 12.28 lbs/hp power loading and 29.05 lbs/sqft wing loading in other words can
be made to climb, and it can also meet FAR 23 in stall speed requirement (61 kts). According to an article, the LC Evolution demonstrated glide ratio of 1:22 which is amazing compared to the competition, especially achieving this with only AR=10.3.

With these parameters, a smaller Rotax powered twin aircraft would be sized as follows:
Engines: 2 x Rotax 912UL, each turbocharged at 100 hp
Gross weight: 1116 kg
Empty weight: 0.55 * 1116 kg = 613 kg
Fuel weight: 0.2 * 1116 kg = 223 kg
Fuel volume: 314 l
Wing area: 1116 kg / 142 kg/m2 = 7.75 m2
Useful load (including fuel): 503 kg
Useful load full fuel: 280 kg
Endurance: 10.4 hours

Challenges:
– achieving the stall speed of 61 kts, requires very high Clmax for the flapped airfoil
– achieving > 20 glide ratio with lower Re, requires higher AR most likely
– achieving positive climb rate with single engine
– achieve the Clmax with wings that carry two engine pods on them (blanketing potentially flap and part of the wing).
– The fuel potentially does not fit inside the wing of this low wing area.

What it shows:
– Still with this high wing loading, it would be possible to fit three adults on the plane with full fuel. The result is not at all bad compared to any production aircraft.
– Empty weight looks realistic taking in account there are two Rotax engines on the craft. It is higher than it would be if it was relatively as lightweight as a Dynaero.

Bottom line: The parameters of the Lancair Evolution are very impressive and inspiring.

Realism hits:

Reduce the wing loading to 120 kg/m2
Wing area becomes: 1116 kg / 120 kg/m2 = 9.3 m2

-> It ends up in the magic 9.3 m2 wing area I have ended up from many directions already several times before.

>Historical data

>I have in our svn by the way a OpenOffice.org spreadsheet about historical data about the basic design parameters for aircraft. There are just couple of aircraft currently in the list, but I will add more later and also you can help, you can send me more lines to the sheet, just take the sheet as a template and fill your lines and send it to me karoliina dot t dot salminen at gmail dot com. I will copy-paste your additions to the table. I am particularly interested in fast composite aircraft and not so interested in the parameters of tube and fabric aircraft or metal aircraft (except interesting ones, like RV). All data even for fabric and tube, is welcome of course, but I wanted to let you know what I am interested in the most.

Here is the spreadsheet in OpenOffice.org format:
WeightAndBasicParametersHistoricalStatistics.ods

Here is the current version of the spreadsheet in PDF-format for quick viewing:
WeightAndBasicParametersHistoricalStatistics.pdf

Historical data

I have in our svn by the way a OpenOffice.org spreadsheet about historical data about the basic design parameters for aircraft. There are just couple of aircraft currently in the list, but I will add more later and also you can help, you can send me more lines to the sheet, just take the sheet as a template and fill your lines and send it to me karoliina dot t dot salminen at gmail dot com. I will copy-paste your additions to the table. I am particularly interested in fast composite aircraft and not so interested in the parameters of tube and fabric aircraft or metal aircraft (except interesting ones, like RV). All data even for fabric and tube, is welcome of course, but I wanted to let you know what I am interested in the most.

Here is the spreadsheet in OpenOffice.org format:
WeightAndBasicParametersHistoricalStatistics.ods

Here is the current version of the spreadsheet in PDF-format for quick viewing:
WeightAndBasicParametersHistoricalStatistics.pdf

Fuselage shape optimization

I decided to do svn up for QFLR5 and was delighted that it has progressed further. I decided to try out fuselage shapes this time because it turned out that QFLR5 now allows larger airfoil thicknesses than 20%. Therefore here is a 26% fuselage shape I created today.

Here is how I started it:
1. I took NLF414F airfoil which I know to have very low drag value at 10 million reynolds number.
2. I decambered to it to zero camber
3. I changed thickness to 26%
4. I changed leading edge radius: 30% from leading edge, 0.8 ratio.

The simulation result gives very low Cd-value. The problem in reality is that because of all intersections, and a hatch where one has to enter the craft, the transition point is not that great as predicted by the program most likely.

Here is another simulation, transition forced at 40% chord. The Reynolds number is the same, 41 million with mach 0.29:

I further adjusted the leading edge radius, from the above, I reduced it to 0.8 again.

Here is the result KSNLFFUSELAGE3:

The simulated polar for the NLFFUSELAGE3:

Obviously the fuselage is supposed to be flown at zero angle of attack on cruise flight, but for slight side slip situations it is good to know how the drag rises on the fuselage. It also affects to the stability negatively (for example because the lift slope is not at all linear).

Potential improvement idea for use in non-steady flight: widen the low drag bucket a bit.

The airfoil shape as a axisymmetric fuselage (or as a generic pod, this works also as a engine pod), 3D illustration:

And this is how it looks from inside:

Structurally the pod requires thicker boom than the optimum and unfortunately the drag will be larger than the simulated one for the pod alone.

Fuselage shape optimization

I decided to do svn up for QFLR5 and was delighted that it has progressed further. I decided to try out fuselage shapes this time because it turned out that QFLR5 now allows larger airfoil thicknesses than 20%. Therefore here is a 26% fuselage shape I created today.

Here is how I started it:
1. I took NLF414F airfoil which I know to have very low drag value at 10 million reynolds number.
2. I decambered to it to zero camber
3. I changed thickness to 26%
4. I changed leading edge radius: 30% from leading edge, 0.8 ratio.

The simulation result gives very low Cd-value. The problem in reality is that because of all intersections, and a hatch where one has to enter the craft, the transition point is not that great as predicted by the program most likely.

Here is another simulation, transition forced at 40% chord. The Reynolds number is the same, 41 million with mach 0.29:

I further adjusted the leading edge radius, from the above, I reduced it to 0.8 again.

Here is the result KSNLFFUSELAGE3:

The simulated polar for the NLFFUSELAGE3:

Obviously the fuselage is supposed to be flown at zero angle of attack on cruise flight, but for slight side slip situations it is good to know how the drag rises on the fuselage. It also affects to the stability negatively (for example because the lift slope is not at all linear).

Potential improvement idea for use in non-steady flight: widen the low drag bucket a bit.

The airfoil shape as a axisymmetric fuselage (or as a generic pod, this works also as a engine pod), 3D illustration:

And this is how it looks from inside:

Structurally the pod requires thicker boom than the optimum and unfortunately the drag will be larger than the simulated one for the pod alone.

>Lentokoneen aerodynaaminen suunnittelu -luento 5.5.2009 SIL-luokka klo 17

>Malmin ilmailukerho (MIK) jarjestaa Malmilla SIL-luokassa 5.5.2009 aiheena lentokoneen aerodynaaminen suunnittelu. Luennoitsijana Juha Karjalainen TKK:lta. Blogin lukijat ovat lampimasti tervetulleita Malmin Ilmailukerhon jasenten lisaksi. Kieli: suomi. Tilaisuuteen on vapaa paasy.

In English: There is a lecture about aerodynamics arranged at Malmi SIL class 5th May 2009. The language in the lecture is Finnish and the lecturer is going to be Juha Karjalainen from Helsinki University of Technology.

Lentokoneen aerodynaaminen suunnittelu -luento 5.5.2009 SIL-luokka klo 17

Malmin ilmailukerho (MIK) jarjestaa Malmilla SIL-luokassa 5.5.2009 aiheena lentokoneen aerodynaaminen suunnittelu. Luennoitsijana Juha Karjalainen TKK:lta. Blogin lukijat ovat lampimasti tervetulleita Malmin Ilmailukerhon jasenten lisaksi. Kieli: suomi. Tilaisuuteen on vapaa paasy.

In English: There is a lecture about aerodynamics arranged at Malmi SIL class 5th May 2009. The language in the lecture is Finnish and the lecturer is going to be Juha Karjalainen from Helsinki University of Technology.

>Mechanical life form – beta version

>Here is a preview version of a song I started today:

Mechanical Life Form – preview

This is not the final mix or may not have all the elements I might want to add and I may play again some parts which were poorly played. However, here is the preview. All comments are very welcome.

Mechanical life form – beta version

Here is a preview version of a song I started today:

Mechanical Life Form – preview

This is not the final mix or may not have all the elements I might want to add and I may play again some parts which were poorly played. However, here is the preview. All comments are very welcome.

>New mix of Sky Party

>Here is the download link to the file.

Skyparty-032009mix.mp3

This one is a lot louder and more energetic than the original mix. I added couple of new tracks into the mix as well. Enjoy!

New mix of Sky Party

Here is the download link to the file.

Skyparty-032009mix.mp3

This one is a lot louder and more energetic than the original mix. I added couple of new tracks into the mix as well. Enjoy!

MIK kerhoilta 11.3. C210 siirtolento USA->Suomi. Klo 17.00 SIL luokka, vapaa pääsy

Malmin ilmailukerhon luentosarja jatkuu: C210 siirtolento USA->Suomi SIL-luokassa.
Luennoitsijat: Ilari Härkönen ja Matti Suuronen, jotka itse lensivät ko. koneen Grönlannin yli Eurooppaan.

Paikka SIL-luokka, Malmin lentoasema. Klo 17.00-
Tilaisuuteen on vapaa pääsy. Tervetuloa.

MIK kerhoilta 11.3. C210 siirtolento USA->Suomi. Klo 17.00 SIL luokka, vapaa pääsy

Malmin ilmailukerhon luentosarja jatkuu: C210 siirtolento USA->Suomi SIL-luokassa.
Luennoitsijat: Ilari Härkönen ja Matti Suuronen, jotka itse lensivät ko. koneen Grönlannin yli Eurooppaan.

Paikka SIL-luokka, Malmin lentoasema. Klo 17.00-
Tilaisuuteen on vapaa pääsy. Tervetuloa.