SwellIdea
Branding the Ball – The Name
The average American consumer is exposed to about 245 pieces of promotional media on any single day. (1) I believe this has resulted in gradually shorter attention spans and an increasing low tolerance for uninteresting advertisements. For this reason, advertising media that once only touted a product’s features now focuses more on entertaining the viewer. Beyond traditional advertising, branding has become a popular technique in marketing a product.
What is “branding”? Branding is more than a catchy name, an easily recognized logo and a cool tag line. Branding is the entire persona of a product. Color, sound, smell, other product association, user demographic, market placement, event sponsorship, etc. etc. It’s the whole package. It’s the clothes you wear, the accent in your voice, your cologne, the church you attend, the friends you keep, the places you eat, the car you drive and what brand of facial tissue you blow your nose with. So, if I were interested in marketing my booger ball product, how would I go about “branding the ball”?
The first thing to consider when developing a product into a brand is its name. Names have always been important for me. One of my customers had me working on a new machine that was to be their flagship product of the future. It was going to include all of the key features of the successful products of their past at half the cost. It was going to trump the competition. The name they chose was “Model TBD”. Now, I understand that the design phase is still early in the product development process, but a product this big deserved a name. I couldn’t stand working on the project. Nobody wanted to take responsibility for naming it, so I did. We called the project the Lancer. It wasn’t the greatest name, but it did inspire some of the true vision of what the product was to become. It was much better than TBD (to be determined). Eventually the marketing department named the product something different, but at least it had a “code” name to help inspire us.
Every project/product I work on needs to have a name so I am always coming up with names for products. A good product name should describe the product. It should be easy to say and spell (most important today in the internet age where address is everything). The name also needs to fit the overall theme of your product (e.g. a sophisticated product needs to have a sophisticated sounding name). When working on a name, I usually search available domain names (website names) that I might use to market the product. I also search the USPTO (United States Patent and Trademark Office) to see if the name has been registered as a trademark. I do an internet search to see what else is out there in cyberspace. I share the name with some of my friends and family to see what they think of it (in business, this is called a “focus group”). I also say a prayer because I realize that my creativity comes from God who made me and He inspires me to come up with clever names. All of these activities put together usually results in a suitable name for my project/product.
As it turns out, my story about how to make a booger ball, naturally leads to its own name. The term “booger ball” is self descriptive. A search on the USPTO site reveals only 2 registered trade marks including the words booger and ball and they are both expired. A domain name search reveals boogerball.com is available. The last thing that makes sense for this name is to combine the words booger and ball together into one word. The website name does that naturally, but having a unique word (even if it is a combination of two common words) makes it easier to protect the name. So from now on, I will call my product the BoogerBall. Everywhere I need to talk about a ball of boogers, I will use the new word BoogerBall. This is swell because the two words alone are nouns but together they can be used as an adjective. A BoogerBall box is a box used to hold a ball fabricated from rubber cement. Capitalizing the two B’s hearkens back to my computer programming experience where I designed numerous database solutions for small companies and all of the field names were descriptive but mashed together with caps to make sense of them.
As I said before, branding is much more than just a name. Now that we have established the name, we can focus on the many remaining facets of branding. More to come… -Amos
Spirograph Design for CSWP Contest
I’m going SolidWorks World next week and I’ve been told that the CSWP event on Monday night should be a good time. I remember seeing details about last year’s event where everyone got to play with the iCoaster. It looked cool. This year everyone gets to test drive an RC car. I’m not very good with RC cars, but there’s a design contest too. That’s something I can do.
The Problem: design a new wheel in SolidWorks for the SC10 RC car.

The Rules: Points will be awarded in these key areas: 1) Is the wheel designed and supplied in SolidWorks format? 2) Is the wheel rendered and/or animated in a cool way? 3) Is the wheel construction feasible? (decided by Team Associated engineers/designers)
The rules seem a bit awkward to me – the company obviously wants some free design work, but I want to have some fun. My best designs come when I ignore the Rules and just get creative (notice I said “ignore” and not “forget” – eventually you need to come back to the rules, but if you can ignore them for awhile, your creativity will not be limited.)
The first idea that comes to mind is an old toy – the Spirograph. What if my RC car wheel had spokes that looped around in a continuous weave that looked like one of those designs you can make with a Spirograph?
There must be a mathematical equation to describe the path made when a point on one circle is plotted as it rotates around another circle. If I can plot the path mathematically, maybe I can create a 3D path in SolidWorks to describe a sweep for the spokes of my wheel. After searching for “spirograph equation”, I discovered David Little’s page at Penn State University. As it turns out, the path of a Spirograph is called an epicycloid. It’s described by a pair of equations:
x(t)=(R+r)cos(t) + p*cos((R+r)t/r)
y(t)=(R+r)sin(t) + p*sin((R+r)t/r)
R and r are the radii of the 2 circles, p is the position along the radius of the first circle (the hole you put your pencil in on a Spirograph). Mr Little’s website has a cool Java applet that draws epicycloids based upon your input. If you experiment with this tool, you can discover all sorts of interesting geometry. After a few iterations, I found a combination that I thought might look like the spokes of a wheel using the values R=72, r=66 and p=67.
Where would engineers be without the spreadsheet? I remember seeing a documentary on PBS called Nerds where I learned that the first spreadsheet was called Visicalc and it was for accountants. Excel is the tool that I am most familiar with – version 2003 being most preferred. The Excel version of these formulas seems a bit more complicated. First, cells are made for all of the constants (R, r, p). I added a few extra for scaling – the final goal is an equation of a curve that will intersect the hub and rim of our wheel. Examination of the formula quickly reveals that t is an angular variable. I made a column for t in degrees because I know this is a cyclical function that will repeat every 360º (remember, it’s a circle rotating around a circle). I also made a column for radians (degrees times pi divided by 180) because Excel evaluates sine and cosine in radians. I probably could change this default somewhere, but that is something I would probably forget later and it’s easy to remember how to convert degrees to radians.
I know I want X and Y coordinates for the entire path and that they will eventually return to zero. I wasn’t sure how to know how many points to plot so I made some check formulas that subtract the current X and Y values from the original X and Y values – when the check columns both hit zero, I know I’ve returned home. The last step for X and Y is to plot a curve using Excel’s graph tool. The Excel graph matches the epicycloid plot so I know I’m on the right track. (Actually, I’m thoroughly appreciating the same feature that the original users of Visicalc appreciated, Excel’s power to iterate until I get it right.)
Some interesting observations: my epicycloid has 12 loops and the equation to describe it requires 3960 points at one degree increments. If I made another with 22 loops, I would expect it to take 7560 points to describe it (360 x 21). For some reason, my check equations did not exactly return to zero until I placed a round function into my formulas – I added a variable for the number of rounded decimal places as well.
What about Z? The equations for an epicycloid are only in 2 dimensions, but I want a 3D path for my wheel spokes. The options are limitless, but a sine function would make a nice smooth equation and it would behave in a similar way as the epicycloid equations. Some constants are necessary to vary how often the equation returns to zero and vary its scale. Graphing the function over the same range gives a clue how the path will vary in Z.
Excel’s worksheet functionality makes it easy to create formatted output. It turns out that the way the wheel was originally created, I need my X and Z data points to be swapped. By creating a new worksheet with only X, Y and Z values, I can swap the values very easily. The final result is a text file with 3960 points of X, Y and Z data.
Now to SolidWorks! The Insert Curve Through XYZ Points tool quickly creates a 3D path.
As a point of interest, I believe it was because of this tool that Walt Disney Imagineering chose SolidWorks as it’s 3D design tool – they had 3D points to describe the path of a rollercoaster and needed a tool to model the track. I created a second sketch on a principal plane perpendicular to the path. I started with just a sketch point and some dimensions tieing it down to the path.
Then I made the geometry for my sweep all tied to the sketch point. This way, if I want to change the profile from a circle to a square, I don’t lose my dimensions when I delete the circle. The Sweep tool turns all this hard work into an effortless expression of mathematical beauty. A few features to tie the spokes to the wheel and I have my entry.
Of course, I must return to the rules. I already know I will not win because, although my design is interesting, it cannot be molded which is the intent of rule 3. Rule 1 is easy – SolidWorks makes the whole thing possible. So Rule 2 is the only one left to satisfy.
I’m running out of time so a quick assembly with a cut-away view and a few minutes of rendering in PhotoView 360 and, at last, I have an entry.
Here are all of the files I used to create this design. -Amos
AEA Entry 1 of 2
AEA Entry 2 of 2
Followup: SolidWorks World was great. The CSWP event was very fun even though I am a very poor RC driver.
I did not win the design contest (for obvious reasons). I did, however, win one of 40 SC-10 RC cars, which is VERY cool!
80/20 Weldment Profile Library Features
SolidWorks does an amazing job of making the design of frame structures very easy. I’ve given a few presentations lately about how to do this using 80/20 products as the example. As promised, here are all of the Weldment Profile Library Features I created and uploaded to 3DContentCentral. I will give step-by-step instructions in a future post. -Amos
How to make a Booger Ball
Here it is, the original story. I’ve only modified it slightly since it was first written, adding the update note from my daughter. I am keeping the old page intact here as it is fun to watch the counter. This is the “product” I was talking about in the post about Product Development.
Product Development
Ever since I was young, I’ve had an obsession with the idea of “product development”. Every new idea I’ve had is accompanied by 10 more about how to manufacture, package, brand and market the idea. I can’t explain the obsession, it’s just what rolls out of my brain next. I’ve created products like CookieCrumbs, the Toad Stool, the KingKol and A Place In Your Heart. My biggest frustration in all this is that I cannot seem to get even one of these products successfully to market. Like everyone else, I blame lack of time and resources. This year I want to try something different. Like Captain Kirk who rewrote the Kobayashi Maru test, I’m going to redefine success. All this time, I’ve been judging my self by units sold and since I’ve sold very few units of any of my products (except maybe LolliPop Toppers™), I feel unsuccessful. One product of my design is going to change that.
The product I’m contemplating is the BoogerBall story I penned.
I know, roll your eyes and say, “Oh brother, what absurdity is he talking about now?” Well, I wrote a mildly humorous story some years ago called, “How to Make a BoogerBall” for my daughter Ellen. I posted it here, on my company website for the world to see. To my amazement, the world has seen it.
So that’s my product. Not a BoogerBall, not a book about BoogerBalls, but the story itself, How to Make a BoogerBall by Amos E. Avery. Why does this redefine success for me? Because it’s already a success. My goal is not to sell the story, but to get people to read it. My first website counter reached 4000 plus readers before I changed web hosts. The new site has over 29000 hits on that page. Blogs around the world have pages of comments about my story. It’s already a success. Anything I can do to gain more readers is a success and anything I can sell along the way is icing on the cake.
So here’s the plan. Launch BoogerBall.com as a legitimate site (it’s just forwarding to a page on my company site right now). Do all of the “product development” things I can’t help but do (you should see the pages of notes and drawings I have for just this idea alone). Develop manufacturing techniques, logos, packaging, identities, marketing strategies, support products, tag lines, graphics and compelling stories. Most importantly, write about all of it as I do it. BoogerBall.com will be the recipient of the finished product – the story and all of its supporting stuff. Averyswellidea.com will be the recipient of this first entry and all subsequent entries along the way. So, if you want to learn more about creativity mixed with faith mixed with foolishness mixed with practical product development insights, stay tuned.
-Amos
R2-Table2

I’m headed to SolidWorks World and I’m getting in for free! I submitted a proposal to teach a 90 minute hands-on session called, “Non-Welded Weldments – Using SolidWorks Weldment tools and 3DContentCentral to create 80/20 structures”. My plan is to demonstrate how to design a mobile cart in SolidWorks while my assistant actually builds the same (or similar) cart from 80/20 parts. My goal is to demonstrate how easy it is to both design and build stuff using SolidWorks and 80/20. I was having a hard time deciding what to build for the event. The proposal I submitted referenced a “a cool collapsing mobile workbench” but I wanted to build something like a Battle Droid. My friend Jamie suggested R2-D2 and the idea for R2-Table2 was born. It’s all 80/20 components. It’s modular and collapsible and mobile and very cool.
-Amos
Added 2/25/10 – Disclaimer – 80/20, Inc. and John Henry Foster provided the kit of 80/20 parts for my assembly of the R2-Table2 at a discounted price (it was not, however, free).
Help-Me-Hand
Product: Help-Me Hand™
File: Help-Me-Hand.pdf
Description: This tool is useful for anyone in a teaching situation where students might raise their hands to ask for help. In a busy classroom, it is difficult for a teacher to attend to the needs of many students at once. This can cause frustration among the students who must keep their hands raised until the teacher notices their need and can address it. The Help-Me Hand™ is a tool that nearly any student can make and use. Simply print out the aforementioned pdf file on thick paper if possible (we recommend 65lb Cover Stock available at most paper and scrapbooking stores as it will feed through most printers). Cut the hand from the paper with scissors. When the student needs help they can hook the two ends together and place the Help-Me Hand™ in plain view. When the are finished getting help, the Help-Me Hand™ stows easily in a notebook, textbook or 3-ring binder (notice the placement of the 3 holes for punching). If you plan to make many of these you might consider purchasing the PrintMatch™ Cutter for your die cut machine from Print-N-Cut Promotions.
Swell Ideas
Thanks for visiting!
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Feb | ||||||
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 | ||||


















