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
navik [9.2K]
4 years ago
10

The engine of a 2000kg car has a power rating of 75kW. How long would it take (seconds) to accelerate from rest to 100 km/hr at

full power on level road. Neglect drag and friction.
Engineering
1 answer:
Delvig [45]4 years ago
4 0

Answer: 10.29 sec.

Explanation:

Neglecting drag and friction, and at road level , the energy developed during the time the car is accelerating, is equal to the change in kinetic energy.

If the car starts from rest, this means the following:

ΔK = 1/2 m*vf ²

As Power (by definition) is equal to Energy/Time= 75000 W= 75000 N.m/seg, in order to get time in seconds, we need to convert 100 km/h to m/sec first:

100 (Km/h)*( 1000m /1 Km)*(3600 sec/1 h)= 27,78 m/sec

Now, we calculate the change in energy:

ΔK= 1/2*2000 Kg. (27,78)² m²/sec²= 771,728 J

<h2>If P= ΔK/Δt, </h2><h2>Δt= ΔK/P= 771,728 J / 75,000 J/sec= 10.29 sec.</h2>
You might be interested in
For the pipe-fl ow-reducing section of Fig. P3.54, D 1 5 8 cm, D 2 5 5 cm, and p 2 5 1 atm. All fl uids are at 20 8 C. If V 1 5
bonufazy [111]

Answer:

The total force resisted by the flange bolts is  163.98 N

Explanation:

Solution

The first step is to find  the pipe cross section at the inlet section

Now,

A₁ = π /4 D₁²

D₁ =  diameter of the pipe at the inlet section

Now we insert 8 cm for D₁ which gives us A₁ = π /4 D (8)²

=50.265 cm² * ( 1 m²/100² cm²)

= 5.0265 * 10^⁻³ m²

Secondly, we find cross section area of  the pipe at the inlet section

A₂ = π /4 D₂²

D₂ =  diameter of the pipe at the inlet section

Now we insert 5 cm for D₁ which gives us A₁ = π /4 D (5)²

= 19.63 cm² * ( 1 m²/100² cm²)

= 1.963 * 10^⁻³ m²

Now,

we write down the conversation mass relation which is stated as follows:

Q₁ = Q₂

Where Q₁ and Q₂ are both the flow rate at the exist and inlet.

We now insert A₁V₁ for Q₁ and A₂V₂ for Q₂

So,

V₁ and V₂ are defined as the velocities at the inlet and exit

We now insert 5.0265 * 10^⁻³ m² for A₁ 5 m/s for V₁ and 1.963 * 10^⁻³ m² for A₂

= 5.0265  * 5 = 1.963 * V₂

V₂ = 12.8 m/s

Note: Kindly find an attached copy of the part of the solution to the given question below

8 0
3 years ago
the AADT for a section of suburban freeway is 150000 veh/day. Assuming this is an urban radial facility, what range of direction
igomit [66]

Answer:

design hour volumes will be 4000 to 6000

Explanation:

given data

AADT  = 150000 veh/day

solution

we get here design hour volumes that is express as

design hour volumes  = AADT × k × D    ..............1

here k is factor and its  range is 8 to 12 % for urban

and D is directional distribution i.e traffic equal divided by the direction

so here design hour volumes will be 4000 to 6000

7 0
3 years ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
Please help this is due today!!!!!
White raven [17]

Answer:

1:c 2:False

Explanation:

7 0
3 years ago
Briefly describe the function of the thermostatic expansion valve in a vapour compression refrigeration system
dalvyx [7]

Answer:

Explanation:

Thermostatic expansion valve is mainly a throttling device commonly used in air conditioning systems and refrigerators.

It is an automatic valve that maintains proper flow of refrigerant in the evaporator according to  the load inside the evaporator. When the load in the evaporator is higher the valve opens and  allows the increase in flow of refrigerant and when the load reduces the valve closes a bit and  reduces the flow of refrigerant. This process leads to higher efficiency of compressor as well as the whole refrigeration system.  Thus TEV works to reduce the pressure of refrigerant from higher condenser pressure to the lower evaporator pressure. It also keeps the evaporator active.      

4 0
3 years ago
Other questions:
  • A corroded metal gusset plate was found on a bridge. It was estimated that the original area of the plate was 750 cm2 and that a
    11·1 answer
  • 100 points Im so bored lol
    11·2 answers
  • A thick spherical pressure vessel of inner radius 150 mm is subjected to maximum an internal pressure of 80 MPa. Calculate its w
    9·1 answer
  • 2.31 LAB: Simple statistics Part 1 Given 4 integers, output their product and their average, using integer arithmetic. Ex: If th
    5·2 answers
  • FREEEEEE POOIIIINTS RIGHT HERE EVERYONE LEVEL UPPPP​
    13·2 answers
  • As an employee, who is supposed to provide training on the chemicals you are handling or come in contact with at work?
    5·2 answers
  • Con que otro nombre se le conoce a los delitos informaticos
    5·1 answer
  • I will give Brainliest, please help. :)
    11·2 answers
  • Tech B says that long-term fuel trims that are positive means that the PCM is leaning out the fuel mixture from the base pulse-w
    11·2 answers
  • You have three gear wheels a, b and c connected to each other,if you turn the first gear wheel "a" clockwise what will happen to
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!