Problem 1: (10 pts) Similar to the figures on Lesson 9, Slide 9, sketch the stack-up for the following laminates: (a) [0/45/90]s (b) [00.05/+450.1/900.075]s (C) [45/0/90]2s (d) [02B/45G/90G]s (B=boron fibers, Gr=graphite fibers)

Answers

Answer 1

The stack-up for the given laminates is as follows:

(a) [0/45/90]s

(b) [00.05/+450.1/900.075]s

(c) [45/0/90]2s

(d) [02B/45G/90G]s

In the first laminate, (a) [0/45/90]s, the layers are stacked in the sequence of 0 degrees, 45 degrees, and 90 degrees. The 's' indicates that all the layers are symmetrically arranged.

For the second laminate, (b) [00.05/+450.1/900.075]s, the layers are arranged in the sequence of 0 degrees, 0.05 degrees, +45 degrees, 0.1 degrees, 90 degrees, and 0.075 degrees. The 's' denotes that the stack-up is symmetric.

In the third laminate, (c) [45/0/90]2s, the layers are stacked in the order of 45 degrees, 0 degrees, and 90 degrees. The '2s' indicates that this stack-up is repeated twice.

Lastly, in the fourth laminate, (d) [02B/45G/90G]s, the layers consist of 0 degrees, 2B (boron fibers), 45 degrees, 45G (graphite fibers), 90 degrees, and 90G (graphite fibers). The 's' implies a symmetric arrangement.

Learn more about Stack-up

brainly.com/question/32073442

#SPJ11


Related Questions

Mysterious Program Consider this mysterious program. 1 int f(int x, int y) t 2 intr1 3 while (y > 1) 4 if (y % 2-1){ 9 10 return r X 1. Find the values f(2, 3), f(1,7), f(3,2) and determine what the program output given x and y

Answers

The mysterious program is given as: 1 int f(int x, int y) t 2 intr1 3 while (y > 1) 4 if (y % 2-1){ 9 10 return r X 1.

In order to solve this program for x and y, we need to plug in x and y values.

1. For x = 2 and y = 3, f(x,y) will be:

f(2,3) = 22. For x = 1 and y = 7, f(x,y) will be:

f(1,7) = 13. For x = 3 and y = 2, f(x,y) will be:

f(3,2) = 31

Plugging the values into the given program, the program outputs for x and y is 2, 1 and 3, respectively.

The program works as follows:

The function f takes in two integer parameters x and y.

Int r is initialized to 1 and while the value of y is greater than 1:

If the value of y is odd, multiply r by x.If the value of y is even, square the value of x and divide the value of y by 2.

The final value of r is returned.

Learn more about program code at:

https://brainly.com/question/28340916

#SPJ11

Given the code:1 int f(int x, int y) t2 intr13 while (y > 1)4 if (y % 2-1){9 10 return r XWe are to determine the values of f(2,3), f(1,7), and f(3,2) as well as the output of the program given x and y.

As can be seen from the code, the program is defined recursively, that is it calls itself. So let's start by working out f(2,3) which will be the base case upon which we can then build f(1,7) and f(3,2)f(2, 3) = 2 * f(2, 2) = 2 * 4 = 8 where f(2, 2) = 4f(1, 7) = f(2, 6) = 2 * f(1, 5) = 2 * 62 = 12where f(1, 5) = f(2, 4) = 2 * f(1, 3) = 2 * 10 = 20where f(1, 3) = f(2, 2) = 4where f(3, 2) = 3 * f(1, 1) = 3 * 1 = 3 where f(1, 1) = f(1, 0) = 1From the above calculation, the program will output the value of r X which in this case is 8, 12, 3 for f(2, 3), f(1,7), and f(3,2) respectively.

To know more about values visit:

https://brainly.com/question/30145972

#SPJ11

Consider the 90Sr source and its decay chain from problem #6. You want to build a shield for this source and know that it and its daughter produce some high energy beta particles and moderate energy gamma rays. a. Use the NIST Estar database to find the CSDA range [in cm) and radiation yield for the primary beta particles in this problem assuming a copper and a lead shield. b. Based on your results in part a, explain which material is better for shielding these beta particles.

Answers

a. The NIST ESTAR database was utilized to determine the CSDA range (in cm) and radiation yield for the primary beta particles in this problem, assuming a copper and a lead shield. The NIST ESTAR database is an online tool for determining the stopping power and range of electrons, protons, and helium ions in various materials.

For copper, the CSDA range is 0.60 cm, and the radiation yield is 0.59. For lead, the CSDA range is 1.39 cm, and the radiation yield is 0.29.

b. Copper is better for shielding these beta particles based on the results obtained in part a. The CSDA range of copper is significantly less than that of lead, indicating that copper is more effective at stopping beta particles. Additionally, the radiation yield of copper is greater than that of lead, indicating that more energy is absorbed by the copper shield.

To know more about radiation visit:

https://brainly.com/question/31106159

#SPJ11

In order to implement the insert() function for a heap implemented using a vector A containing n values do the following: A: Place new element in A[n], then sift-down(A[n])
B: Place new element in A[0], then sift-down(A[0])
C: Place new element in A[n], then sift-up(A[n])
D: Place new element in A[0], then sift-up(A[0])
Group of answer choices
A
B
C
D

Answers

The correct answer to the given question is option C which states that in order to implement the insert() function for a heap implemented using a vector A containing n values, place a new element in A[n], then sift-up(A[n]).

How to implement the insert() function for a heap using vector A?We can implement the insert() function for a heap using vector A in two ways, i.e., either we can use the sift-up() function or sift-down() function. Let's have a look at both of these ways one by one.Sift-up() function for insert() function in a heapSift-up() is also known as up-heap or bubble-up, which means that we need to place the new element at the end of the array, i.e., at A[n] and then compare this new element with its parent node.A) If the new element is greater than the parent node, we will swap them.B) If the new element is smaller than the parent node, we will leave it as it is. And then we repeat this process until the parent node is greater than or equal to the new element.

To know more about vector visit:

https://brainly.com/question/24256726

#SPJ11

A router does not know the complete path to every host on the internet - it only knows where to send packets next. a true b. false 1.2 Every destination address matches the routing table entry 0.0.0.0/0 a. True b. False

Answers

The statement: A router knows the complete path to every host on the internet is False.

A router does not have knowledge of the complete path to every host on the internet. Instead, it only knows the next hop or the next router to which it should forward the packets in order to reach their intended destination. Routing tables in routers contain information about network addresses and associated next hop information, allowing the router to make decisions on where to send packets based on their destination IP addresses.

Regarding the second statement, the routing table entry 0.0.0.0/0 is commonly known as the default route. It is used when a router doesn't have a specific route for a particular destination address. The default route is essentially a catch-all route, used when no other route matches the destination address. Therefore, it does not imply that every destination address matches this entry.

Learn more about Router

brainly.com/question/32243033

#SPJ11

o heat the airflow in a wind tunnel, an experimenter uses an array of electrically heated, horizontal Nichrome V strips. The strips are perpendicular to the flow. They are 20 cm long, very thin, 2.54 cm wide (in the flow direction), with the flat sides parallel to the flow. They are spaced vertically, each 1 cm above the next. Air at 1 atm and 20° C passes over them at 10 m/s a. How much power must each strip deliver to raise the mean

Answers

Each strip needs to deliver approximately 1.6 Watts of power to heat the airflow in the wind tunnel.

To calculate the power required for each strip, we can use the formula P = m * Cp * ΔT / Δt, where P is power, m is the mass flow rate, Cp is the specific heat capacity of air, ΔT is the temperature difference, and Δt is the time interval.

First, we need to find the mass flow rate. The density of air at 1 atm and 20°C is approximately 1.2 kg/m³. The velocity of the air is 10 m/s. Since the strips are 20 cm long, 2.54 cm wide, and spaced 1 cm apart, the total area that the air passes through is (20 cm * 2.54 cm) * 1 cm = 50.8 cm² = 0.00508 m². Therefore, the mass flow rate can be calculated as m = ρ * A * v = 1.2 kg/m³ * 0.00508 m² * 10 m/s = 0.06096 kg/s.

Next, we need to determine the temperature difference. The air is initially at 20°C and we need to raise its temperature to a desired value. However, the desired temperature is not mentioned in the question. Therefore, we cannot calculate the exact power required. We can only provide a general formula for power calculation.

Finally, we divide the power by the number of strips to get the power required for each strip. Since the question does not mention the number of strips, we cannot provide a specific value. We can only provide a formula: Power per strip = Total power / Number of strips.

Learn more about wind tunnel

brainly.com/question/15210384

#SPJ11

Other Questions
According to an article on bloomberg.com, the McKinsey & Co. consulting firm estimates that banks could reduce their costs by as much as $14 billion per year by making greater use of blockchain technology. What is blockchain technology? O A. A consolidated system that registers ownership of funds, securities, and other goods and allows transactions to settle instantly B. A consolidated system that registers ownership of funds, securities, and other goods and allows transactions to settle overnight C. A distributed system that registers ownership of funds, securities, and other goods and allows transactions to settle overnight D. A distributed system that registers ownership of funds, securities, and other goods and allows transactions to settle instantly find the volume v of the described solid s. a cap of a sphere with radius r and height h v = incorrect: your answer is incorrect. Imagine the U.S. economy is in long-run equilibrium. Then suppose the aggregate demand increases. We would expect that in the long-run the price level woulda.decrease by the same amount as the increase in aggregate demand.b.decrease.c.stay the same.d.increase. Each country develops a system that helps determine how resources are allocated: who can start a business, how those business owners should hire and pay workers, and what assistance the government will provide for those who cannot work. These are just a few examples of the decisions that contribute to a countrysA. macroeconomicsB. economyC. debt ceiling2. Anders and his family make economic decisions on a daily basis: things like where to shop, what prices they are willing to pay, and which brands they prefer. The study of these choices is known as ________.A. capitalismB. microeconomicsC. monetary policy3. One way the government can help boost the economy is through large-scale infrastructure projects that create jobs. One famous historical example of this was the construction of the Hoover Dam during the Great Depression under Franklin D. Roosevelts administration. This is an example of ______.A. fiscal policyB. capitalismC. socialism4. Although the U.S. government does control certain enterprises, such as Medicare and Social Security, private enterprises largely rely on the principles of _______.A. pure competitionB. supply and demandC. budget surplus5. Sweden has long been associated with successful socialist policies, but recently the Swedish government has had to cut back on some of the social services it provides its citizens, especially those that benefit older adults. One issue is that the younger working population isnt large enough to support the much larger elderly population. Another is the flight of investors and entrepreneurs, who tend to seek out countries with more favorable tax rates. These latter countries are an example of ______.A. the fundamental rights of capitalismB. pure competitionC. a free market economy6. As many workers were forced to stay home during the COVID-19 pandemic, the demand for home-improvement supplies increased. Homeowners scrambled to secure contractors who would help with remodels and additions, many of which called for the use of lumber. As a result, the price of lumber skyrocketed. The United States could see an increase in the _______ as a result of shortages and supply-chain disruptions throughout the world.A. unemployment rateB. gross domestic product (GDP)C. producer price index (PPI) In the process of designing and implementing its global sourcing strategy, what stage of the process do you think could be the most challenging for the company? Why? 1.) What do you think is the modern-day equivalent to MTV? Be specific and give examples to support your claim.2.) How is your "modern-day MTV" similar to MTV, and how is it different?Please answer these only 2 questions. I only want to see questions 1 and 2. good information and be detailed. In the Bluest Eye:What does Pauline blame for her "general feeling of separatenessand unworthiness" that she experienced as a child? How does she tryto cope with these feelings? What is the "Presen Are market failures internal or external consequences of the market? Is regulation necessary to stabilize the market?Should the government be responsible for regulating and limiting market forces?Explain your answer. Dividends paid are allocated according to the percentage of shares owned by each stockholder.truefalse given the following reaction, if one begins with 5.0 moles of al2o3 then how many moles of o2 could be produced?2Al2O3 4Al + 3O2 the company manufactures a certain product. 15 pieces are treated to see if they are defects. The probability of failure is 0.21. Calculate the probability that:a) All defective partsb) population when securities are kept in their street name, they are registered in the name of the An alpha particle ( 4He ) undergoes an elastic collision with a stationary uranium nucleus ( 235U). What percent of the kinetic energy of the alpha particle is transferred to the uranium nucleus? Assume the collision is one dimensional. A study was carried out to compare the effectiveness of the two vaccines A and B. The study reported that of the 900 adults who were randomly assigned vaccine A, 18 got the virus. Of the 600 adults who were randomly assigned vaccine B, 30 got the virus (round to two decimal places as needed).Construct a 95% confidence interval for comparing the two vaccines (define vaccine A as population 1 and vaccine B as population 2Suppose the two vaccines A and B were claimed to have the same effectiveness in preventing infection from the virus. A researcher wants to find out if there is a significant difference in the proportions of adults who got the virus after vaccinated using a significance level of 0.05.What is the test statistic? Identify whether General Motors has any dynamiccapabilities. match each five-electron group designation to the correct molecular shape. which four countries contribute the most co2 to the atmosphere?a. Chinab. United Statesc. Rusiad. Germany in 150 - 200 words summarize and rephrase this article, and write one sentence the most takeaway and one-sentence criticism from this article (Fuzzy Multiple Criteria Decision Making Approach to Assess the Project Quality Management in Project) Abstract Project quality management is all of the processes and activities needed to determine and achieve project quality. It includes the processes required to ensure that the project will satisfy the needs for which it was undertaken. Based on the identified evaluation criteria, a hierarchical structure of three dimensions and fifteen criteria is constructed, and a systematic approach with fuzzy ANP (FANP) was employed to assess the relative importance rates and rankings of these criteria. Discussions for the results are made and a brief conclusion is proposed. Therefore, the purpose of this paper is to evaluation project quality management in project. The results found that there were interactive relations between all the criteria, where the dimension of "Quality planning" was the most influential dimensions; Furthermore, criteria "Project management plan", "Project Scope", and "Quality management plan" have the higher influences among each dimension, so we suggest to consider them as the major steps to promote the quality of project management. 1. Introduction Project quality management is all of the processes and activities needed to determine and achieve project quality. Quality is a slippery concept, argues Garvin (1992), "easy to visualize, and yet exasperatingly difficult to define." Based on Reeves and Bednar (1994), we explore three concepts of quality developed over time and discuss how these relate to the nature of projects, as expressed in the last section. Some of the concepts are tailored to embrace quality of goods and others of services. This is an important distinction in project contexts. Although a "project" may be defined as a manufacturing process type (Slack et al., 2004), it is true to say that projects can also be considered a "hybrid" of services and goods. In this article we understand goods as the outcome of the project, e.g. a factory, software code, or a new product, while services refers to the process of developing this outcome, the management of projects, its process, the way stakeholders are engaged in the decision making processes, etche rest of this paper is structured as follows: in Section 2, we discussed and found the components of project quality management background and requirements in order to construct the evaluation criteria based on literature review. In Section 3, the depiction and application of the Fuzzy theory and Fuzzy ANP are included. Section 4 shows an empirical study of assess the project quality management by using the proposed evaluation model. Finally the discussions and conclusions are presented in Section 5. This research adopts Fuzzy ANP, for assessing the project quality management in project. We prove that all criteria influence one another and find relative importance of essential criteria of PQM. In evaluating the PQM model, experts considered "Project management plan" to be the most importantcriteria (the weight is 0.075). This shows that in the limited time and cost, program managers of organization should consider that first when they have to improve and keep the quality in project. Program managers shouldalso consider "Project Scope" because this is the second most important criterion in project quality management (Project Scope has a weight of 0.073). This study only discussed the structure of evaluation hierarchy and examination of importance of criteria. In a decision making process of project quality management, it should contain the process of alternativesevaluation. Because it is not enough time to simulate the alternatives evaluation in this study, therefore, in the future work, we will combine more evaluation method, such as TOPSIS, VIKOR, etc. to calculate performancevalue from each of dimension and criteria in project quality management. Question 2: A local dealership collects data on customers. Below are the types of cars that 206 customers are driving. Electric Vehicle Compact Hybrid Total Compact-Fuel powered Male 25 29 50 104 Female 30 27 45 102 Total 55 56 95 206 a) If we randomly select a female, what is the probability that she purchased compact-fuel powered vehicle? (Write your answer as a fraction first and then round to 3 decimal places) b) If we randomly select a customer, what is the probability that they purchased an electric vehicle? (Write your answer as a fraction first and then round to 3 decimal places) what hall voltage (in mv) is produced by a 0.160 t field applied across a 2.60 cm diameter aorta when blood velocity is 59.0 cm/s?