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
11Alexandr11 [23.1K]
3 years ago
10

Determine the time required for a car to travel 1 km along a road if the car starts from rest, reaches a maximum speed at some i

ntermediate point, and then stops at the end of the road. The car can accelerate at 1.5 m/s2 and decelerate at 2 m/s2. ​

Engineering
1 answer:
lbvjy [14]3 years ago
8 0

Total time taken by car to travel 1 km distance is 48.2 seconds

Explanation:

Given data-

Total distance- 1 km= 1000m

Car starts from rest- Hence the initial velocity (u)= 0 m/s

Then, car accelerates at 1.5 m/s ²

Let us suppose with these acceleration car reaches the max speed of V

Car then decelerates at rate of 2 m/s ²

Finally, car comes to rest

We need to consider the question in two parts

Part 1= when car starts from rest and reaches the value V in the time tₐ at the distance s₁.

Part 2= When car starts from V and finally stops at 1 km mark in the time tₙ in distance 1000-s₁.

For the part 1

We know the formula  

v= u + a*tₐ

where v= final velocity

u- initial velocity

a= acceleration

tₐ= time period

At the starting u= 0  

Hence the equation reduces to V=0+1.5tₐ

Or V= 1.5tₐ                             Eq 1

We also know that s= u*tₐ+ ¹/₂*a*tₐ²

Where s₁= distance covered  (other symbols same meaning)

Since u=0   (u*tₐ=0)

s₁ = ¹/₂*1.5*tₐ²

s₁= ½* 1.5*tₐ²                    -------------Eq 2

Now considering Part 2

Here the case is deceleration hence the equation would change (symbols same)

v= V-a*tₙ     final velocity(v)=0 (car stops finally) & initial velocity (part 2)= V

V= a*tₙ

V=2*tₙ                                 -----------Eq 3

Similarly  

1000-s₁= V* tₙ+¹/₂*(-2) *(tₙ)²

1000-s₁= V* tₙ-tₙ²                      -------Eq 4

Comparing Eq 1 and Eq 3

V= 1.5tₐ  and V=2tₙ                                                              

1.5tₐ = 2 tₙ

tₐ=1.33 tₙ  

Using the above value of tₐ in Eq 1

V= 1.5 tₐ and tₐ= 1.33 tₙ

V= 2tₙ

Similarly from Eq 2 and putting the value of tₙ

s₁= ½*1.5*tₐ²      

s₁=  1.33*(tₙ)²

Substituting the above values in equation 4

1000-s₁= V* tₙ-tₙ²                      

1000- 1.33(tₙ)²=2*(tₙ)*(tₙ)- tₙ²

1000=2.33 (tₙ)²

tₙ=      1000/2.333    

tₙ= 20.7 sec

Similarly putting the value of tₙ in tₐ= 1.33 tₙ

tₙ= 27.5 sec

Hence total time is tₐ +tₙ  

T= 20.7+27.5= 48.2 sec                

You might be interested in
A cold air standard gas turbine engine with a thermal efficiency of 56.9 % has a minimum pressure of 100 kP
Aleks04 [339]

Answer:

a) 5.2 kPa

b) 49.3%

Explanation:

Given data:

Thermal efficiency ( л ) = 56.9% = 0.569

minimum pressure ( P1 ) = 100 kpa

<u>a) Determine the pressure at inlet to expansion process</u>

P2 = ?

r = 1.4

efficiency = 1 - [ 1 / (rp)\frac{r-1}{r} ]

   0.569   = 1 - [ 1 / (rp)^0.4/1.4

1 - 0.569  = 1 / (rp)^0.285

∴ (rp)^0.285 = 0.431

rp = 0.0522

note : rp = P2 / P1

therefore P2 = rp * P1 = 0.0522 * 100 kpa

                                   = 5.2 kPa  

b) Thermal efficiency

Л = 1 - [ 1 / ( 10.9 )^0.285 ]

   = 0.493 = 49.3%

4 0
3 years ago
A vector AP is rotated about the Z-axis by 60 degrees and is subsequently rotated about X-axis by 30 degrees. Give the rotation
Musya8 [376]

Answer:

R = \left[\begin{array}{ccc}1&0&0\\0&cos30&-sin30\\0&sin30&cos30\end{array}\right]\left[\begin{array}{ccc}cos 60&-sin60&0\\sin60&cos60&60\0&0&1\end{array}\right]

Explanation:

The mappings always involve a translation and a rotation of the matrix. Therefore, the rotation matrix will be given by:

Let \theta and \alpha be the the angles 60⁰ and 30⁰ respectively

that is \theta = 60⁰ and

\alpha = 30⁰

The matrix is given by the following expression:

\left[\begin{array}{ccc}1&0&0\\0&cos30&-sin30\\0&sin30&cos30\end{array}\right]\left[\begin{array}{ccc}cos 60&-sin60&0\\sin60&cos60&60\0&0&1\end{array}\right]

The angles can be evaluated and left in the surd form.

4 0
3 years ago
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of several trips by record
Effectus [21]

Answer:

import java.util.*;

public class Main {

   

   public static void main(String[] args) {

     

       double milesPerGallon = 0;

       int totalMiles = 0;

       int totalGallons = 0;

       double totalMPG = 0;

       

       Scanner input = new Scanner(System.in);

 

       while(true){

           System.out.print("Enter the miles driven: ");

           int miles = input.nextInt();

           if(miles <= 0)

               break;

           else{

               System.out.print("Enter the gallons used: ");

               int gallons = input.nextInt();

               totalMiles += miles;

               totalGallons += gallons;

               milesPerGallon = (double) miles/gallons;

               totalMPG = (double) totalMiles / totalGallons;

               System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);

               System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);

           }

       }

   }  

}

Explanation:

Initialize the variables

Create a while loop that iterates until the specified condition is met inside the loop

Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.

6 0
3 years ago
The compressed-air tank has an inner radius r and uniform wall thickness t. The gage pressure inside the tank is p and the centr
Sedaia [141]

Answer:

Explanation:

Given that:

The Inside pressure (p) = 1402 kPa

= 1.402 × 10³ Pa

Force (F) = 13 kN

= 13 × 10³ N

Thickness (t) = 18 mm

= 18 × 10⁻³ m

Radius (r) = 306 mm

= 306 × 10⁻³ m

Suppose we choose the tensile stress to be (+ve) and the compressive stress to be (-ve)

Then;

the state of the plane stress can be expressed as follows:

(\sigma_ x)  = \dfrac{Pd}{4t}+ \dfrac{F}{2 \pi rt}

Since d = 2r

Then:

(\sigma_ x)  = \dfrac{Pr}{2t}+ \dfrac{F}{2 \pi rt}

(\sigma_ x)  = \dfrac{1402 \times 306 \times 10^3}{2(18)}+ \dfrac{13 \times 10^3}{2 \pi \times 306\times 18 \times 10^{-3} \times 10^{-3}}

(\sigma_ x)  = \dfrac{429012000}{36}+ \dfrac{13000}{34607.78467}

(\sigma_ x)  = 11917000.38

(\sigma_ x)  = 11.917 \times 10^6 \ Pa

(\sigma_ x)  = 11.917 \ MPa

\sigma_y = \dfrac{pd}{2t} \\ \\ \sigma_y = \dfrac{pr}{t} \\ \\  \sigma _y = \dfrac{1402\times 10^3 \times 306}{18} \ N/m^2 \\ \\ \sigma _y = 23.834 \times 10^6 \ Pa \\ \\ \sigma_y = 23.834 \ MPa

When we take a look at the surface of the circular cylinder parabolic variation, the shear stress is zero.

Thus;

\tau _{xy} =0

3 0
3 years ago
________is defined to be the probability that a failed component or system will be restored to a repaired specified condition wi
julsineya [31]

Answer:

Repairable component

Explanation:

Repairable component is defined to be the probability that a failed component or system will be restored to a repaired specified condition within a period of time when maintenance is performed in accordance with prescribed procedures.

6 0
3 years ago
Read 2 more answers
Other questions:
  • #198. Moment of inertia about center of a segmented bar A bar of width is formed of three uniform segments with lengths and area
    7·1 answer
  • Nitrogen enters a steady-flow heat exchanger at 150 kPa, 10°C, and 100 m/s, and it receives heat as it flows through it. Nitroge
    15·1 answer
  • Una frase de: ama la vida quien___________________________________
    6·1 answer
  • Air is compressed by a 30-kW compressor from P1 to P2. The air temperature is maintained constant at 25°C during this process as
    11·1 answer
  • Best budget freestyle drone?
    6·1 answer
  • Which Finance jobs can someone pursue with only a high school diploma? Check all that apply.
    10·2 answers
  • How do i do this? if y’all don’t mind helping lol
    13·1 answer
  • Choose the correct word or phrase to complete the sentence to explain human intervention in a machine system.
    13·1 answer
  • Resistance depends on which three properties of a wire?
    15·1 answer
  • Lynx eat snowshoe hares, and snowshoes hears eat plants. Which term can be applied to the lynx in this food chain example? Prima
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!