How many times have you heard someone selling their alpaca wool? Or touting their alpaca wool scarf? The only problem is that it isn’t wool. Let me explain!
Fibers can be categorized into a few different classes, including hair, wool, and fur (excluding kemp and guard hair for the moment).
Let’s check out Meagan’s handy chart to get us started.
FIBER TYPE
QUALITIES
CUTICLE
MEDULATION
GROWTH
DENSITY
SEBUM
FUR
Scales overlap, forming as many as 10 layers
Generally present and pronounced
Reaches a maximum length and then sheds
Higher than 60,000 follicles/sq inch
Limited quantity of sebum
HAIR
Scales overlap, forming as many as 10 layers
Generally present and pronounced
Continuous growth, but sheds
500 follicles/sq inch Only 100-200 active follicles at a time
Limited quantity of sebum
WOOL
In fine wools, scales overlap, usually forming 1-2 layers. Scales are barbed
Generally absent or almost absent
Continuous, if not sheared
Up to 60,000 follicles/sq inch
Lanolin in varying quantities
Alpaca is actually a hair fiber, like our own hair. Like us, they shed a small amount of their fiber, but it continues to grow and get longer if we don’t cut it. Because of this continuous growth, alpacas have to be sheared regularly for their health.
Check out this microscopic view of alpaca fibers. The first thing you might notice is the dark line going down the center of each fiber. This is the hollow medulla.
Air = Warmth
Any time there is air trapped in a fiber, it contributes to it being a warmer fiber. Air is an insulator. Wool does not have a hollow center, which is one of the reasons why alpaca is so much warmer than wool.
The keratin structures in alpaca fiber are different than the structures in high-memory wool. As a result, the fiber has almost no memory. That means it will not return to its original shape once it has been stretched out. This is great for drape, but not great for anything that requires stretch, like socks or mittens. We often blend wool with alpaca to compensate for its lack of stretch.
While it may be tempting to call alpaca wool because it is so squishy and wool-like, there are some fundamental differences that mean that the fibers behave differently. Are the spinning police going to come after you if you call alpaca wool? No way! Still, it is sometimes helpful to have that scientific distinction to help guide your creative process.
https://plymagazine.com/wp-content/uploads/2024/11/16_250x_alpacaw_1.png7691028Meagan Condonhttps://plymagazine.com/wp-content/uploads/2014/06/plylogo-condensed-pnk-300x164.pngMeagan Condon2024-11-19 09:00:002024-11-17 14:10:13Alpaca Wool: A Misnomer
While spinning need not be heavily mathematical, in some situations math can be helpful. If you are math-averse, having these calculations in a reference spreadsheet can be a big help.
Disclosure: I have minimal skills at Excel. While my final spreadsheet is not the most elegant, it works. Also, Excel is very sensitive. When it wants “ (straight quotes), it does not want “ (smart quotes). If you are accustomed to word processing software that autocorrects and anticipates your needs, be forewarned that is not Excel. Excel is specific, accurate, and detailed, and expects the same from its users. Human beware!
Convert between yards and meters
Let’s start with a very simple calculation – converting between yards and meters. The conversion numbers are as follows:
1 yard = 0.9144 meters
1 meter = 1.0936133 yards
I start by writing “Length Converter” in cell A1. I use “Merge and Center” to give me a nice title. Then I write “yards” and “meters” in cells A2 and B2.
Since I want to convert from yards to meters, in cell B3 I type
=A3*0.9144
then tap the <return> key. I’ve told Excel to multiply the number in cell A3 by 0.9144, the conversion factor from yards to meters.
Type a number in cell A3 and tap <return>. Success! We can convert yards to meters.
For a double-check, I type “1” in cell A3. I should get “0.9144” in cell B3.
Upon further investigation, I discovered Excel has a convert function already in it! Sweet! The formula is:
=CONVERT(number,”yd”,”m”)
As an alternative, into cell B3 I can type the formula:
=CONVERT(A3,”yd”,”m”)
Then hit <return>. I don’t even need to know or understand the conversion factor.
If you are accustomed to translation software, you might expect to type a number into cell B3 and have Excel translate meters to yards in cell A3. Sadly, Excel does not work this way, unless you know how to program it in VBA. Since we would rather spin than write spreadsheets, let’s not go there. This is why we have friends who are professional engineers. (Thank you to my friend Larry Acuff for confirming that yes, you can upgrade this spreadsheet with VBA code.)
Since I’d like to convert in either direction, I’ll add a few more cells to my spreadsheet. Into cell A5 I write
=CONVERT(B5,”m”,”yd”)
Now I can put a measurement in meters into cell B5 and get the yard equivalent in cell A5.
You may notice rows 3 and 5 are not equivalent numbers. They are two completely separate equations. It would be nice to type either yards or meters into row 3 and have row 5 give me both answers. Can I do that?
This is where we go a wee bit past Excel basics. Time to use the IF function.
I delete all the data in cells A3, B3, A5, and B5. Bye, bye, formulas!
Here’s my thought process. If I enter yards in cell A3, then I want cell A5 to copy that information. But if I left cell A3 blank and instead entered meters in cell B3, then I want Excel to convert those meters to yards. Similarly, I want cell B5 to have meters, whether copied directly from cell B3 or calculated from yards entered in cell A3.
The magic formula for cell A5 is
=IF(TRUE=ISBLANK(A3),CONVERT(B3,”m”,”yd”),A3)
In human-speak that sentence means the following: If it is true that cell A3 is blank, then convert the number in cell B3 from meters to yards; otherwise, copy the number from cell A3.
A rewrite of that formula goes into cell B5
=IF(TRUE=ISBLANK(B3),CONVERT(A3,”yd”,”m”),B3)
Give it a try. I know 6 yards is a little less than 6 meters. What happens when I put 6 in cell A3 and tap <return>?
Cell B3 stays empty. But cell B5 now says 5.4864. That would be a little less than 6. The yard and meter equivalents are both on row 5. More success!
Try clearing A3 and putting a number in B3 instead. I still get yards and meters, but this time the yards were converted and the meters were copied.
Convert between ounces and grams
Wouldn’t it be nice to convert ounces and grams the same way?
I’ll repeat what I just did. I copy cells A1 through B5 and paste them over cells C1 through D5. I change the text to “Mass Converter,” “Ounces,” and “Grams.” Then I change the formulas. All I have to do is put “g” and “ozm” in place of “m” and “yd”. The formulas for C5 and D5 are as follows:
=IF(TRUE=ISBLANK(C3),CONVERT(D3,”g”,”ozm”),C3)
=IF(TRUE=ISBLANK(D3),CONVERT(C3,”ozm”,”g”),D3)
Try playing with it. In my example, I know it is typical for me to spin 100 grams but measure length in yards.
Grist
Since I now have both length and weight on row 5, I could do another calculation – grist.
Grist is a length of yarn per mass of yarn. It is usually expressed as yards per pound, but you could use meters per kilogram, or even bastard units such as yards per gram or meters per ounce. You could even try furlongs per stone or parsecs per solar mass. 😉
For my spreadsheet, I’ll make a grist calculator that gives me yards per pound, yards per kilogram, meters per pound, and meters per kilogram.
I write “Grist Calculator” in cell A6, then I merge and center cells A6 through D6. I write “yards” in cells A8 and B8, “meters” in cells C8 and D8, “pounds” in cells A10 and C10, and “kilograms” in cells B10 and D10.
I want to copy the appropriate measurements into my grist calculator. My yards measurement is in cell A5. I enter
=A5
into cells A7 and B7. For meters I enter
=B5
into cells C7 and D7.
I’ll need to do some conversions for pounds and kilograms. The pound cells are A9 and C9. I’m back to using the convert function:
=CONVERT(C5,”ozm”,”lbm”)
Finally, cells B9 and D9 convert grams to kilograms:
=CONVERT(D5,”g”,”kg”)
I have all the numbers where I need them. I just need to do some division.
Cell A11 is going to be yards per pound. I enter
=A7/A9
That gives me a number representing yards per pound. If I copy and paste cell A11 into cells B11, C11, and D11, Excel thoughtfully realizes the division I want. I now have grist expressed four different ways in row 11.
I could use row 12 to write “yds/lb,” “yds/kg,” “m/lb,” and “m/kg.” But if I want to be fancy, there are a couple things I can do. First, grist is rarely expressed in decimals. It is nearly always rounded to a whole number. Second, it would be nice to have the units in the box right next to the answer. I highlight A11. In the Format menu I choose “Cells…” or hit ⌘1. From “Number” I go to the bottom and choose “Custom”. In the box I type
0 “yds/lb”
and click <OK>.
Now A11 gives me a whole number in yds/lb!
Repeat this approach for cells B12, C12, and D12, giving each the correct units.
Other notes
At the end, I draw thick box borders around each section of the spreadsheet. I haven’t added background color to any cells, but I could do that if I wanted to clarify where to input data or to highlight the answers.
To use this spreadsheet, I merely empty all the cells in row 3.
There are some error messages. Excel does not like to divide by 0. And this spreadsheet is not idiot-proof. I should enter only one number in either A3 or B3, not both. Similarly, I enter only one number in C3 or D3, not both.
There are ways to refine this spreadsheet using more advanced skills in Excel. For example, there are ways to hide the zeros or prevent Excel from attempting to divide by zero. But for most of us, saving this as a spinner’s spreadsheet or a grist calculator will work just fine.
Jolie Elder has explored a wide range of needle arts after learning to cross stitch at age four. Her cleverest unvention is a method for working stockinette-based laces reversibly. You can view her experiments at jolieaelder.blogspot.com and the YouTube channel Jolie knits.
We may request cookies to be set on your device. We use cookies to let us know when you visit our websites, how you interact with us, to enrich your user experience, and to customize your relationship with our website.
Click on the different category headings to find out more. You can also change some of your preferences. Note that blocking some types of cookies may impact your experience on our websites and the services we are able to offer.
Essential Website Cookies
These cookies are strictly necessary to provide you with services available through our website and to use some of its features.
Because these cookies are strictly necessary to deliver the website, refusing them will have impact how our site functions. You always can block or delete cookies by changing your browser settings and force blocking all cookies on this website. But this will always prompt you to accept/refuse cookies when revisiting our site.
We fully respect if you want to refuse cookies but to avoid asking you again and again kindly allow us to store a cookie for that. You are free to opt out any time or opt in for other cookies to get a better experience. If you refuse cookies we will remove all set cookies in our domain.
We provide you with a list of stored cookies on your computer in our domain so you can check what we stored. Due to security reasons we are not able to show or modify cookies from other domains. You can check these in your browser security settings.
Google Analytics Cookies
These cookies collect information that is used either in aggregate form to help us understand how our website is being used or how effective our marketing campaigns are, or to help us customize our website and application for you in order to enhance your experience.
If you do not want that we track your visit to our site you can disable tracking in your browser here:
Other external services
We also use different external services like Google Webfonts, Google Maps, and external Video providers. Since these providers may collect personal data like your IP address we allow you to block them here. Please be aware that this might heavily reduce the functionality and appearance of our site. Changes will take effect once you reload the page.
Google Webfont Settings:
Google Map Settings:
Google reCaptcha Settings:
Vimeo and Youtube video embeds:
Other cookies
The following cookies are also needed - You can choose if you want to allow them: