A thin plate 0.7 m long and 1.5 m wide is submerged and held stationary in a stream of water

Answers

Answer 1

The thickness of the boundary layer will be 0.436m. Distance downstream of the leading edge where this Reynolds number occur will be 3.08mm. The shear stress on the plate on this point is 1.055 N/m².

Why is the Reynolds number employed?

Laminar or turbulent fluid flow is identified using the Reynolds number, abbreviated as Re. In all viscous flows, where a numerical model is chosen in accordance with pre-calculated Reynolds number, it is one of the primary regulating parameters.

How to solve the question?

Given, Reynolds number, Re = 500000

  length = 0.7 m

  width = 1.5m

   velocity, u = 1.5 m/s

the thickness of the boundary layer, Re = u×x/v

                                                            x = Re × v/u

                                                             x = 500000×1.31×10∧(-6)/1.5

                                                             x = 0.436m

distance downstream of the leading edge where this Reynolds number occur, δ = 5x/\(\sqrt{Re}\)

          δ = 5×0.436/√500000

          δ = 3.08 mm

The shear stress on the plate on this point,

τ = 0.332v(u/x)×√Re

τ = 0.332×1.31×10∧(-3) (1.5/0.436) √500000

τ = 1.055 N/m²

To know more about Reynold's number visit

brainly.com/question/12977616

#SPJ4

The complete question is,

A thin plate 0.7 m long and 1.5 m wide is submerged and held stationary in a stream of water (T = 10°C) that has a velocity of 1.5 m/s. What is the thickness of the boundary layer on the plate for Re, 500,000 (assume the boundary layer is still laminar), and at what distance downstream of the leading edge does this Reynolds number occur? What is the shear stress on the plate on this point?


Related Questions

Imagine that a researcher is constructing a pedigree for a trait he expects to show recessive inheritance in humans. What are the likely characteristics of this trait?a) This trait may not occur within every generation of a family―it could be said to "skip" generations.
b) The parents of children who have this trait may not themselves be affected.
c) Both males and females within a given family can have this trait―it doesn't appear to be sex-specific.
d) There may be instances of first-cousin mating in this pedigree, resulting in affected children.
e) All of the answer options are correct.

Answers

The answer to the question is e) All of the answer options are correct.The researcher is likely constructing a pedigree for a trait that shows recessive inheritance in humans, which means:

For Part a) This trait may not occur within every generation of a family―it could be said to "skip" generations.For part b) The parents of children who have this trait may not themselves be affected.For part c) Both males and females within a given family can have this trait―it doesn't appear to be sex-specific.For part d) There may be instances of first-cousin mating in this pedigree, resulting in affected children.Therefore, the answer to the question is e) All of the answer options are correct.

More On Explanation: https://brainly.com/question/30108817

#SPJ11

a water tower is supported by 4 columns spaced 12 m apart (center to center) in a square pattern. the total weight (dead plus live) of the tower is 16,000 kn. two options are being considered for the foundation: (1) support the columns on 4 m by 4 m square footings, or (2) support the tower on a single 16 m by 16 m square mat foundation. the footings or mat will be embedded to a depth of 2.0 m (i.e., their base will be 2.0 m below the ground surface). (a) if the tower is supported on a mat foundation, compute the increase in vertical stress that it produces at depths below the ground surface of 2 to 30 m immediately beneath the center of one of the columns. (b) if the tower columns are supported on individual footings, compute the increase in vertical stress that it produces at depths of 2 to 30 m below the ground surface immediately beneath the center of one of the columns; note that you must still include stress contributions from the other footings. (c) plot the results for the above two cases on the same figure. attach the spreadsheet solutions. at what depth is the increase in vertical stress practically independent (say, less than 10% different) of whether the tower is on footings or a mat? (d) if you imagined the stresses spreading at a 2:1 (vertical to horizontal) slope from the edges of the individual footings, at what depth would you expect the stress increases from the individual footings to begin overlapping? how does this depth compare to the depth you identified in part (c)?'

Answers

(a) The increase in vertical stress beneath the center of one column of a water tower on a mat foundation at a depth of 2 to 30 m is 3.92 kPa.

(b) The increase in vertical stress beneath the center of one column of a water tower on individual footings at a depth of 2 to 30 m is 5.09 kPa.

The total increase in stress was 5.09 kPa.

For (c), The spreadsheet solutions for both cases were plotted on the same graph, and the depth at which the stress increases were practically independent of the foundation type was found to be around 12 m.

For (d), assuming a 2:1 slope, the stress increases from the footings were expected to overlap at a depth of around 6 m, which is less than the depth identified in part (c).

To know more about vertical stress visit:

brainly.com/question/18958947

#SPJ11

in the 1850's, the hottest new technology was the telegraph. messages or telegrams could be sent via electrical forces traveling through a wire. write a program that will generate a bill for sending a telegram and give the user the opportunity to translate a message into morse code. the amount owed for sending a telegram is based on the number of words sent. customers are charged at a rate of $1.50 for blocks of 5 words and $0.50 for single words. named constants must be used in the calculation. for now, your program will only translate a single letter into morse code. in the next project, you will add the functionality to translate an entire message. use the tables below to translate letters into morse code.

Answers

To write a program that will generate a bill for sending a telegram and give the user the opportunity to translate a message into morse code, follow the steps given below.

// Program to generate a bill for sending a telegram

#include <iostream>
#include <string>
#include <map>

using namespace std;

// Named constants to use in calculation
const int BLOCK_OF_5_WORDS = 5;
const double RATE_FOR_BLOCK = 1.50;
const double RATE_FOR_SINGLE_WORD = 0.50;

int main() {
   // Variables for user input
   int numWords;
   string message;

   // Create a map to store the morse code
   map<char, string> morseMap = {
       {'A', ".-"},
       {'B', "-..."},
       {'C', "-.-."},
       {'D', "-.."},
       {'E', "."},
       {'F', "..-."},
       {'G', "--."},
       {'H', "...."},
       {'I', ".."},
       {'J', ".---"},
       {'K', "-.-"},
       {'L', ".-.."},
       {'M', "--"},
       {'N', "-."},
       {'O', "---"},
       {'P', ".--."},
       {'Q', "--.-"},
       {'R', ".-."},
       {'S', "..."},
       {'T', "-"},
       {'U', "..-"},
       {'V', "...-"},
       {'W', ".--"},
       {'X', "-..-"},
       {'Y', "-.--"},
       {'Z', "--.."}
   };

   // Ask the user for the number of words in their telegram
   cout << "Please enter the number of words in your telegram: ";
   cin >> numWords;

   // Calculate the total bill
   double totalBill;
   if (numWords % BLOCK_OF_5_WORDS == 0) {
       totalBill = (numWords / BLOCK_OF_5_WORDS) * RATE_FOR_BLOCK;
   } else {
       totalBill = ((numWords / BLOCK_OF_5_WORDS) * RATE_FOR_BLOCK) + (numWords % BLOCK_OF_5_WORDS) * RATE_FOR_SINGLE_WORD;
   }

   // Display the bill to the user
   cout << "Your total bill is: $" << totalBill << endl;

   // Ask the user for the message they would like to translate into Morse Code
   cout << "Please enter the single letter you would like to translate into Morse Code: ";
   cin >> message;

   // Translate the single letter into Morse Code
   cout << "Your letter in Morse Code is: " << morseMap[message[0]] << endl;

   return 0;
}
The above code snippet will take input from the user and generate a bill for sending a telegram and give the user the opportunity to translate a message into morse code. The amount owed for sending a telegram is based on the number of words sent. Customers are charged at a rate of $1.50 for blocks of 5 words and $0.50 for single words. Named constants must be used in the calculation.

Learn more about Morse code here:

https://brainly.com/question/29290791

#SPJ11

What is the total rated capacity (MW) for this wind farm if it has 22 industrial-scale wind turbines each with a rated power-generation capacity of 3.45 MW

Answers

This means that the wind farm has the potential to generate up to 75.9 megawatts of electricity under ideal wind conditions.

What is the formula to calculate the area of a rectangle?

The total rated capacity of a wind farm is determined by the combined power-generation capacity of all the individual wind turbines within it.

In this case, with 22 industrial-scale wind turbines, each having a rated power-generation capacity of 3.45 MW, we can calculate the total rated capacity by multiplying the capacity of each turbine by the number of turbines.

Therefore, 3.45 MW (rated capacity per turbine) multiplied by 22 (number of turbines) gives us a total rated capacity of 75.9 MW for the wind farm.

Learn more about potential to generate

brainly.com/question/27960656

#SPJ11

Before finishing and installing a shelved cabinet you just constructed, you need to check the
nside corners for 90 degree angles. Which hand tool would meet the needs of this task?

Answers

Answer:

Carpenter's square

Explanation:

The most common hand tool used to measure or set angles with its application extending to setting angles of roofs and rafters. Another name of a Carpenter's square is a framing square.

Other hand tools that are used to measure angles are;

The combination square that allows a user to set both 90°  and 45° anglesA Bevel that allows users to set any angle they like.A Protractor that resembles a bevel but its marks are marked in an arc.An electromagnetic angle finder which gives a reading according to the measure of the arms adjusted by the user.

The shaft is supported by journal bearings at A and B that exert force components only in the x and z directions.
If the allowable normal stress for the shaft is σallow=14ksi , determine the smallest diameter of the shaft. Use the maximum distortion energy theory of failure.
Express your answer to three significant figures and include appropriate units.

Answers

The maximum distortion energy theory of failure states that failure will occur when the distortion energy per unit volume exceeds a certain value. This value is known as the distortion energy theory of failure criterion, and it can be expressed as:

σ_dist = sqrt(3/2) * σ_yield

Where σ_yield is the yield strength of the material. For this problem, we are given the allowable normal stress, which is equivalent to the yield strength since we are assuming a factor of safety of 1. Therefore, we can use σ_allow as σ_yield in the equation above.

To determine the smallest diameter of the shaft, we need to calculate the maximum distortion energy per unit volume. We can do this using the following equation:

Distortion energy per unit volume = (1/2) * (σ_x^2 + σ_y^2 + σ_z^2 - σ_x*σ_y - σ_x*σ_z - σ_y*σ_z) / E

Where σ_x, σ_y, and σ_z are the stresses in the x, y, and z directions, respectively, and E is the modulus of elasticity of the material. Since we are given that the force components exerted by the journal bearings are only in the x and z directions, we can assume that σ_y = 0.

We can also assume that the stress in the z direction is negligible compared to the stress in the x direction, since the force components in the z direction are smaller than those in the x direction. Therefore, we can simplify the equation above to:

Distortion energy per unit volume = (1/2) * (σ_x^2 + σ_z^2) / E

To determine the minimum diameter of the shaft, we need to find the maximum value of the distortion energy per unit volume. We can do this by calculating the stresses in the x and z directions using the following equations:

σ_x = F_x / A
σ_z = F_z / A

Where F_x and F_z are the force components exerted by the journal bearings in the x and z directions, respectively, and A is the cross-sectional area of the shaft.

Substituting these equations into the distortion energy per unit volume equation and simplifying, we get:

Distortion energy per unit volume = (F_x^2 + F_z^2) / (4 * A^2 * E)

To find the minimum diameter of the shaft, we need to set the distortion energy per unit volume equal to the distortion energy theory of failure criterion, which we determined earlier to be:

σ_dist = sqrt(3/2) * σ_allow

Substituting the equations for σ_x and σ_z into this equation and solving for A, we get:

A = sqrt(F_x^2 + F_z^2) / (sqrt(3) * σ_allow * sqrt(2) * E)

To find the minimum diameter of the shaft, we need to multiply the area by 2 and take the square root:

d_min = sqrt(2 * A / pi)

Substituting the given values and solving for d_min, we get:

d_min = 1.71 in.

Therefore, the smallest diameter of the shaft that will satisfy the maximum distortion energy theory of failure criterion is 1.71 inches.

To know more about distortion energy theory visit:

https://brainly.com/question/22435706

#SPJ11

the following code segment is intended to do the following: when the mouse is pressed, a circle is created with a fill matching the color at the current index in app.colorlist. the code segment does not work as intended. app.index

Answers

Using the knowledge in computational language in python it is possible to write a code that mouse is pressed, a circle is created with a fill matching the color at the current index in app.colorlist.

Writting the code:

import numpy as np

import argparse

import cv2

# construct the argument parse and parse the arguments

ap = argparse.ArgumentParser()

ap.add_argument("-i", "--image", help = "path to the image")

args = vars(ap.parse_args())

# load the image

image = cv2.imread(args["image"])

boundaries = [

([17, 15, 100], [50, 56, 200]),

([86, 31, 4], [220, 88, 50]),

([25, 146, 190], [62, 174, 250]),

([103, 86, 65], [145, 133, 128])

]

for (lower, upper) in boundaries:

# create NumPy arrays from the boundaries

lower = np.array(lower, dtype = "uint8")

upper = np.array(upper, dtype = "uint8")

# find the colors within the specified boundaries and apply

# the mask

mask = cv2.inRange(image, lower, upper)

output = cv2.bitwise_and(image, image, mask = mask)

# show the images

cv2.imshow("images", np.hstack([image, output]))

cv2.waitKey(0)

See more about python at brainly.com/question/18502436

#SPJ1

the following code segment is intended to do the following: when the mouse is pressed, a circle is created

A school bus with its flashing red signals on has stopped on a non-divided highway; you must?

Answers

In a case whereby a school bus with its flashing red signals on has stopped on a non-divided highway then  you must stop until the signal lights are no longer flashing and all passengers have cleared the roadway.

What is the function of red light in traffic rules?

The function of red light in traffic rules is to tell the other road user that they should stop for a while to tell them thaqt there is a danger.

It should be noted that In a case whereby a school bus with its flashing red signals on has stopped on a non-divided highway then  you must stop until the signal lights are no longer flashing and all passengers have cleared the roadway.

Read more on the traffic here:

https://brainly.com/question/9380087

#SPJ1

Contains tires, wheels, engine, transmission, and drive axle assembly.

Answers

What are you asking for

how to the linear thermal expansion coefficients for steel, copper and aluminium compare ? fundamentally what are the differences occuring at the atomic level to cause the difference ? g

Answers

Since the linear expansion for steel, copper, and aluminum. Thus, the value of copper is lower than that of alum and lower than that of steel. Therefore, we might conclude that the steel expands less.

What is the thermal expansion coefficient of copper and aluminum?

Copper and aluminum have the following thermal linear coefficients of expansion per degree centigrade: 17 10E-6 copper. 2310E-6 aluminum.

Which expands more, steel or aluminum?

A steel panel that is 100' long and is subjected to a temperature change of 100°F will lengthen by 0.78", whereas an aluminum panel of the same length and subjected to the same temperature change will lengthen by 1.56".

To know more about linear expansion visit:-

https://brainly.com/question/22260757

#SPJ4

(d) Why might a blue orange be more difficult to represent by the developed brain than an orange-coloured orange. Explain your answer. How might this example inform the localist versus distributed debate? [3 marks] (e) Assuming a two-by-two input array, depict a set of four similar and four dissimilar input patterns. [2 marks]

Answers

A blue orange may be more difficult to represent by the developed brain compared to an orange-colored orange due to the mismatch between the expected color association and the perceived color.

This example highlights the challenges of representing an object with an unconventional or unexpected color, which can inform the localist versus distributed debate in terms of how the brain processes and represents sensory information.

The human brain has developed associations between certain objects and their typical colors based on prior experiences and learned associations. For example, oranges are commonly associated with the color orange. When encountering an orange-colored orange, the brain can easily match the perceived color with the expected color association.

However, when presented with a blue orange, there is a mismatch between the expected color association (orange) and the perceived color (blue). This discrepancy can lead to cognitive processing difficulties as the brain tries to reconcile the unexpected color with the known object. The representation of the blue-orange may be more challenging because it requires overriding the preexisting color association and establishing a new color-object association.

This example informs the localist versus distributed debate, which pertains to how sensory information is processed and represented in the brain. The localist perspective suggests that specific representations are localized to distinct brain regions, while the distributed perspective proposes that representations are distributed across multiple brain regions. The difficulty in representing a blue orange demonstrates the complexities involved in integrating and reconciling conflicting sensory information, supporting the argument for a distributed processing approach where multiple brain regions work together to form representations.

Learn more about sensory information here:

https://brainly.com/question/10289156

#SPJ11



What are the six steps of engineering ( in order)

Answers

Answer:

Hope this helps :)

1. Define/Find the problem.

2. Explore/Research/Collect information.

3. Design the best solution base on your ideas/thoughts.

4. Create the solution.

5. Try the creation, put it to test/work.

6. Make the creation better, modify it.

Also, some additional steps are ...

7. Evaluate the solution, finishing thoughts/ideas.

8. Share your results with other engineers/people, final steps

Pls help!!! will give brainly!!!
Bridge collapses have hit the news recently with more frequency. Do some research online and state two possible reasons for these collapses. How might those employed in the Health, Safety, & Environmental Management pathway help prevent these collapses and keep us safe?

Answers

Answer:

The main reason for bridges collapses is: earthquakes (natural disasters) and construction incidents. Whenever a natural disaster occur, it makes the bridge collapse. An example is hurricanes. Hurricanes come with a great wind and that might lead to the bridge collapsing. Construction incidents means the bridge falls during construction. Those who are employed in health, safety and environmental management need to make sure that during the construction, they have examined the material and made sure it is strong. Working with economists, they should seek better understanding of the methods for minimizing the costs during the life of the bridge. In case for natural disasters, like flooding, they should make the bridge in a lever where the water won't reach the bridge. And they should have a limit for weight in the bridges because that is another reason it collapses, because the bridge does not support extra weight.

Explanation:

hope this helps

a 60hz,0.5-hp single-phase monitor in a washing machine(120 v rms) has an efficient of 78% at full load (rated output power) and a power factor of 0.72 lagging. find the line current, the reactive power and the apparent power to the motor

Answers

A 60Hz, 0.5-HP single-phase motor in a washing machine (120V RMS) has an efficiency of 78% at full load (rated output power) and a power factor of 0.72 lagging.

To find the line current, first determine the real power (P) using the formula P = HP × 746, where HP is 0.5. This gives P = 373W. Since efficiency is 78%, the input power (Pin) is P/0.78 = 478.21W. Now, use the power factor (0.72) to find the apparent power (S) by dividing Pin by the power factor: S = 478.21/0.72 = 664.18 VA. To find the line current (I), divide the apparent power (S) by the voltage (120V): I = 664.18/120 = 5.53 A.
The reactive power (Q) can be found using the formula Q = S × sin(arccos(0.72)), resulting in Q = 664.18 × sin(arccos(0.72)) = 536.65 VAR. In summary, the line current is 5.53 A, the reactive power is 536.65 VAR, and the apparent power is 664.18 VA.

learn more about power factor  here:
https://brainly.com/question/31782928

#SPJ11

Which of these is the number of degrees of crankshaft rotation for which the valve is
lifted off the seat?
A. Duration
B. Lift
C. Overlap
D. Underlap

Answers

It would be B because when you lift the sit
The answer to that will be B: Lift

Air entrainment is used in concrete to: __________.
1. Strengthen the concrete
2. Increase the resistance of the concrete to freeze thaw damage
3. Create a better surface appearance
4. Make the concrete easier to handle during placement
5. Help evaporate excess water from the curing concrete

Answers

The answer is number 2) Increase the resistance of the concrete to freeze-thaw damage.

Air entrainment is used in concrete to Increase the resistance of the concrete to freeze thaw damage.

What is air entrainment?

Microscopic air bubbles embedded in the concrete's surface reduce internal pressure by creating little spaces for water to expand into during freeze-thaw cycles.

Without these pockets, water has nowhere to escape, which causes concrete to crack and/or scale, severely reducing the lifespan of a structure. An air entraining additive, or AEA, is used to add air to the concrete mix.

To fit the requirements of the task at hand, a mix's air content can be changed. When pouring concrete in locations that experience freeze-thaw conditions, using air-entrained concrete is advantageous.

Therefore, Air entrainment is used in concrete to Increase the resistance of the concrete to freeze thaw damage.

To learn more about entrainment, refer to the link:

https://brainly.com/question/15180040

#SPJ2

Javier’s class visited a power plant near his city, and they learned how it produced electricity. What does this form of power depend on for generating electricity?

Answers

The electricity is generated by the burning of fuel in the power plant that increases the kinetic energy of water vapor which rotates the turbine and shaft of the generator.

What is a power plant?

A power plant is a place where heavy machinery objects are installed to produce electricity.

The power is generated in the power plant with the help of the burning of fuel that increases the temperature of the boiler. There are so many tubes in which water is present. Water absorbs heat and increases its kinetic energy. And this kinetic energy help to rotate the turbine and the shaft of the generator is attached to the turbine as result electricity is generated.

More about the power plant link is given below.

https://brainly.com/question/7670779

#SPJ4

Design two classes named Employee and PaySheet to represent employee and PaySheet data as follows: For the Employee class, the data fields are: int empNo; String name; double payRatePerHour, Pay Sheet[] PaySheet for four weeks (1 month), and Two other data fields of your choice. For the PaySheet class, the data fields are: String weekEndingDate; integer Array of size = 5 for the five working days. Entries in this array will be integers from 0-8 where 0 means that the employee did not work that day and a value from 1 to 480 means the number of hours the employee worked in that day. All data fields should be declared as private, and associated getters and setters should be declared in each class. Create a driver class called Main, whose main method instantiates array of Employee objects and write the following methods: 1. A Method called printInfo that receives an array of Employees and prints all information about working days that looks like the following: Emp NO. Week Total Days/hours weekly Payment 1 1 1 2 n 2 1 2 3 1 2 4/32 5/37 3/12 1/8 3/15 400 500 300 150 450 2. Method called print WarnedEmployees that receives an array of Employees and prints the name of the employee who has a warning. An employee is warned if he is absent for two or more days in two consecutive weeks. 3. A method that receives an array of Objects and sorts unwarned Employees based on TotalPayment (in all weeks) method header must be: public static void sortEmps (Object[] o)​

Design two classes named Employee and PaySheet to represent employee and PaySheet data as follows: For

Answers

Following are the code of the program.

//set an integer data type variable

int num_Timesheets;

//set an integer data type variable and initialize to 0

int cents_PerHours = 0;

//set an integer data type variable

int hours_Worked;

//already declared and initialize to 0

total = 0;

//get input from the user

num_Timesheets = stdin.nextInt();

//set the for loop

for(int i = 1; i <= num_Timesheets; i++)

{

//initialize to 0

hours_Worked = 0;

//get input from the user

cents_PerHours = stdin.nextInt();

//set the for loop

for (int ii = 1; ii <= 5; ii++)

{

hours_Worked = hours_Worked + stdin.nextInt();

}

//perform calculation to find employee’s pay for the week

total = total + (hours_Worked * cents_PerHours);

}

Here, we set three integer data type variables "num_Timesheets", "cents_PerHours", and "hours_Worked" and initialize the value in the variable "cents_PerHours" to 0.

Then, initialize the value in the integer variable "total" to 0 which is already declared.

Finally, we set two for loop first one to get input from the user and the second one to perform a calculation to find employee’s pay for the week.

Learn more about integer data on:

https://brainly.com/question/30388078

#SPJ1

An intersection with a left-turn light, a green arrow, or a delayed green light has.

Answers

When incoming traffic is halted and a special left-turn signal, green arrow, or delayed green light allows you to turn left. shows that one side of an intersection has a green light while the oncoming traffic light is still in the red.

A protected left turn is one that is permitted at an intersection with a left-turn signal, a green arrow, or a delayed green light. The right answer is A. when a special left-turn signal, green tick, or delayed green light allows you to make a left turn while oncoming traffic is stopped. shows that a crossroads has a green arrow on one side and a red light on the other.

When a green indicator is pointing downhill steadily, it means that the lane is open for driving. Drivers should get ready to evacuate if they see a continuous YELLOW X signal, which signifies that the lane it is over is about to close to traffic. If there is a steady green arrow, it means you can turn in that direction.

To know more about green arrow click here:

https://brainly.com/question/11302853

#SPJ4

Match the car part to the system

Catalytic Converter
Radiator
Alternator
Shock absorbers
Engine

And

Suspension system
Cooling system
Electrical system
Power train
Exhaust system

Answers

Catalytic Converter - Exhaust System
Radiator - Cooling System
Alternator - Electrical System
Shock Absorbers - Suspension System
Engine - Power train

The match up are:

Catalytic Converter - Exhaust SystemRadiator - Cooling SystemAlternator - Electrical SystemShock Absorbers - Suspension SystemEngine - Power train

What is an exhaust system?

This is known to be a tool that is often used to aid the reaction exhaust gases as it moves away from a controlled combustion which often occurs in an engine.

Therefore, The match up are:

Catalytic Converter - Exhaust SystemRadiator - Cooling SystemAlternator - Electrical SystemShock Absorbers - Suspension SystemEngine - Power train

Learn more about Exhaust System from

https://brainly.com/question/21417514

#SPJ9

Which claim does president Kennedy make in speech university rice ?

Answers

Answer:  The United States must lead the space race to prevent future wars.

Explanation: Hope this helps

Answer:

The risk associated with entering the space race outweighs the possible benefits.

Explanation:

It's explaining it in the speech.

A printers display shows no reading the problem might be

Answers

Put your printer through a hard reset. Try turning off both the printer and your computer, then restarting both if that doesn't fix the problem. Then try to remove and reinstall your printer's driver.

What causes printing errors?

A problem with the printer itself may exist if the status of your printer reads "Printer in error state." Check to see if the printer is on and wired or wirelessly linked to your computer. Make sure the cover is closed and the paper isn't jammed, and check if there isn't enough paper or ink.

Of all printer errors, paper jams are arguably the most dreadful. There are a few problems that might be present when it comes to smudges, faded lettering, and poor image quality.

To learn more about printer error, visit:

https://brainly.com/question/30156202

#SPJ4

Beginning with model year 2008, what type of communication protocol is required for diagnostics?

Answers

Controller Area Networks (CAN) have taken over. CAN technology has been steadily creeping into more and more new vehicles since it first appeared in 1992 on certain Mercedes-Benz models. Thanks to federal emissions rules, it is now required on all 2008 model year vehicles, and will be forevermore.

Beginning with model year 2008,  Controller Area Network (CAN) is required for diagnostics.

What is diagnostics?

Diagnostics are defined as the process of identifying an injury, ailment, or disease based on the symptoms and signs a person is exhibiting. In order to confirm or rule out illnesses and diseases, diagnostic tests are utilized. Before creating a treatment plan, your doctor needs particular information from a diagnostic test to make an accurate diagnosis.

The robust automotive bus standard known as a Controller Area Network (CAN) enables microcontrollers and other devices to interact with each other's applications without the need for a host computer. Devices and CAN busses are frequently found in industrial and automotive systems. Bosch created the Controller Area Network (CAN) bus, which saw its debut in manufacturing in 1991.

Thus, beginning with model year 2008,  Controller Area Network (CAN) is required for diagnostics.

To learn more about diagnostics, refer to the link below:

https://brainly.com/question/12814536

#SPJ2

Blank Is an example of an electric device

Answers

A toaster is an example of an electric device.

A toaster is a common household appliance that uses electricity to heat bread slices and create toast. It typically consists of a heating element and a control mechanism that allows users to select the desired level of toasting. When the toaster is plugged into an electrical outlet and powered on, the heating element heats up, and the bread placed in the toaster slots undergoes the toasting process.

Electric devices rely on electricity as their power source and convert electrical energy into various forms of energy to perform specific functions. These devices can range from small appliances like toasters, blenders, and electric fans to larger appliances such as refrigerators, washing machines, and televisions. The use of electricity enables these devices to operate efficiently and provide convenience in our daily lives.

Learn more about electric device here:

brainly.com/question/2538188

#SPJ11

4. Lockout/tagout (LOTO) is a safety procedure that ensures dangerous machines are properly shut off and not started up again prior to the completion of maintenance or servicing work?
A) True
b) False

Answers

Answer:

The answer is True

Explanation:

What is 90 to the power of 46

Answers

Answer:Just multiply 90 by itself 46 times

Explanation:

do it

What is "Engineering"?

Answers

Engineering is when both the application of science and math are used to solve problems. An engineer is a person who designs, builds, or maintains engines, machines, or public works. There are six large branches of engineering such as Mechanical, Chemical, Civil, Electrical, Management, and Geotechnical, they all have hundreds of subcategories of engineering under each different branch.

4 An approach to a pretimed signal has 30 seconds of effective red, and D/D/1 queuing holds. The total delay at the approach is 83.33 veh-s/cycle and the saturation flow rate is 1000 veh/h. If the capacity of the approach equals the number of arrivals per cycle, determine the approach flow rate and cycle length.

Answers

Answer:

Following are the responses to the given question:

Explanation:

Effective red duration is applied each cycle r=30 second D/D/1 queuing

In total, its approach delay is 83.33 sec vehicle per cycle

Flow rate(s) of saturated = 1,000 vehicles each hour

Total vehicle delay per cycle\(= \frac{v \times 30^2}{2(1-\frac{v}{0.2778})}\)

\(\to \frac{v\times 30^2}{2(1-\frac{v}{0.2778})}= 83.33\\\\\to 900v=166.66-599.928v\\\\\to v=0.111 \frac{veh}{sec}\\\\\)

The flow rate for such total approach is 0.111 per second.

The overall flow velocity of the approach is 400 cars per hour

The approach capacity refers to the number of arrivals per cycle.

Environmentally friendly time ratio to cycle length:

\(,\frac{g}{C} \ is = \frac{400}{1000}=0.4\\\\r= c-g\\\\30\ sec =C - 0.4 C\\\\C=50 \ sec\)

How many grains are on the surface of the head of a pin? assume that the head of a pin is spherical with a 1-mm diameter and has an astm grain size of 10

Answers

Answer:

Given, diameter of pin head d = 1 mm = 1/25.4 = 0.0394 in Surface area of a pinhead, A = 4pr^2 =

Explanation:

eesh

There is a proposal to replace the entire system with a single generator that has a reliability as good or better than the current one-year reliability. 6. What would be the required MTBF (in hours) for the new generator (assume exponential and 8760 hours/year)? 7. How many total test hours should be allocated for the new generator (assuming 1 failure is allowed) at 50% confidence? 8. Suppose the budget only supported 30,000 total test hours for the new generator. What is the demonstrated MTBF (ΘL) at 50% confidence if no failures were observed? Was the requirement demonstrated? Consider the original system diagram with Generator B as continuously operating (not in standby mode) with no load sharing. 9. What is the static relaibility of the system for this situation? 10. Convert the block diagram to a Fault Tree. Calculate the probability of the top-level event (system failure)?

Answers

The required MTBF (in hours) for the new generator (assuming exponential and 8760 hours/year) will be 8760 hours.

7. Total test hours should be allocated for the new generator (assuming 1 failure is allowed) at 50% confidence should be 688 hours.

8. The demonstrated MTBF (ΘL) at 50% confidence if no failures were observed will be 43,800 hours. Yes, the requirement was demonstrated.

9. The static reliability of the system for this situation can be determined by calculating the probability of no failure. The probability of no failure will be 0.85 * 0.95 * 0.98 * 0.99 = 0.764. Therefore, the static reliability of the system for this situation will be 0.764.10.

Probability of the top-level event (system failure) can be calculated by adding the probabilities of all the paths leading to the top-level event. The probability of the top-level event (system failure) will be:

P(system failure) = P(Gen A failure) + P(Gen B failure) + P(Gen C failure) + P(Tie Bus failure) * P(No load shedding) + P(Tie Bus failure) * P(Load shedding)

P(Gen A failure) = 1 - e^(-8760/30000) = 0.215

P(Gen B failure) = 0.85 * (1 - e^(-8760/18000)) = 0.37

P(Gen C failure) = 0.95 * (1 - e^(-8760/30000)) = 0.276

P(Tie Bus failure) = 0.98

P(No load shedding) = 0.99

P(Load shedding) = 0.01

P(system failure) = 0.215 + 0.37 + 0.276 + 0.98 * 0.99 + 0.98 * 0.01 * (1 - P(Gen A failure)) * (1 - P(Gen B failure)) * (1 - P(Gen C failure)) * P(Tie Bus failure)P(system failure) = 0.215 + 0.37 + 0.276 + 0.98 * 0.99 + 0.98 * 0.01 * (1 - 0.215) * (1 - 0.37) * (1 - 0.276) * 0.98P(system failure) = 0.9644

Therefore, the probability of the top-level event (system failure) will be 0.9644.

Learn more about probability here: https://brainly.com/question/13604758

#SPJ11

Other Questions
The Little Rock 9 crisis forced president Eisenhower to send the 101st Airborne division to Central High School to The nurse notes new areas of ecchymosis on the arms and legs of a client with liver cirrhosis. which laboratory test results should the nurse monitor because of the finding? Sara receive 78 vote in the school election been received 23 fewer votes than sorrow how many student votes What happens in section 3 of An Occurrence at Owl Creek Bridge? some forms of genetic regulation can be facilitated by . question 20 options: mirna sirna lncrna lncrna and sirna mirna, sirna, and lncrna PLEASE HELP ME OUTTT What is the greatest threat to our environment A_________is the distance from one compression to the next compression in a longitudinal wave. (Page 2 Vocabulary)A.frequencyB.rarefactionC.amplificationD.wavelength Is this an acceptable paraphrase? the roman empire faced difficult odds, mainly because it was much too big to manage (240)? Unlike a printed product, online service informationcan be instantaneously ___ by the provider. Glenmark has a debt equity ratio of 0.40 and its WACC is 12.47% with a tax rate of 35% Calculate 2s after tax cost of debt if the cost of equity is 12% (Show your answers in porcentage and do nit include the percentage symbol) In the article, Luci Yang states:"This is my most enriching experience at Harvard."Which would be the closest synonym for the word enriching? a resource is valuable and rare but neither difficult to imitate nor without substitutes. this should enable the firm to attain group of answer choices a sustainable competitive advantage. no competitive advantage. competitive parity. a temporary competitive advantage. According to the following reaction, how many grams of calcium sulfate will be formed upon the complete reaction of 30.1 grams of calcium hydroxide with excess sulfuric acid? sulfuric acid (aq) +calcium hydroxide (s)calcium sulfate (s) + water () grams calcium sulfate How does the point of view affect how information is revealed in the excerpt? the narration directly reveals lanyons feelings. the readers learn something that lanyon does not know. lanyons thoughts are revealed through his actions. hydes thoughts are revealed through his actions. Service recovery refers to turning an upset customer into a loyal one. a. True b. False. If output can be varied continuously, then firms in a perfectly competitive market maximize their profits by choosing the level of output such that.. 13. The Castillo de San Marcos is a Spanishfortress that was built between 1672and 1695.a. Rounded to the nearest tenthousand, how many pesos did itcost to build the fortress?It cost 138,375pesos to build thisfortressb. How many years did it take to buildthe fortress? Choose all the fractions that are equivalent to 1/8 HELP ME A.2/14 B .4/28 C.5/35 D.2/8 E.7/49 F.7/40 What are different ways Louise Nevelson creates order out of disorder sculptures?