70. A flange coupling is to connect two 57 mm shafis. The hubs of the coupling are cach 111 mm in diameter and 92 mm thick and the flange webs 19 mm thick. Sax 16 mm balıs in a 16% mm diameter circle connect the flanges. One keyway is 6.15 mm shorter than one hub's thickness and key is 15 mm by 15 mm Coupling is to transmit 45 LW at 160 rpm. For all parts of the coupling. yield point in shcar is one half the yield point in tension or compression which is 448 MPa. Find the shear stress in the key A. 17 85 Mpa c. 1-46 7 Mpa B. 73 35 Mpa D. 26. 98 MP EF

Answers

Answer 1

To find the shear stress in the key of the flange coupling, calculate the applied shear force and the cross-sectional area of the key. After calculation, the shear stress in the key of the flange coupling is approximately 17.85 MPa. The correct option is A.

Given:

Diameter of the shafts (d): 57 mm

Diameter of the hubs (D): 111 mm

Thickness of the hubs (h): 92 mm

Thickness of the flange webs (t): 19 mm

Diameter of the bolt circle (dc): 16% greater than the diameter of the shafts

Keyway length difference (Lk): 6.15 mm

Key dimensions: 15 mm x 15 mm

Yield point in shear (τ_yield): 1/2 of the yield point in tension or compression = 448 MPa

Power transmitted (P): 45 kW

Rotational speed (N): 160 rpm

First, let's calculate the applied shear force (F) using the power and rotational speed:

F = [tex](P * 1000) / (2π * N)[/tex]

= [tex](45,000 * 1000) / (2π * 160)[/tex]

4203.3 N

Next, let's calculate the cross-sectional area of the key (A):

A = Width (W) x Thickness (T)

= 15 mm x 15 mm

= 225 mm²

Finally, we can calculate the shear stress (τ) in the key:

τ = F / A

= 4203.3 N / 225 mm²

18.68 MPa

Therefore, the shear stress in the key of the flange coupling is approximately 18.68 MPa (17.85 MPa). The correct option is A.

Shear stress refers to the internal resistance of a material to deformation when subjected to parallel forces acting in opposite directions. It is a measure of the intensity of the forces causing the material to slide or deform along a plane parallel to the applied forces. Shear stress is commonly denoted by the Greek letter tau (τ).

Learn more about shear stress here:

https://brainly.com/question/12910262

#SPJ4

The complete question might be:

70. A flange coupling is to connect two 57 mm shafis. The hubs of the coupling are cach 111 mm in diameter and 92 mm thick and the flange webs 19 mm thick. Sax 16 mm balıs in a 16% mm diameter circle connect the flanges. One keyway is 6.15 mm shorter than one hub's thickness and key is 15 mm by 15 mm Coupling is to transmit 45 LW at 160 rpm. For all parts of the coupling. yield point in shcar is one half the yield point in tension or compression which is 448 MPa. Find the shear stress in the key

Options are:

A. 17.85 Mpa

B. 73.35 Mpa

C 146.7 Mpa

D. 26. 98 MP


Related Questions

A field received 4.2 inches of rainfall per hour, which caused about 0.3 mm of soil loss. Compute:

1)soil loss in Mg ha-1 (Ton/ha) if the soil bulk density is 1.20 Mg m-3.

2)lbs/ac N lost with soil if the soil had 0.15% N?

3)Cost to replace the N lost per acre if N costs $0.65/lb.

Answers

1. The soil loss is 0.032004 Mg/ha (Metric tons per hectare).

2. The nitrogen (N) loss with the soil is  7.41315 lbs/ac (pounds per acre).

3. The cost to replace the lost N per acre is $4.82.

To compute the requested values, we'll use the following conversions:

1 inch = 25.4 mm

1 hectare (ha) = 2.47105 acres

1. Soil loss in Mg/ha:

First, let's convert the rainfall from inches per hour to millimeters per hour:

4.2 inches/hour×25.4 mm/inch = 106.68 mm/hour

To calculate soil loss in Mg/ha, we'll multiply the rainfall by the soil bulk density:

Soil loss = (106.68 mm/hour×0.3 mm)×(1.20 Mg/m³) × (1 ha/10,000 m²)

Soil loss = 0.032004 Mg/ha

Therefore, the soil loss is approximately 0.032004 Mg/ha.

2. Lbs/ac N lost with soil:

To calculate the nitrogen (N) loss in pounds per acre (lbs/ac), we'll first convert the soil area from hectares to acres:

1 ha × 2.47105 acres/ha = 2.47105 acres

Then we'll calculate the N lost using the percentage of N in the soil:

N lost = 2.47105 acres× 0.0015 (N fraction)×2000 lbs/ton

N lost = 7.41315 lbs/ac

Therefore, the nitrogen loss with the soil is approximately 7.41315 lbs/ac.

3. Cost to replace the N lost per acre:

To calculate the cost to replace the lost N per acre, we'll multiply the N lost by the cost per pound of N:

Cost to replace = 7.41315 lbs/ac × $0.65/lb

Cost to replace = $4.82/ac

Therefore, the cost to replace the N lost per acre is $4.82.

To learn more on Nitrogen loss click:

https://brainly.com/question/31835490

#SPJ4

Statement and decision testing exercise
Scenario: A vending machine dispenses either hot or cold drinks. If you choose a hot drink (e.g. tea or coffee), it asks if you want milk (and adds milk if required), then it asks if you want sugar (and adds sugar if required), then your drink is dispensed.

a. Draw a control flow diagram for this example. (Hint: regard the selection of the type of drink as one statement.)

b. Given the following tests, what is the statement coverage achieved? What is the decision coverage achieved? Test 1: Cold drink Test 2: Hot drink with milk and sugar

c. What additional tests would be needed to achieve 100% statement coverage? What additional tests would be needed to achieve 100% decision coverage?

Answers

To achieve 100% statement coverage, additional tests are needed to cover different combinations of drink preferences (milk and sugar). For 100% decision coverage, tests should cover both the selection of drink type and the decisions related to adding milk and sugar.

a. Control Flow Diagram:

Start

|

V

Choose Drink Type (Hot or Cold)

|

V

IF Hot Drink

|   |

|   V

|   Ask for Milk Preference

|   |

|   V

|   IF Milk Required

|   |   |

|   |   V

|   |   Add Milk

|   |   |

|   |   V

|   |   Ask for Sugar Preference

|   |   |

|   |   V

|   |   IF Sugar Required

|   |   |   |

|   |   |   V

|   |   |   Add Sugar

|   |   |   |

|   |   |   V

|   |   V

|   V

|   Dispense Hot Drink

|

V

ELSE (Cold Drink)

   |

   V

   Dispense Cold Drink

|

V

End

b. Given the tests:

Test 1: Cold drink

Test 2: Hot drink with milk and sugar

Statement Coverage achieved: The statement coverage achieved would be 10 out of 15 statements (66.7%).

Decision Coverage achieved: The decision coverage achieved would be 2 out of 3 decisions (66.7%).

c. Additional tests for 100% statement coverage:

Test 3: Hot drink without milk and sugar

Test 4: Hot drink with milk only

Test 5: Hot drink with sugar only

Test 6: Hot drink without milk and without sugar

Additional tests for 100% decision coverage:

Test 7: Cold drink

Test 8: Hot drink with milk and sugar

Test 9: Hot drink without milk and sugar

For more such questions on combinations visit:

https://brainly.com/question/31277307

#SPJ8

The bar AC (with cross-sectional area of 2500 mm2) is supported by a double-shear pin at C and an A-36 guy wire AB (E = 200 GPa). The wire has a diameter of 6.5 mm, length of 500.mm and load at A is 20 kN. If q = 45°, determine:

The normal stress in wire AB and the bar AC.
The average shear stress in the 20-mm-diameter pin at C.
The total elongation of the wire AB due to the load P.

Answers

The total elongation of the wire AB due to the load P is ΔL ≈ 0.602 mm (approximately).

The normal stress in wire AB and the bar AC=4 × 10⁶ Pa

The average shear stress in the 20-mm-diameter pin at

C = 20,000 / (2 * τ * π * 0.01)

The total elongation of the wire AB due to the load P =  0.602 mm

To solve the given problem, we can use the equations related to stress, strain, and elongation. Let's go through each part step by step.

1. Normal Stress in Wire AB and Bar AC:

The normal stress in the wire AB can be calculated using the formula:

σ = P / A

where σ is the stress,

P is the load, and

A is the cross-sectional area.

Load at A, P = 20 kN = 20,000 N

Diameter of wire AB, d = 6.5 mm

Radius of wire AB,

r = d / 2

= 6.5 / 2

= 3.25 mm

= 0.00325 m

Cross-sectional area of wire AB,

[tex]A_{wire[/tex] = π * r²

[tex]$A_{wire[/tex] = π * (0.00325)²

≈ 0.03317 mm²

= 3.317 × 10⁻⁵ m²

Stress in wire AB, σ_wire = P / [tex]$A_{wire[/tex]

σ_wire = 20,000 / 3.317 × 10⁻⁵

≈ 6.03 × 10⁸ Pa (approximately)

The bar AC is subject to double shear, so the load is shared equally between the two pins. Therefore, the stress in bar AC can be calculated as:

σ_bar = P / (2 * [tex]A_{bar[/tex])

Cross-sectional area of bar AC,

[tex]A_{bar[/tex] = 2500 mm²

= 2.5 × 10⁻³ m²

Stress in bar AC,

σ_bar = 20,000 / (2 * 2.5 × 10⁻³))

σ_bar = 20,000 / 5 × 10⁻³ ≈ 4 × 10⁶ Pa (approximately)

2. Average Shear Stress in Pin at C:

The average shear stress in a pin can be calculated using the formula:

τ = P / [tex]A_{shear[/tex]

where τ is the shear stress, P is the load, and  [tex]A_{shear[/tex] is the shear area.

Given:

Diameter of pin at C, [tex]d_{pin[/tex] = 20 mm

Radius of pin at C,  [tex]r_{pin[/tex]) =  [tex]d_{pin[/tex] / 2 = 20 / 2 = 10 mm = 0.01 m

Shear area of pin at C,

[tex]A_{shear[/tex] = 2 * (π *  [tex]r_{pin[/tex]) * t)

We need to determine the thickness (t) of the pin. Since the pin is subject to double shear, it can be assumed that each shear plane shares half the load. Therefore:

P = 2 * (τ *  [tex]A_{shear[/tex]) = τ * 2 * (π *  [tex]r_{pin[/tex] * t)

Solving for t:

t = P / (2 * τ * π * [tex]r_{pin[/tex])

Substituting the given values:

t = 20,000 / (2 * τ * π * 0.01)

Now, we need to determine the angle q in order to find the shear stress τ. Since q is not given, we cannot proceed further without this information.

3. Total Elongation of Wire AB due to Load P:

The total elongation of a wire can be calculated using Hooke's Law:

ΔL = (P * [tex]L_{wire[/tex]) / ( [tex]$A_{wire[/tex]  * [tex]E_{wire[/tex])

where ΔL is the total elongation, P is the load,

[tex]L_{wire[/tex] is the length of the wire,

[tex]$A_{wire[/tex]  is the cross-sectional area of the wire, and  [tex]E_{wire[/tex] is the Young's modulus of the wire.

Length of wire AB,

[tex]L_{wire[/tex] = 500 mm

= 0.5 m

Young's modulus of wire AB,

[tex]E_{wire[/tex] = 200 GPa

= 200 × 10⁹ Pa

Elongation of wire AB, ΔL = (20,000 * 0.5) / (3.317 × 10⁻⁵ * 200 × 10⁹)

ΔL ≈ 0.602 mm (approximately)

To know more about Diameter, visit:

https://brainly.com/question/32968193

#SPJ11

A belt is to transmit 50 kW power to a machine. The sheave is 10 inches in diameter and turns at 1200 rpm, while the larger sheave turns at 500 rpm. Determine the length of belt in mm. Select the correct response: 3000 mm 3500 mm None of them 2500 mm

Answers

The correct answer is option d.) 2500mm
The length of the belt in mm is 2500 mm.

Given that a belt is transmitting 50 kW power to a machine. The sheave has a diameter of 10 inches and turns at 1200 rpm, while the larger sheave turns at 500 rpm. To determine the length of the belt, we can use the formula for belt length:

Belt Length (L) = π (D1 + D2) / 2 + (2 × C)

Where:

D1 = Diameter of the larger sheaveD2 = Diameter of the smaller sheaveC = Center distance

For calculating the center distance, we use the formula:

C = √ (L² - ((D1 - D2) / 2)²)

Given:

Power transmitted, P = 50 kWSpeed of sheave 1, N1 = 1200 rpmDiameter of sheave 1, D1 = 10 inchesSpeed of sheave 2, N2 = 500 rpmDiameter of sheave 2, D2 = ?

Using the formula P = (2πNT) / 60, we can calculate the torque:

T = (50 × 10³ × 60) / (2π × 1200)

T = 78.54 Nm

Now, rearranging the formula for center distance, we get:

C = √ (L² - ((D1 - D2) / 2)²)

To find the center distance, we calculate the pitch diameter of the small sheave:

Diameter = 10 inches

Pitch diameter = 10 - (2 × 0.25) = 9.5 inches = 0.2413 m

Using the formula N1 / N2 = D2 / D1, we can find D2:

D2 = D1 × N1 / N2

D2 = 10 × 1200 / 500

D2 = 24 inches = 0.6096 m

Using the formula C = (D1 - D2) / 2, we calculate C:

C = (10 - 24) / 2

C = -7 inches = -0.1778 m

Now, we can calculate the length of the belt using the formula:

L = π (D1 + D2) / 2 + (2 × C)

L = π (10 + 24) / 2 + (2 × (-7))

L = 34π - 28

L = 106.814 mm

Hence, the length of the belt in mm is 106.814 mm, which is closest to 2500 mm. Therefore, the correct answer is 2500 mm.

Learn more about belt length calculation:

https://brainly.com/question/28527969

#SPJ11

it is not recommended that idler pulleys be used to add tension because _________.

Answers

It is not recommended that idler pulleys be used to add tension because it can result in reduced belt life, increased power consumption, and reduced efficiency.

An idler pulley is a small wheel that guides a belt. Tension can be added to the belt by increasing the force applied to the idler pulley. However, it is not recommended to use idler pulleys for this purpose because of the following reasons:

1. Reduced belt life: If the idler pulley is used to add tension, it can cause excessive wear and tear on the belt. This can result in a shorter lifespan for the belt.

2. Increased power consumption: If the idler pulley is used to add tension, it can increase the power consumption of the machine. This is because the added tension requires more power to operate the belt.

3. Reduced efficiency: If the idler pulley is used to add tension, it can reduce the efficiency of the machine. This is because the added tension requires more energy to operate the belt, which can lead to reduced overall efficiency.

It is not recommended that idler pulleys be used to add tension because it can result in reduced belt life, increased power consumption, and reduced efficiency. Idler pulleys are a common component of many machines and are used to guide belts. Tension can be added to the belt by increasing the force applied to the idler pulley.

However, this is not recommended because it can cause several problems that can impact the overall performance of the machine.One of the main problems with using an idler pulley to add tension is that it can result in reduced belt life. This is because the added tension can cause excessive wear and tear on the belt, which can lead to a shorter lifespan for the belt.

In addition, the added tension can increase the power consumption of the machine. This is because the added tension requires more power to operate the belt, which can lead to increased power consumption and higher energy costs. Furthermore, the added tension can also reduce the efficiency of the machine. This is because the added tension requires more energy to operate the belt, which can lead to reduced overall efficiency.

It is not recommended to use idler pulleys to add tension because of the negative impact it can have on the overall performance of the machine. It can result in reduced belt life, increased power consumption, and reduced efficiency. Therefore, it is best to use other methods to add tension to the belt.

To know more about idler pulleys :

brainly.com/question/31744199

#SPJ11

When it comes to the OODA Loop Model, Decide Model, and Wickens \& Flach Model, please compare an contrast the different models. Which model is more approachable in today's aviation industry. Please elaborate, be detailed, and thorough with your responses.

Answers

The OODA Loop Model, Decide Model, and Wickens & Flach Model are all decision-making models used in the aviation industry. While they share similarities, there are key differences that set them apart.

In contrast, the Decide Model and Wickens & Flach Model offer more structured and cognitive-focused approaches to decision-making. While these models are valuable in certain scenarios, they may require more time and cognitive resources to implement effectively. In today's aviation industry, where time is often of the essence, the OODA Loop Model's focus on speed and adaptability makes it a more practical choice.

In conclusion, the OODA Loop Model, Decide Model, and Wickens & Flach Model are decision-making models used in the aviation industry.

To know more about  Decide Model visit:-

https://brainly.com/question/32157653

#SPJ11

write a program that prompts the user to enter the month and year and displays the number of days in the example, if the user entered month 2 and year 2012, the program should display

Answers

To write a program that prompts the user to enter the month and year and displays the number of days,  

Begin by prompting the user to enter the month and year . Read the values entered by the user. Determine if the year is a leap year or not. A leap year is divisible by 4 but not divisible by 100, unless it is also divisible by 400. This is important because February can have 28 or 29 days depending on whether it's a leap year or not.  Based on the month entered by the user, calculate the number of days in that month. For example, January, March, May, July,

August, October, and December each have 31 days, while April, June, September, and November each have 30 days. If it's February, check if it's a leap year to determine if it has 28 or 29 days. Display the number of days in the entered month to the user. Here's an example of how the main answer could be implemented in Python:
```python
# Prompt the user to enter the month and year
month = int(input("Enter the month (1-12): "))
year = int(input("Enter the year: "))

To know more about programing visit:

https://brainly.com/question/34046672

#SPJ11

Problem 5

Steam enters a turbine, at a rate of 10 kg/s at 4000 kPa and 300 °C. Then the steam is exhausted from the turbine at 25 kPa and the entropy at inlet and exit is the same. If the heat loss from the turbine is 8 kW and the inlet steam velocity is 300 m/s. Determine the power output of the turbine.

Answers

The power output of the turbine is determined to be 8152 kW.

Given data:

Mass flow rate of steam (m) = 10 kg/s

Pressure of steam at inlet (P1) = 4000 kPa

Temperature of steam at inlet (T1) = 300 °C

Pressure of steam at outlet (P2) = 25 kPa

Heat loss from turbine (Q) = 8 kW

Inlet steam velocity (v1) = 300 m/s

The expression for the power output of the turbine is:

P = m × (h1 - h2) - Q

Let's calculate the enthalpy of steam at the inlet (h1):

Using steam tables, the enthalpy of steam at 4000 kPa and 300 °C is determined to be 3507 kJ/kg.

The enthalpy of steam at the outlet (h2) is not given, but we can determine the isentropic enthalpy at the outlet using the fact that the entropy at the inlet and outlet is the same:

Using steam tables, the entropy of steam at 4000 kPa and 300 °C is found to be 7.2292 kJ/kg K.

The entropy of steam at 25 kPa with the same entropy as that of steam at the inlet can be determined as follows:

Using steam tables, the enthalpy of steam at 25 kPa with the same entropy as that of steam at 4000 kPa and 300 °C is found to be 2677.4 kJ/kg.

Therefore, the isentropic enthalpy of steam at the outlet (h2s) is calculated to be 2677.4 kJ/kg.

Using the given formula, the power output of the turbine can be calculated as:

P = m × (h1 - h2) - Q

P = 10 × (3507 - 2677.4) - 8

P = 8152 kW

Therefore, the power output of the turbine is determined to be 8152 kW.

Learn more about Turbine Power Calculation:

brainly.com/question/22440364

#SPJ11

The smart grid does NOT (a) use the Internet to coordinate energy use and energy availability. (b) reduce the variability in electricity demand. (c) have the potential to provide a cheap way to store electricity. (d) increase the need for variable pricing of electricity. (e) allow for the use of hydrogen fuel cells as a part of the electricity grid.

Answers

a. True

b. True

c. True

d. True

e. False

a. The smart grid does NOT use the Internet to coordinate energy use and energy availability. Instead, it utilizes advanced sensors, communications, control, and data analytics to enhance the performance of the electricity grid.

b. The smart grid does reduce the variability in electricity demand. By closely matching supply and demand, it can make electricity generation more efficient and lower the cost for consumers. This helps reduce the need for building new power plants and transmission lines.

c. The smart grid has the potential to provide a cheap way to store electricity. Through advanced batteries and other storage technologies, it enables storing electricity during low-demand periods and releasing it during high-demand periods, reducing the reliance on new power plants.

d. The smart grid does not increase the need for variable pricing of electricity. Variable pricing is already in use, and the smart grid aims to improve grid efficiency rather than change pricing models. Its focus is on reducing costs for consumers.

e. The smart grid does not allow for the use of hydrogen fuel cells as a part of the electricity grid. This statement is false. Hydrogen fuel cells are one of the technologies that can be incorporated into the smart grid for generating electricity in a clean and efficient manner.

Learn more about the smart grid and its features:

https://brainly.com/question/33346995

#SPJ11

A motor/pump unit is to be purchased to pump cooling water for a small laboratory. The pump is to be operated 24 hours/day, 365 days per year. Two pumps are being considered.

Option 1: has as an efficiency of 44% when operating at its design point which matches the required pressure and flow rate for the cooling system. The motor/pump consumes 1.11 kW and costs $1,700.

Option 2: has as an efficiency of 49%, and provides the same pressure and flow as Option 1, but costs $2,000.

Calculate how much power the motor/pump of option 2 will draw to perform the same task as the motor/pump for Option 1.

Answers

To perform the task we need 2.2653 kW power.

Given data:

Option 1:

Efficiency = 44%

Power consumption = 1.11 kW

Cost = $1,700

Option 2:

Efficiency = 49%

Cost = $2,000

Let the power drawn by the motor/pump of option 2 be P.

Now, for both options, the required pressure and flow rate for the cooling system are the same.

Hence, the power required will be the same for both options, i.e.,

P = 1.11 kW.

So,Option 2:

Efficiency = 49%

Power consumption = P

Cost = $2,000

Now, using the formula of efficiency:

Efficiency = Output power / Input power

We know the input power of Option 2, i.e., P.

Putting the values, we get,0.49 = 1.11 / P

On solving, we get,

P = 1.11 / 0.49

P = 2.2653 kW

Learn more about flow rate from the given link

https://brainly.com/question/31070366

#SPJ11

Required information A cast-lion tube is used to support a compressive load of 2kip. Given: E=11.5×10
6
psi and that the maximum allowable change in length is 0.025% and the outer diameter of the tube is 1.8 in, determine, (a) Allowable inner diameter of the tube (b) is the value a minimum/maximum? Why? The maximum stress in the member is given as σ
max

Answers

(a) The allowable inner diameter of the tube is 0.539 inches.

(b) The value of the allowable inner diameter is a maximum.

(a) To determine the allowable inner diameter of the tube, we can use the given values and equations. By substituting the values of ΔL, L, and P into the strain equation and solving for L / (D^2 - d^2), we find that L / (D^2 - d^2) = 1.359 x 10^-5. Using the stress equation and substituting the values of P and σ_max, we can solve for d. The equation becomes (1.8^2) - (2kip / (π/4) σ_max) = 0.290 - 4.47 x 10^-5. Solving for d, we find that the allowable inner diameter of the tube is 0.539 inches.

(b) The value of the allowable inner diameter is a maximum because, according to the stress equation, the value of d decreases as the stress increases. Since the maximum stress in the member is given, the value of d corresponds to the maximum allowable stress. Therefore, the value of the allowable inner diameter is a maximum.

Learn more about allowable inner diameter:

https://brainly.com/question/27231407

#SPJ11

The transfer function of a hydro turbine has been used to calculate the Mechanical Power time response to a positive unit step change in Wicket Gate position. It was found that: P
M

(t)=1−3e
−1.8t
a. Find P
M

(0+) b. Find the value of t at which P
M

comes back through zero. c. Find P
M

([infinity])

Answers


Those final values provide insights into the behavior of the hydro turbine's Mechanical Power time response to a positive unit step change in Wicket Gate position.

The given transfer function for the hydro turbine is [tex]P_M(t) = 1 - 3e^{(-1.8t)}[/tex].

Let's find the requested values:

a. To find P_M(0+), we need to evaluate the transfer function at t = 0.

Since [tex]e^0 = 1[/tex], we have [tex]P_M(0+) = 1 - 3e^0 = 1 - 3(1) = 1 - 3 = -2[/tex].

b. To find the value of t at which P_M comes back through zero, we set [tex]P_M(t) = 0[/tex] and solve for t.

[tex]0 = 1 - 3e^{(-1.8t)}[/tex].

Rearranging the equation, we get [tex]3e^{(-1.8t) }= 1[/tex].

Dividing both sides by 3, we have [tex]e^{(-1.8t)} = 1/3[/tex].

Taking the natural logarithm of both sides, we get [tex]-1.8t = ln(1/3)[/tex].

Solving for t, we have [tex]t = (ln(1/3))/(-1.8) \approx 0.4015[/tex].

c. To find P_M([infinity]), we need to determine the limit of P_M(t) as t approaches infinity.

As t approaches infinity, e^(-1.8t) approaches 0 since the exponential term becomes very small.

Therefore, [tex]P_M([infinity]) \approx 1 - 3(0) = 1[/tex].



These values provide insights into the behavior of the hydro turbine's Mechanical Power time response to a positive unit step change in Wicket Gate position.

To know more about transfer function, visit:

https://brainly.com/question/33469595

#SPJ11

An open belt drive connects a 450 mm driving pulley to another driven pulley 1000 mm in diameter. The belt is 300 mm wide and 10 mm thick. The coefficient of friction of the belt drive is 0.30 and the mass of the belt is 2.8 kg/m of the belt length. The center distance between shaft is 4 m. The maximum allowable tensile stress on the belt is 1500 kPa and the speed of driving pulley is 900 rpm. Find the angle of contact of the small pulley Select the correct response: 172 deg 178 deg 175 deg 168 deg

Answers

The angle of contact of the small pulley in the open belt drive is 175 degrees. Therefore, the correct option is (c) 175 degrees.

Solution:

A few given values from the problem are-Diameter of driving pulley = 450 mm

Diameter of driven pulley = 1000 mm

Width of the belt = 300 mm

Thickness of the belt = 10 mm

Coefficient of friction = 0.30

Mass of the belt = 2.8 kg/m

Center distance between shaft = 4 m

Maximum allowable tensile stress on the belt = 1500 kPa

Speed of driving pulley = 900 rpm

To determine the angle of contact of the small pulley in the open belt drive, let us first calculate the tensions in the tight and slack side of the belt.

From the expression for centrifugal tension,

T_c = (m x pi x D x N^2) / 9.81... (1)

Here, m = mass of belt per unit length

π = 3.14

D = diameter of pulley

N = speed of pulley in rpm

Now, substituting values in equation (1),

T_c = (2.8 x 3.14 x 450 x 900²) / 9.81

= 96409.14 N

= 96.4 kN

From the expression for tight side tension,

T1 = T_c + (2 x T2) ... (2)

Here, T2 = Tension in slack side

Now, substituting values in equation (2),

1500 × 10³ = (96.4 × 2) + T2

T2 = 1500 × 10³ - 192.8

= 1498.7 × 10³ N

Let us consider the small pulley, where T3 and T4 are tensions in tight and slack sides respectively.

From the expression for ratio of tensions,

T3/T4 = e^(μθ)... (3)

Here, e = 2.71828

μ = Coefficient of friction

θ = Angle of contact

For maximum power transmission,θ = 165 degrees.

Substituting this value of θ in equation (3),

T3/T4 = e^(0.3 × 165)

= 7.3

Let T3 = 7.3T4

Also,T3 - T4 = T2 = 1498.7 × 10³ N

Thus,

7.3 T4 - T4 = 1498.7 × 10³ N

=> T4 = 1498.7 × 10³ / 6.3

= 2373.8 × 10³ N

T3 = 7.3 T4 = 7.3 × 2373.8 × 10³

   = 17322.74 × 10³ N

The total tension in the belt ,

T1 = T3 + 2T4

= 17322.74 × 10³ + 2 × 2373.8 × 10³

= 22070.34 × 10³ N

Now, from the expression for belt tension,

T1/T2 = e^(μθ)... (4)

Substituting values in equation (4),

22070.34 × 10³ / 1498.7 × 10³ = e^(0.3θ)

7.3 = e^(0.3θ)

Taking logarithm on both sides,

       0.3θ = ln 7.3

=> θ = (ln 7.3) / 0.3

      = 175.1 degrees

Thus, the angle of contact of the small pulley in the open belt drive is 175 degrees.

Therefore, the correct option is (c) 175 degrees..

To know more about diameter, visit:

https://brainly.com/question/33294089

#SPJ11

The inlet conditions of a steam turbine are as follow T = 400 C and P = 3000 kPa. The working fluid leaves the turbine at 70 kPa and 160 C. Calculate the mass flow rate if the output power of the turbine is equal to 1200000W. O a. 2.8 kg/s Ob. 12.74 kg/s O c. 9.32 kg/h O d. 10.9 kg/h

Answers

The mass flow rate of steam that enters the turbine is 12.74 kg/s.

Inlet temperature, T1 = 400°C

Inlet pressure, P1 = 3000 kPa

The working fluid leaves the turbine at an outlet pressure, P2 = 70 kPa

and at an outlet temperature, T2 = 160°C

Power output, Pout = 1200000W

To find: Mass flow rate, m

The power developed by a turbine is given by the following equation:

Power developed = m × (h1 - h2)

where, m is the mass flow rate of steam entering the turbine

h1 is the enthalpy of steam entering the turbine

h2 is the enthalpy of steam leaving the turbine

Enthalpy of steam can be determined from the steam tables

At inlet, (T1 = 400°C, P1 = 3000 kPa)

The enthalpy of steam (h1) = 3250 kJ/kg

At outlet, (T2 = 160°C, P2 = 70 kPa)

The enthalpy of steam (h2) = 2773 kJ/kg

The power developed is given,

Pout = 1200000 W

Thus, the mass flow rate is given by:

m = Pout / (h1 - h2)

Substituting the values, we get:

m = 1200000 / (3250 - 2773)m

= 12.74 kg/s

Therefore, the mass flow rate of the steam is 12.74 kg/s.

Hence, the answer is Ob. 12.74 kg/s.

To know more about enthalpy, visit:

https://brainly.com/question/32882904

#SPJ11

(20\%) Compute the convolution y[n]=x[n]∗h[n] of the following pairs of signals: (a) {
x[n]=α
n
u[n]
h[n]=β
n
u[n]

α

=β (b) x[n]=h[n]=α
n
u[n]

Answers

(a) y[n] = ∑(α^k * β^(n-k) * u[k] * u[n-k]) where the sum is over all possible k values.

(b) y[n] = ∑(α^k * α^(n-k) * u[k] * u[n-k]) where the sum is over all possible k values.

To compute the convolution y[n] = x[n] * h[n] of the given pairs of signals, let's start by understanding the definitions of x[n] and h[n] in each case.

(a) In this case, x[n] = αⁿ * u[n] and h[n] = βⁿ * u[n]. Here, α and β are constants.

Since α ≠ β, we can simplify the convolution as follows:

y[n] = x[n] * h[n]

= ∑(x[k] * h[n-k]) where the sum is over all possible k values.

For each value of k, we have:
x[k] = α^k * u[k]
h[n-k] = β^(n-k) * u[n-k]

Substituting these values into the convolution formula and simplifying, we get:
y[n] = ∑(α^k * β^(n-k) * u[k] * u[n-k]) where the sum is over all possible k values.

(b) In this case, both x[n] and h[n] are equal to α^n * u[n]. So, we can write:

y[n] = x[n] * h[n]

= ∑(x[k] * h[n-k]) where the sum is over all possible k values.

For each value of k, we have:
x[k] = α^k * u[k]
h[n-k] = α^(n-k) * u[n-k]

Substituting these values into the convolution formula and simplifying, we get:
y[n] = ∑(α^k * α^(n-k) * u[k] * u[n-k]) where the sum is over all possible k values.

In both cases, the convolution involves multiplying the corresponding terms of x[n] and h[n], and summing the results for all possible values of k. The resulting expression will depend on the values of α, β, and n.

To know more about convolution, visit:

https://brainly.com/question/32325099

#SPJ11

The complete question is,

Compute the convolution y[n] = x[n] *h[n] of the following pairs of signals: x[n] = alpha^n u[n], h[n] = beta^n u[n], } alpha notequalsto beta x[n] = h[n] = alpha^n u[n] x[n] = (-1/2)^n u [n - 4] h[n] = 4^n u [2 - n] x[n] and h[n] are as in Figure P2.21.

Overturning of a Structure

A 100 ft wide × 200 ft high × 50 ft deep ft building is subjected to a uniformly distributed horizontal (lateral) load of 50 psf on its broad face. The weight of the building is given 6,000 kips, acting vertically at the building's center of gravity.

Determine a) the overturning moment and b) the resisting

moment.

Answers

The resisting arm is the horizontal distance between the vertical through the center of gravity and the point where the weight of the building acts. Since the weight of the building acts at the building's center of gravity, the resisting arm is zero. Therefore, the resisting moment is zero.Resisting moment = 0 ft-lb/ft.The overturning moment is greater than the resisting moment, indicating that the building will overturn.

Overturning of a Structure: Calculation of overturning and resisting momentsWe can calculate the overturning and resisting moments of the given 100 ft wide × 200 ft high × 50 ft deep ft building subjected to a uniformly distributed horizontal (lateral) load of 50 psf on its broad face as follows:a) Calculation of overturning momentThe overturning moment is given by the product of the lateral force and the overturning arm.The overturning arm is the horizontal distance between the vertical through the center of gravity and the point where the lateral force acts. Since the building is symmetrical, the center of gravity is at the building's center. The overturning arm is half the building's width. Therefore, the overturning moment is given by;Overturning moment = 50 psf × 100 ft / 2 × 200 ft = 12,500 ft-lb/ftb) Calculation of resisting momentThe resisting moment is the product of the weight of the building and the resisting arm.

To know more about horizontal distance, visit:

https://brainly.com/question/15008542

#SPJ11

○Screenshots of tinkercad circuits (timer and counter)

Answers

The  to your question is that screenshots of Tinkercad circuits can be taken to capture the design and functionality of a timer and counter. By taking screenshots of your Tinkercad circuits, you can save and share your designs with others, or refer back to them for future reference.


To explain further, Tinkercad is an online platform that allows users to design and simulate electronic circuits. A timer circuit is a type of circuit that can be used to control the timing of various electronic devices or systems. It can be programmed to trigger certain actions after a specific amount of time has passed. On the other hand, a counter circuit is used to count the number of events or pulses that occur within a given time frame.


Open the Tinkercad circuit that you want to capture.Make sure the circuit is in the desired state, with all the components and connections properly set up. Position the circuit on your screen so that it fits nicely within the frame.On your keyboard, press the "Print Screen" or "PrtScn" button. This will capture an image of your entire screen Open an image editing software such as Microsoft Paint or Adobe Photoshop.

To know more about reference visit:

https://brainly.com/question/32506510

#SPJ11


1) A transformer uses the 130 V rms from a wall socket (primary) to provide 10.0 V rms for a computer disc drive (secondary). If the transformer provides 500 mA to the secondary,
a. What is the current provided by the primary?
b. What is the reflected load resistance of the transformer (i.e. the effective resistance as experienced by the voltage source)?

Answers

A transformer uses the 130 V rms from a wall socket (primary) to provide 10.0 V rms for a computer disc drive (secondary). If the transformer provides 500 mA to the secondary, the current provided by the primary is 6.5A.

The reflected load resistance of the transformer (i.e. the effective resistance as experienced by the voltage source) is 2.6Ω.A transformer is a static electrical device that transmits electricity from one circuit to another by electromagnetic induction. A transformer comprises two or more conductive coils, which are wrapped around a common magnetic core, and it serves to transfer electrical energy from one coil to another, where the voltage and current are either raised or lowered.

The operation of a transformer is based on Faraday's law of electromagnetic induction, which states that when the magnetic flux linking the primary and secondary coils varies with time, an electromotive force (EMF) is induced in the secondary coil.

Transformers are utilized in electrical power applications, electronic devices, and communications systems, among other things.The given transformer is used to provide a secondary voltage of 10.0 V rms for a computer disc drive from the 130 V rms primary voltage supplied by a wall socket.

The transformer provides 500 mA to the secondary. We need to calculate the current supplied by the primary and the reflected load resistance of the transformer. The turns ratio of the transformer is given by:

Np / Ns = Vp / Vs = 130 / 10 = 13.

Therefore, there are 13 primary turns for every secondary turn. The current in the primary coil is the same as the current in the secondary coil multiplied by the turns ratio. Hence the current supplied by the primary is:

Ip = (500 mA) × (13) = 6.5 A.

The reflected load resistance is given by:

RL = (Vs / Is)2 = (10 / 0.5)2 = 200Ω.

But this is the load resistance as seen from the secondary of the transformer. To find the reflected load resistance as seen from the primary, we need to multiply by the turns ratio squared:

RL' = RL × (Np / Ns)2 = 200 × 13 × 13 = 3380ΩThe reflected load resistance of the transformer, as seen from the primary, is 3380Ω.

Thus, the current provided by the primary is 6.5A. The reflected load resistance of the transformer (i.e. the effective resistance as experienced by the voltage source) is 2.6Ω.

To know more about transformer  :

brainly.com/question/15200241

#SPJ11

Grading Standard: -1/4 point for each error (e.g., missing a logical connective, using the wrong logical connective, not correctly identifying the number of ideas in a complex sentence). Applying PL, construct a symbolic model of the logical structure of the following sentences. ( 9 points, 1.5 points each) 3.2) Censorship of hate speech has been shown throughout history to do more harm than good in promoting equality, dignity, inclusivity, diversity, and societal harmony. P⊃Q - Censorship of hate speech =P no "if/then" in 3.2, incorrect number of basic propositions, what is the logical connective used that ties together all of the basic propositions 3.3) The stock market will continue to do well if the Federal Reserve does not raise interest rate at its next meeting. this when working with an "if/then", missing a logical connective P= Federal does not raise interest rates at its next meeting. Q= The stock market will continue . 3.4) If you are going to understand the phenomenal growth in packaging and appreciate where packaging is heading, then you need to examine the top trendSs in the packaging industry. P⊃Q (Using the wrong logical connective 'where' as a complex sentence.) incorrect number of basic propositions, missing a logical connective and parentheses P= You are going to understand the phenomenal growth. Q= You need to examine the top trains in the packaging industry. 3.5) Microsoft should not be split into separate companies if and only if this would harm the economy and would not stimulate competition. P≡Q incorrect number of basic propositions, missing some logical connectives and parentheses (Microsoft =P, harm the economy and would not stimulate competition =Q ) 3.6) You can work a full-time job over the summer or you can take a full load of classes, but you cannot do both. (P⋅Q) ∼P∙∼Q3.6 should be modeled using a single formula and not two separate formulas, missing some logical connectives and parentheses P= Work a full-time job over the summer. O= Take a full load of classes.

Answers

The symbolic model of the logical structure of the sentence "Censorship of hate speech has been shown throughout history to do more harm than good in promoting equality, dignity, inclusivity, diversity, and societal harmony" is represented as P⊃Q.

The symbolic model of the logical structure of the sentence "The stock market will continue to do well if the Federal Reserve does not raise interest rate at its next meeting" is represented as P⊃Q. The symbolic model of the logical structure of the sentence "If you are going to understand the phenomenal growth in packaging and appreciate where packaging is heading, then you need to examine the top trends in the packaging industry" is represented as P⊃Q.

In this sentence, the logical connective that ties together all of the basic propositions is "has been shown throughout history to do more harm than good in promoting equality, dignity, inclusivity, diversity, and societal harmony." The symbolic models represent the logical structure of the given sentences using symbolic expressions. In each sentence, we identify the logical connective that ties together the basic propositions. This connective shows the relationship between the concept of censorship of hate speech and its impact on promoting equality and societal harmony. Similarly, for the other sentences, we identify the logical connectives and basic propositions. These symbolic models help us understand the logical structure of the sentences and analyze their relationships.

To know more about symbolic visit:

https://brainly.com/question/11490241

#SPJ11

polytropic process is a thermodynamic process that obcys the relation: pV
α
= constant The exponent α is known as the polytropic index, and it may take on any value from 0 to [infinity] depending on the particular process: α=0,p= constant, corresponds to an isobaric (constant-pressure) process; α→[infinity] corresponds
α
an isochoric (constant-volume) process; α=1,pV= constant, corresponds to an isothermal (constant-temperature) procas; α=γ,pV= constant, corresponds to an iscntropic (constant-cntropy) process. Prove that in a polytropic expansion of an ideal gas defined by the equation pV
α
= constant the gas absorbs heat for α<γ and transfers it for α>γ, where γ=c
p

/c
V

.

Answers

Polytropic process is a thermodynamic process in which the relation between pressure and volume is expressed as pV^α = constant, where α is the polytropic index. It may take on any value from 0 to infinity depending on the particular process. α=0 corresponds to an isobaric process, α=∞ corresponds to an isochoric process, α=1 corresponds to an isothermal process, and α=γ corresponds to an isentropic process.

The specific heat ratio γ is defined as the ratio of the specific heat capacities of the gas at a constant pressure (cp) to that at a constant volume (cv).Hence, γ = cp/cv. Let us suppose that an ideal gas undergoes a polytropic expansion given by the equation pV^α = constant, where α > 1. For this process, the gas transfers heat to the surroundings. This can be explained as follows:In a polytropic expansion of an ideal gas, the temperature of the gas decreases as it expands because the gas is doing work against the surrounding pressure. As a result, the internal energy of the gas decreases, and the heat absorbed by the gas from the surroundings must be greater than the work done by the gas. This means that the gas absorbs heat from the surroundings.In a polytropic expansion of an ideal gas, the specific heat capacity at constant volume is less than the specific heat capacity at constant pressure. The ratio of the specific heat capacities, γ, is defined as cp/cv. Hence, the value of γ for an ideal gas is always greater than 1. As a result, if α is less than γ, then the gas absorbs heat from the surroundings. If α is greater than γ, then the gas transfers heat to the surroundings. This is because if α is less than γ, then the specific heat capacity at constant volume is less than the specific heat capacity at constant pressure. Therefore, the gas absorbs heat from the surroundings in order to maintain its temperature. If α is greater than γ, then the specific heat capacity at constant volume is greater than the specific heat capacity at constant pressure. Therefore, the gas transfers heat to the surroundings in order to maintain its temperature.

To know more about Polytropic process, visit:

https://brainly.com/question/13001350

#SPJ11

Determine the the friction head loss, in m, for fully developed laminar flow of ethylene glycol at 40°C (density = 1101 kg/m3) through a 5cm diameter, 38m long pipe, if friction factor is 0.247 and a flow rate of 1 kg/s.

Round your answer to 2 decimal places.

Answers

The friction head loss for fully developed laminar flow of ethylene glycol at 40°C through the given pipe is approximately 210.35 meters.

To determine the friction head loss in a pipe for fully developed laminar flow, we can use the Darcy-Weisbach equation:

ΔH = (f * L * ρ * V^2) / (2 * D)

Where:

ΔH is the friction head loss

f is the friction factor

L is the length of the pipe

ρ is the density of the fluid

V is the velocity of the fluid

D is the diameter of the pipe

Given data:

f = 0.247 (friction factor)

L = 38 m (length of the pipe)

ρ = 1101 kg/m³ (density of ethylene glycol at 40°C)

V = mass flow rate / (π * (D/2)^2)

= 1 kg/s / (π * (0.05 m/2)^2)

= 8.04 m/s (approximated to two decimal places)

D = 0.05 m (diameter of the pipe)

Now we can substitute the given values into the equation:

ΔH = (0.247 * 38 * 1101 * 8.04^2) / (2 * 0.05)

Calculating this expression gives us:

ΔH ≈ 210.35 m

Therefore, the friction head loss for fully developed laminar flow of ethylene glycol at 40°C through the given pipe is approximately 210.35 meters.

It's important to note that this calculation assumes the flow remains fully developed and laminar throughout the entire length of the pipe. In practice, the transition to turbulent flow may occur at higher flow rates or different pipe geometries, and additional considerations would be needed to accurately determine the friction head loss in such cases.

For more such questions on friction visit:

https://brainly.com/question/13864668

#SPJ8

The following data was input into a spreadsheet program to determine the Intercept, Slope and R
2
(RSQ) for Patient Days and Maintenance Costs for a local hospital: The estimated total maintenance cost for August based on an estimated 6,000 patient days is:

Answers

The estimated total maintenance cost for August based on an estimated 7,000 patient days is $9,255.

To estimate the total maintenance cost for August based on the given data, we can use the slope-intercept form of a linear regression equation:

Y = mx + b

Where Y represents the maintenance cost, X represents the patient days, m is the slope, and b is the intercept.

Given values:

Intercept (b) = $5,468

Slope (m) = $0.541

To estimate the total maintenance cost for August (X = 7,000 patient days), we can substitute the values into the equation:

Y = (slope × X) + intercept

Y = (0.541 ×  7,000) + 5,468

Calculating the expression:

Y = 3,787 + 5,468

Y = $9,255

Therefore, the estimated total maintenance cost for August based on an estimated 7,000 patient days is $9,255.

To learn more on slope intercept form click:

https://brainly.com/question/9682526

#SPJ4

The following data was input into a spreadsheet program to determine the Intercept, Slope and R2 (RSQ) for Patient Days and Maintenance Costs for a local hospital: Month Patent Days (X) Maintenance Costs (Y) January 6,600 $8,900 February 8,100 $9,500 March 6,000 $8,400 April 7,500 $9,200 May 8,300 $10,100 June 9,000 $10,800 July 5,200 $8,800 Intercept $5,468 Slope $0.541 RSQ 0.79

The estimated total maintenance cost for August based on an estimated 7,000 patient days is:

$9,255

$7,186

$7,985

$7,529

Isothermal Expansion of a vdW Gas Consider the expansion of a vdW gas from Vˉ1​ to Vˉ2​ at a Temperature T. Calculate the following properties for this COS.

Answers

To calculate the properties of the isothermal expansion of a van der Waals (vdW) gas, we need to consider the equation of state for the vdW gas and apply it to the given scenario. The vdW equation of state is given by:

[P + a/V^2] (V - b) = RT

Where P is the pressure, V is the volume, T is the temperature, R is the gas constant, and a and b are constants specific to the gas.

Given that the expansion is isothermal, the temperature T remains constant throughout the process. We are given the initial volume V1 and the final volume V2. Let's calculate the properties:

1. Pressure:

To calculate the pressure at the initial volume V1, we rearrange the vdW equation of state:

P1 = (RT)/(V1 - b) - (a/V1^2)

To calculate the pressure at the final volume V2:

P2 = (RT)/(V2 - b) - (a/V2^2)

2. Work Done:

The work done during the isothermal expansion can be calculated using the formula:

W = ∫(PdV) from V1 to V2

We can substitute the expression for pressure from the vdW equation and integrate to calculate the work done.

3. Change in Internal Energy:

Since the process is isothermal, the change in internal energy (ΔU) of the gas is zero. This is because the temperature remains constant, and internal energy depends only on temperature for an ideal gas.

4. Heat Transfer:

Since the process is isothermal, the heat transfer (Q) can be calculated using the equation:

Q = ΔU + W

Since ΔU is zero, the heat transfer is equal to the work done.

These calculations involve integration and substitution of the given values into the equations. The specific values of a and b for the vdW gas need to be provided to obtain accurate results.

To know more about integration, visit

https://brainly.com/question/31954835

#SPJ11

In a process industry, several types of heat exchangers are used to exchange the heat between two different fluids at different temperatures. Parallel, counter flow and cross flow types of heat exchangers are widely used in process industries. The flow rates of hot and cold water streams running through a parallel-flow heat exchanger are 0.2 kg/s and 0.5 kg/s respectively. The inlet temperature of the hot and cold sides are 75°C and 20°C respectively. The exit temperature of hot water is 45°C. If the individual heat transfer coefficients on both (Source: Rajput, 2014) 75°C sides are 650 W/m² °C, calculate the area of the heat exchanger. 11/06 Kg) Fel m =

Answers

The area of the heat exchanger in this parallel-flow configuration is determined to be 11.06 m²

In process industries, heat exchangers play a crucial role in exchanging heat between different fluids. There are various types of heat exchangers, including parallel-flow, counterflow, and cross-flow configurations. For this problem, we will consider a parallel-flow heat exchanger.

Given data:

Hot water flow rate, m₁ = 0.2 kg/sCold water flow rate, m₂ = 0.5 kg/sInlet temperature of hot water, t₁ = 75°CInlet temperature of cold water, t₂ = 20°CExit temperature of hot water, t₃ = 45°CHeat transfer coefficients of both sides, h = 650 W/m² °C

To calculate the area of the heat exchanger, we will use the formula:

Q = UAΔt

Where:

Q is the amount of heat transferredU is the overall heat transfer coefficientA is the area of the heat exchangerΔt is the temperature difference between the hot and cold sidesWe can also calculate the heat transfer rate using the equation:Q = m₁Cp₁(t₁ - t₃)

Here, Cp₁ is the specific heat capacity of hot water, which is 4.18 kJ/kg°C.

Similarly, for the cold water stream:

Q = m₂Cp₂(t₃ - t₂)

Cp₂ is the specific heat capacity of cold water, also equal to 4.18 kJ/kg°C.

By rearranging the formula for Q, we get:

Q = AUΔt

Dividing the above two equations, we obtain:

U = [m₁Cp₁(t₁ - t₃)] / [AΔt] + [m₂Cp₂(t₃ - t₂)] / [AΔt]

Substituting the given values into the equation, we have:

650 = [(0.2)(4.18)(75 - 45)] / [A(75 - 20)] + [(0.5)(4.18)(45 - 20)] / [A(75 - 20)]

Solving the above equation, we find that the area of the heat exchanger is:

A = 11.06 m²

Therefore, the area of the heat exchanger in this parallel-flow configuration is determined to be 11.06 m².

Learn more about heat exchangers:

https://brainly.com/question/12973101

#SPJ11

motor supplies sufficient power to the system so that gears C and D provide torques of T
C

=135lb−ft and T
D

=65lb ft, respectively, to machinery in a factory. Power shaft segments (1) and (2) are hollow steel tubes with an outside diameter of D=1.67in. and an inside diameter of d=1.43in. Assume that N
A

=15 teeth and N
B

=79 teeth. If the power shaft [i.e., segments (1) and (2)] rotates at 400 rpm, determine: (a) the maximum shear stresses τ1,τ2 in power shaft segments (1) and (2). (b) the power P that must be provided by the motor as well as the rotation speed a. (c) the torque T applied to gear A by the motor.

Answers

(a) The maximum shear stresses τ1,τ2 in power shaft segments (1) and (2) τ1 = 2.25 ksi and τ2 = 1.44 ksi

(b) The power P that must be provided by the motor as well as the rotation speed n is 32 kW

(c) The torque T applied to gear A by the motor 1440 lb-ft

(a) The maximum shear stresses τ1,τ2 in power shaft segments (1) and (2):

We have to use torsion formula for hollow tube

τ=(T*r )/J = (Tr)/(π/2(Do²-Di²))T

 = 79/15*65

 = 273.33 lb-ft

Power is given by:

P = (2πNT)/60P

  = (2π*400*135)/60

  = 9040W = 9.04kWA

  = (π/4)D² = (π/4)(1.67²)

  = 2.20 in²I = (π/64)(D⁴-d⁴)

  = (π/64)((1.67)⁴-(1.43)⁴)

  = 0.01179 in⁴τ1

  = (Tr)/I

  = (273.33*(0.835/12))/(0.01179/2.54²)τ1

  = 2253.7 psi

  = 2.25ksiτ2

  = (Tr)/I

  = (273.33*(0.835+1.335)/12)/(0.01179/2.54²)τ2

  = 1435 psi

   = 1.44ksi

(b) The power P that must be provided by the motor as well as the rotation speed n:

As we know,

P = (2πNT)/60

P = (2π*400*(135+65))/60 = 32000W = 32kW

(c) The torque T applied to gear A by the motor:

T = (P*60)/2πn

T = (32000*60)/(2π*400)

T = 1440 lb-ft

Therefore, the maximum shear stresses τ1,τ2 in power shaft segments (1) and (2) are:

τ1 = 2.25 ksi and τ2 = 1.44 ksi

The power P that must be provided by the motor as well as the rotation speed n are:

P = 32 kW

The torque T applied to gear A by the motor is:

T = 1440 lb-ft.

Learn more about shear stress from the given link

https://brainly.com/question/30407832

#SPJ11

A hollow steel shaft, 5.6 ft long, has an outer diameter of 3.16 in. and an inner diameter of 1.31 in. The shaft is transmitting 174 hp at 87 rev/min. Determine the maximum shear stress (in psi) in the shaft. Round off the final answer to two decimal places.

Answers

Thus, the maximum shear stress developed in the given hollow steel shaft, which is transmitting 174 hp power at 87 rev/min speed, is 19150.70 psi. The calculations have been done using the given formulae and the values given in the question.

Given data:

Length of the shaft, L = 5.6 ft

Outer diameter of the shaft, d0 = 3.16 in Inner diameter of the shaft, d1 = 1.31 in Power transmitted through the shaft, P = 174 hp Speed of the shaft, N = 87 rev/min

We know that the torsional moment of resistance of a solid shaft of diameter d and the maximum shear stress developed are given by:

Torsional moment of resistance, T = π/16 × (d^4)

Maximum shear stress, τmax = 16T/πd³Let the torque transmitted be T. Then we know that:P = 2πNT/33000N = 87 rev/min = 87/60 rpm = 1.45 rad/s

Power, P = 174 hpT = (33000 × P) / (2πN) = (33000 × 174) / (2 × π × 1.45) = 386339.14 lb-in

The maximum shear stress developed in the shaft is given by:

τmax = 16T/πd³ = (16 × 386339.14) / (π × (3.16/2)³ - (1.31/2)³)

Therefore, τmax = 19150.70 psi.

Given, Length of the shaft, L = 5.6 ft

Outer diameter of the shaft, d0 = 3.16 in Inner diameter of the shaft, d1 = 1.31 in

Power transmitted through the shaft, P = 174 hp Speed of the shaft, N = 87 rev/min Formula used: Torsional moment of resistance, T = π/16 × (d^4)Maximum shear stress, τmax = 16T/πd³We know that the torsional moment of resistance of a solid shaft of diameter d and the maximum shear stress developed are given by:

Torsional moment of resistance, T = π/16 × (d^4)Maximum shear stress, τmax = 16T/πd³

Let the torque transmitted be T.

Then we know that: P = 2πNT/33000N = 87 rev/min = 87/60 rpm = 1.45 rad/s

Power, P = 174 hpT = (33000 × P) / (2πN) = (33000 × 174) / (2 × π × 1.45) = 386339.14 lb-in

The maximum shear stress developed in the shaft is given by:τmax = 16T/πd³ = (16 × 386339.14) / (π × (3.16/2)³ - (1.31/2)³)Therefore, τmax = 19150.70 psi.

Hollow Steel Shaft: A hollow steel shaft is a shaft that is hollow from inside and used in power transmission. Hollow shafts are widely used due to their higher strength to weight ratio as compared to solid shafts. These are more efficient in terms of power transmission as compared to solid shafts. In hollow shafts, the diameter of the inner and outer surfaces of the shaft is different. The thickness of the hollow shaft can be uniform or non-uniform, depending upon the loading conditions. Maximum Shear Stress: The maximum shear stress occurs at the surface of the shaft, and its value is determined by the torsional moment of resistance of the shaft. The maximum shear stress equation is expressed as:τmax = 16T/πd³Where,T is the torsional moment of resistance of the shaft d is the diameter of the shaft. The shear stress value is measured in psi (pound-force per square inch).

Thus, the maximum shear stress developed in the given hollow steel shaft, which is transmitting 174 hp power at 87 rev/min speed, is 19150.70 psi. The calculations have been done using the given formulae and the values given in the question.

To know more about shear stress visit:

brainly.com/question/20630976

#SPJ11

Define and discuss properties of Unit Impulse, Unit Step, and Unit Ramp Signals. Also discus relationship between these signals. (Ref. see page 80−83 of the textbook) - Discuss sampling and convolution properties of unit impulse signal/function, δ(t).

Answers

The unit impulse signal is a function of time that is zero everywhere except at time t=0, where it has an infinite value. This function is often used to model the behavior of systems that are highly localized in time, such as the response of an idealized sensor to a sudden stimulus. The properties of the unit impulse signal include the fact that it is symmetric about t=0, it has an area of 1, and it can be used to define other functions by convolution.

The unit step signal, also known as the Heaviside function, is a function of time that is zero for t<0 and one for t>=0. This function is often used to model the behavior of systems that have a sudden change in behavior at a particular time, such as the opening of a switch or the start of an experiment. The properties of the unit step signal include the fact that it is continuous everywhere except at t=0, it has a derivative of zero everywhere except at t=0, and it can be used to define other functions by convolution.

The unit ramp signal is a function of time that is zero for t<0 and t for t>=0. This function is often used to model the behavior of systems that have a linearly increasing response over time, such as the motion of an object under constant acceleration. The properties of the unit ramp signal include the fact that it is continuous everywhere, it has a derivative of one for t>=0, and it can be used to define other functions by convolution.

The relationship between these signals can be defined in terms of convolution. For example, the convolution of the unit step signal with the unit imp signal is equal to the unit step signal itself. Similarly, the convolution of the unit ramp signal with the unit ulseulse signal is equal to the derivative of the unit step signal.

The sampling property of the unit impulse signal is that it can be used to define other signals by sampling. For example, if we sample a continuous signal x(t) at intervals of T seconds, we obtain a sequence x(nT), where n is an integer. This sequence can be expressed as the sum of scaled and shifted unit impulse signals, i.e., x(nT) = ∑ x(kT)δ(n-k).

The convolution property of the unit impulse signal is that it can be used to define other signals by convolution. For example, if we convolve a continuous signal x(t) with the unit impulse signal,

we obtain x(t)*δ(t) = x(t), since the unit impulse signal acts as the identity element of convolution.

Similarly, if we convolve a continuous signal x(t) with the derivative of the unit impulse signal, we obtain x(t)*d/dt[δ(t)] = d/dt[x(t)], since the derivative of the unit impulse signal acts as a differentiator.

Learn more about Signal Properties and Relationships:

https://brainly.com/question/33222599

#SPJ11

(a) Given that the thickness of a sheet metal made from hard titanium alloys is 3 mm: 1) What should be the minimum bend radius? Will this sheet metal crack if the thickness is 8 mm? 2) What will be its engineering strain value? (b) If soft titanium alloys is used, what will the answers be for each of the questions above? (c) Compare results of (a) versus (b). Give 1 reason that can justify the results that you obtain. (d) Referring to (a), at the minimum bend radius, what is the bend allowance if the angle of the folded sheet is 60°?

Answers

a). The bend allowance is 23.05 mm.

b). The engineering strain value cannot be calculated as there is no information about the initial and final length.

c). One reason for this difference could be that soft titanium alloys have higher ductility

d). The bend allowance is 23.05 mm.

a)

The sheet metal will crack if the thickness is 8 mm because it exceeds the bend radius.In this question, no initial and final length has been given. Hence, it is not possible to calculate the engineering strain value. The engineering strain value cannot be calculated as there is no information about the initial and final length.Soft titanium alloys can be bent at a smaller radius than hard titanium alloys, without cracking. One reason for this difference could be that soft titanium alloys have higher ductility, allowing them to bend further without cracking. The bend allowance is 23.05 mm.

a) 1)

Given that the thickness of a sheet metal made from hard titanium alloys is 3 mm, the minimum bend radius for it should be at least 5 times the thickness of the sheet metal.

Therefore, minimum bend radius (r) = 5t

                                                           = 5×3

                                                           = 15mm.

The sheet metal will crack if the thickness is 8 mm because it exceeds the bend radius.

2)

The formula for engineering strain is ε = (l₁ - l₀) / l₀

Where,

l₀= initial length

l₁= final length

ε = engineering strain

In this question, no initial and final length has been given.

Hence, it is not possible to calculate the engineering strain value.

b). For soft titanium alloys, the minimum bend radius is 3t = 3 × 3 = 9 mm.

The engineering strain value cannot be calculated as there is no information about the initial and final length.

c). The minimum bend radius for soft titanium alloys is less than that for hard titanium alloys.

Hence, it can be concluded that soft titanium alloys can be bent at a smaller radius than hard titanium alloys, without cracking.

One reason for this difference could be that soft titanium alloys have higher ductility, allowing them to bend further without cracking.

d). The bend allowance is the amount of additional length required for a sheet metal to be bent to a given angle.

It can be calculated using the formula

BA = 2πr (θ/360) + t (π/2 + sin⁻¹[(r-t)/r]),

where BA is the bend allowance,

r is the minimum bend radius,

θ is the bend angle, and

t is the thickness of the sheet metal.

Substituting the given values in the formula, we get,

BA = 2π(15) (60/360) + 3 (π/2 + sin⁻¹[(15-3)/15])

BA = 23.05 mm

Therefore, the bend allowance is 23.05 mm.

To know more about engineering strain, visit:

https://brainly.com/question/13261407

#SPJ11

Write detailed diagram and Abstract of CNC machining
process Electric Discharge Machining?

Answers

Electric Discharge Machining (EDM) is a type of machining process that is used for shaping hard metals or alloys. In EDM, a thin wire is used to cut or shape the workpiece, which is immersed in dielectric fluid and a current is passed through the wire. The process relies on the discharge of electrical energy that erodes the material and shapes the workpiece. The wire is typically made of brass or copper and has a diameter ranging from 0.1 to 0.3 mm.

The EDM process is a non-contact machining method that can achieve very high levels of precision and accuracy. The process can be used to cut intricate shapes and patterns in hard materials such as titanium, stainless steel, and carbide.

The EDM process consists of several stages, including:

1. Setup: The workpiece is prepared for machining by mounting it on the machine bed and securing it in place.

2. Wire threading: The wire is threaded through the workpiece and the machine head.

3. Machining: The machine head moves along the wire, cutting and shaping the workpiece as it goes.

4. Finishing: After the machining is complete, the workpiece is removed from the machine and cleaned to remove any debris or residue.

Abstract:

Electric Discharge Machining (EDM) is a non-contact machining method that uses a thin wire to cut and shape hard metals and alloys. The process relies on the discharge of electrical energy that erodes the material and shapes the workpiece. The EDM process is highly precise and can be used to cut intricate shapes and patterns in materials such as titanium, stainless steel, and carbide. The process consists of several stages, including setup, wire threading, machining, and finishing. EDM is an effective method for shaping hard materials that cannot be shaped by other machining processes.

Learn more about Electric Discharge Machining:

brainly.com/question/31951565

#SJP11

The CMOS setup utility can be accessed by pressing:

--Reset button on the front panel of a computer case.
--The key set by the motherboard manufacturer for accessing the CMOS setup utility during boot.
--Del key during boot
--F1 key while logged into Windows

Answers

The CMOS setup utility can be accessed by pressing the Del key during boot. This will take you to the BIOS menu, which allows you to configure various settings related to the computer's hardware components. The BIOS menu is usually divided into several sections, such as Main, Advanced, Power, and Boot.

Each section contains various settings that you can modify to customize the behavior of your computer.The Del key is commonly used to access the BIOS menu during boot, but some motherboards may use a different key or combination of keys. The exact key or combination of keys used to access the BIOS menu may vary depending on the motherboard manufacturer and model. If you are unsure which key to use, consult the motherboard manual or check the manufacturer's website for more information.Once you are in the BIOS menu, you can modify various settings, such as the boot order, CPU clock speed, RAM timings, and more. It is important to be careful when modifying these settings, as changing them incorrectly can cause your computer to become unstable or fail to boot. Always make sure you save any changes you make before exiting the BIOS menu, and be prepared to reset the BIOS to default settings if something goes wrong.

To know more about hardware, visit:

https://brainly.com/question/32810334

#SPJ11

Other Questions
Use the given transformation to evaluate the integral , 10x^2 dA , where R is the region bounded by the ellipse 16x^3+9y^2= 144 ; x=3v,y=4v___________ An airplane is flying Northeast at 550 miles per hour. It encounters some wind that is blowing from the West at 100 miles per hour. Taking into account the wind speed, what is the net speed of the pla Can part payment of debt be considered as satisfaction for thewhole claim in contract law? Discuss with reference to appropriatecase laws decided either in India or in Bangladesh ? what is the volume (in cm3) of a piece of 63.0 g brass? 3 sig fig Explain why the wavelength of light decreases when it passes from a vacuum into a material. State which properties change and which stay the same. What does the phrase "in control" mean with respect to processes?An in-control process is statistically stable; it is free of assignable or non-random variationNone of these is correctAn in-control process is one in which the process width (i.e., 60) is substantially wider than the specification width (i.e., the upper specification limit minus the lower specification limit)An in-control process is one in which output falls within the specification limits A car is traveling at a rate of 108 kilometers per hour. What is the cars rate in meters per second? How many meters will the car travel in 20 seconds? Assume that a consumer purchases a combination of product A and product B such that the MU a/P a=4 and MU b/P b=6. To maximize utility without spending more money, the consumer should ______ Based on today's quote for ABC stock and option with one year to expiration: Current stock price for ABC: 100 Stock pays no dividends. Strike price of call option: 97 Annual risk-free rate: .03 Expected annual return of stock (arith mean): .12 Standard deviation (volatility) of annualized return: .3 Market price of call option: 10 1. Use the binomial model and follow the steps below to estimate the theoretical price of the above ABC call option. Assume that the stock price can either rise to 127.84 or drop to 87.16 in one year. a. Calculate delta. b. Calculate the theoretical price of call with binomial model. c. According to your result, is the call currently over or underpriced? Based on the same data for ABC from above, estimate the expected price of the ABC stock 7 months (rather than 1 year) from now using the continuous return approach. Please show work clearly. Hint: (ignore Binomial Model. Calculate the expected price of stock, not option) Suppose that a sample of size 10 is drawn from a normal population. The sample is: 58, 62, 45, 50, 59, 65, 39, 40, 41, and 52. The sample standard deviation is 9.62. Test at the 5% level of significance to determine if there is enough evidence to conclude that the population mean is different than 45. What is your decision? a. No conclusion can be reached with the given information. b. We reject the null hypothesis. There is sufficient evidence to support the alternative hypothesis at the given level of significance. c. We do not reject the null hypothesis. There is not sufficient evidence to support the alternative hypothesis at the given level of significance. 2- You want to test whether the variance of the weights of Kelloggs cereal boxes is less than 50 grams. You take a sample of 8 cereal boxes from the supermarket and calculate the sample variance to be 47.5 grams. You assume that the weights of the cereal boxes are normally distributed. Based on your sample, test at the 1% significance level whether the variance of the weights of the cereal boxes is less than 50 grams. What is your conclusion? A We reject the null hypothesis. We have sufficient evidence to support the alternative hypothesis. B We don't reject the null hypothesis. We don't have sufficient evidence to support the alternative hypothesis. 3-You want to test whether the variance of the weights of Kelloggs cereal boxes is less than 50 grams. You take a sample of 8 cereal boxes from the supermarket and calculate the sample variance to be 47.5 grams. You assume that the weights of the cereal boxes are normally distributed. What is the appropriate test statistic for this hypothesis test? A chi_squared B t-test C z-test D f-test 4- A social researcher claims that the average adult listens to the radio more than 20 hours per week. He collects data on 35 individuals' radio listening habits and finds that the mean number of hours spent listening to the radio weekly is 21.4 hours and the sample standard deviation is four (4) hours. In testing the researcher's claim, what is the appropriate test statistic? A z-test B t-test C chi_squared D None of the above 5-A random sample of 200 voters shows that 90 of them will vote for Donald Trump in the US presidential elections next year. Test the hypothesis that the population proportion is different from half using a significance level of 5%. What is your conclusion? A p-value=0.1586; we reject the null hypothesis. B p-value=0.1586; we do not reject the null hypothesis. C p-value=0.9207; we do not reject the null hypothesis. D p-value=0.0793; we do not reject the null hypothesis. Bob uses the ElGamal system to receive a single ciphertext $b=(h, y)$ corresponding to the message $a$. Suppose that Eve can trick Bob into decrypting a single chosen ciphertext $c$ which is not equal to $b$. (a) Show that Eve can recover $a$. (b) Suppose that Eve can only trick Bob into decrypting a single chosen ciphertext $c=(f, z)$ where $f \neq h$ and $z \neq g$. Show that Eve can still recover $a$. Please answer the (b) not (a). In a random sample of 60 voters, 34 reported they voted for Candidate A and 26 reported they voted for Candidate B. Let G denote a random variable equal 1 if the person voted for A and 0 if the person voted for B. (a) Find the sample average, G , and sample variance, S 2 , of variable G. (b) Does Candidate A have more than 50% of the popular vote? Formulate and test the corresponding null and alternative hypotheses to answer this question, interpret results. (c) Are Candidates A and B virtually tied? Formulate and test the corresponding null and alternative hypotheses to answer this questions, interpret results. For each question, submit the codes and output on a PDF file. 1- Use Python Numpy genfromtxt() to load the file "Lending_company.csv" and then check the number of missing values in each column using the numpy isnan() function with sum(). 2- For the columns with missing values, use imputation by mean for each column. Then, compute the means. 3- For the above loaded data, use Python to draw the boxplot for each column. What kind of noises shown by the graphs? Use python to clean those noises and redraw the boxplots for the cleaned data. 4- Use python to scale the values of each column in the range between zero and 1 and then draw the histogram for each column. 5- Use python to compute the correlation matrix for the six columns. 6- Use Python to load the file "families.csv" and transform the "status" attribute using one-hot encoding. y=4x^216 has how many real roots? What is the perimeter of the hexagon that is formed by joining the two squares? b. The perimeter of the hexagon is how many inches less than the combined perimeter of the two squares? c. Justify Explain your answer to b. Pressure is defined as force/area, where the force is applied normal (perpendicular) to the area. When a force is applied tangentially (parallel) to the area, the quantity Force/Area, is called Title: Comparative Market Analysis of an OrganizationThe student is required to study an organization. The project work should not be a pure description of the company, but should also involve critical evaluation and/or identification of key issues. The following are some guidelines for the project:Select an industry in which you are interested (i.e.: consumer goods, industrial goods, travel, postal, health care, entertainment, finance, retail, etc.).Select a leading business in your field of interest. For example, in the travel industry, you might select an airline, a cruise line, a tourism bureau, a hotel chain, a travel agency, a car rental firm or a resort/destination.Prepare a critical evaluation of the organization that you have chosen. Some of the criteria for evaluation are: At whom is this product / service targeted? What is the product / service concept, stated in terms of results produced for the customer? How is it being positioned in relation to customer needs and competitive offerings? What is the level of customer satisfaction? How is it managing the marketing mix? What are your recommendations on its strategies on segmentation, targeting and positioning and marketing mix?Conduct a comparative analysis between the leader you have chosen and a company (or companies) within the industry that does not enjoy the same success. What strengths and weaknesses do you find in their marketing efforts? How have their efforts enhanced or hindered the companys image and success?Your analysis should use the concepts developed during the course where appropriate. Which of the following best describes the cash flow "when we sell the fixed asset, we have to consider whether we have over-expensed or under-expensed the depreciation of the asset". Operating Cash Flow None of the above. Terminal Cash Flow Initial Investment (a) What is the speed of each seat (in m/s) ? m/s (b) Draw a diagram of forces acting on a 40.0kg child riding in a seat. No file chosen This answer has not been graded yet. (c) Find the tension in the chain (in N). You do not need results from part (a) for this. Consider the vertical component of the net force on the child, N What If? The chains holding each seat can withstand a maximum total tenslon of 700 N. (d) What is the angle that the chains make with the vertical (in degrees) when they have this tension? x (e) What is the maximum angular speed (in rad/s) with which the ride can rotate? rad/s based on your knowledge of equivalences, answer true or false. 1. If bg is a premise, what is the truth value of bg ? 2. If bg is a premise, what is the truth value of (bg) ? 3. If bg is a premise, what is the truth value of gb ? 4. If gb is a premise, what is the truth value of (b 5. If (bg) is a premise, what is the truth value of b g ? 6 . If bg is a premise, what is the truth value of (bg) ?