1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Firlakuza [10]
2 years ago
8

Is making design tradeoffs the same as, or different from, the practice of combining the best parts of different solutions

Engineering
2 answers:
mezya [45]2 years ago
5 0

Answer:

Explanation:

Using a process of informed decision-making, the designer or design team compares different solutions to the requirements of the problem and either chooses

sineoko [7]2 years ago
4 0

Answer:The engineering design process usually begins by stating a need or want as a clearly defined challenge in the form of a statement with criteria and constraints. For example, a group of engineers might be given the task of designing, for example, a cell phone with a particular set of features, of a particular size and weight, with a certain minimum battery life, and that is able to be manufactured at a particular cost. Criteria are characteristics of a successful solution, such as the desired function or a particular level of efficiency. Constraints are limitations on the design, such as available funds, resources, or time. Together, the criteria and constraints are referred to as the requirements for a successful solution.

Once the challenge is defined, the next steps are often to investigate relevant scientific and technical information and the way that similar challenges have been solved in the past and then to generate various possible solutions. This generation of potential solutions is the most creative part of the design process and is often aided by sketching and discussion. Using a process of informed decision-making, the designer or design team compares different solutions to the requirements of the problem and either chooses the most promising solution or synthesizes several ideas into an even more promising potential solution. The next step is usually to try out the solution by constructing a model, prototype (first of its kind), or simulation and then testing it to see how well it meets the criteria and falls within the constraints. An additional characteristic of engineering design is that ideas are tested before investing too much time, money, or effort

hope it helped

You might be interested in
a. Determine R for a series RC high-pass filter with a cutoff frequency (fc) of 8 kHz. Use a 100 nF capacitor. b. Draw the schem
Readme [11.4K]

Answer:

a) 199.04 ohms

b) attached in image

c) -0.696dB

Explanation:

We are given:

Fc = 8Khz = 8000hz

C = 100nF = 100*10^-^9F

a)Using the formula:

F_c = \frac{1}{2pie*Rc}

8000= \frac{1}{2*3.14*R*100*10^-^9}

R =\frac{1}{2*3.14*100*10^-^9*8000}

R = 199.04 ohms

b) diagram is attached

c) H(w) = \frac{V_out(w)}{Vin(w)} = \frac{1}{1-j\frac{wc}{w}}

H(F) = \frac{1}{1-j\frac{fc}{f}}

At F = 20KHz and Fc= 8KHz we have:

H(F)= \frac{1}{1-j\frac{8}{20}} = \frac{1}{1-j(0.4)}

|H(F)|= \frac{1}{\sqrt{1^2+(0.4)^2}}

=0.923

|H(F)| in dB = 20log |H(F)|

=20log0.923

= -0.696dB

5 0
3 years ago
A motor driven water pump operates with an inlet pressure of 96 kPa (absolute) and mass flow rate of 120 kg/min. The motor consu
NeX [460]

Answer:

The maximum water pressure at the discharge of the pump (exit) = 496 kPa

Explanation:

The equation expressing the relationship of the power input of a pump can be computed as:

E _{pump,u} = \dfrac{m(P_2-P_1)}{\rho}

where;

m = mass flow rate = 120 kg/min

the pressure at the inlet P_1 = 96 kPa

the pressure at the exit P_2 = ???

the pressure \rho = 1000 kg/m³

∴

0.8 \times 10^{3} \ W = \dfrac{(120 \ kg/min * 1min/60 s)(P_2-96000)}{1000}

0.8 \times 10^{3}\times 1000 = {(120 \ kg/min * 1min/60 s)(P_2-96000)}

800000 = {(120 \ kg/min * 1min/60 s)(P_2-96000)}

\dfrac{800000}{2} = P_2-96000

400000 = P₂ - 96000

400000 +  96000 = P₂

P₂ = 496000 Pa

P₂ = 496 kPa

Thus, the maximum water pressure at the discharge of the pump (exit) = 496 kPa

8 0
2 years ago
Why is concrete on its own not a good material to use
Inga [223]

Answer:

It has poor tensile strength despite having high compressive strength

Explanation:

Concrete exhibits high compressive strength when used. However, it has very low compressive strength. This is the reason why concrete is normally combined with steel to make a composite building material called reinforced concrete. The steel reinforces concrete hence increasing the tensile strength in RC buildings. The end composite is durable and fireproof. Generally, the main reason why concrete is not use on its own is due to its poor tensile strength.

7 0
2 years ago
HW6P2 (20 points) The recorded daily temperature (°F) in New York City and in Denver, Colorado during the month of January 2014
Maurinko [17]

Answer & Explanation:

function Temprature

NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];

DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];

%AVERAGE CALCULATION AND ROUND TO NEAREST INT

avgNYC=round(mean(NYC));

avgDEN=round(mean(DEN));

fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);

fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);

%part B

count=1;

NNYC=0;

NDEN=0;

while count<=length(NYC)

   if NYC(count)>avgNYC

       NNYC=NNYC+1;

   end

   if DEN(count)>avgDEN

        NDEN=NDEN+1;

   end

   count=count+1;

end

fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);

fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);

%part C

count=1;

highDen=0;

while count<=length(NYC)

   if NYC(count)>DEN(count)

       highDen=highDen+1;

   end

   count=count+1;

end

fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);

end

%output

check the attachment for additional Information

8 0
3 years ago
How large a force is required to accelerate a 1300 kg car from rest to a speed of 20 m/s in a distance of 80 m?
topjm [15]

F=m*a

F=80*20

F =1600 ans"

7 0
2 years ago
Read 2 more answers
Other questions:
  • What parts does the block contain?
    5·2 answers
  • A small family home in Tucson, Arizona has a rooftop area of 2667 square feet, and it is possible to capture rain falling on abo
    5·1 answer
  • Block A has a weight of 8 lb. and block B has a weight of 6 lb. They rest on a surface for which the coefficient of kinetic fric
    8·1 answer
  • 10. When an adhesion bond is made by melting a filler metal and allowing it to spread into the pores of the
    7·1 answer
  • You will be observing laminar-turbulent transition for room temperature (about 20°C) water flowing in a 0.602"" ID pipe (Schedul
    8·1 answer
  • A diesel engine with an engine volume of 4.0 L and an engine speed of 2500 rpm operates on an air–fuel ratio of 18 kg air/kg fue
    6·2 answers
  • The application of technology results in human-made things called
    9·1 answer
  • 7. The binary addition 1 + 1 + 1 gives ​
    12·2 answers
  • How does the Ivanpah Solar Plant make electricity?
    12·1 answer
  • Explain your own understanding about the relevant connections between the four subsystems of Earth through the use of a creative
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!