Problem 2781. Rule of mixtures (composites) - reverse engineering
The rule of mixtures is used in the mechanical design of composite structures to estimate the elastic modulus (Ec) based on the following properties:
- Ef: elastic modulus of the fiber material
- Em: elastic modulus of the matrix material
- ff or fm: volume fraction of the fiber or matrix material (ff = 1 – fm)
Suppose that you are reverse engineering a composite article. You've tested coupons from the article to determine Ec and taken sections to determine the material properties and volume fraction for the fiber material. Using the known values, calculate modulus estimates for the matrix material based on both weightings of upper- and lower-bounds. Provide values for (upper-bound) weightings of 0, 1/4, 1/2, 3/4, and 1 (weighting is not related to fiber fraction or material volume).
The lower-bound estimate of elastic modulus is calculated by:
Ec = 1 / (ff / Ef + (1 – ff) / Em) [eq.1]
The upper-bound (linear) estimate of elastic modulus is calculated by:
Ec = ff * Ef + (1 – ff) * Em [eq.2]
For example, for each test case you will calculate Em_l, the lower-bound matrix elastic modulus extrapolated by eq.1, and Em_u, the upper-bound matrix elastic modulus extrapolated by eq.2. The weighted matrix elastic modulus is given by Em = wt * Em_u + (1-wt) * Em_l. For a weighting of 1/4, the weighted modulus is therefore given by Em = 0.25 * Em_u + 0.75 * Em_l.
Solution Stats
Problem Comments
-
6 Comments
I don't quite understand your second comment regarding the tag. Could you elucidate what you intended?
I meant, that writing such tags like the one mentioned above doesn't explain anything to anyone, but may be offending. I think it is a good practice to say what we enjoy or dislike via comments and let others to discuss it. (I assume it was not your tag, Grant). Anyway, it disappeared
It was definitely not my tag; fortunately it disappeared. Thanks for commenting on it though, as you are right; apparently you influenced the offender to take it down.
Solution Comments
Show commentsProblem Recent Solvers42
Suggested Problems
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
541 Solvers
-
190 Solvers
-
Create a Multiplication table matrix...
574 Solvers
-
07 - Common functions and indexing 2
414 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
1973 Solvers
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!