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
Ipatiy [6.2K]
3 years ago
8

Race car is accelerating and has a velocity of 10 m/s @ t=0. It completes a lap on a circular track of 400 m in 14 seconds. Calc

ulate the components and magnitude of acceleration after the car has travelled 200 m. Assume acceleration along track is constant.
Engineering
1 answer:
wariber [46]3 years ago
8 0

Answer:

component of acceleration are a = 3.37 m/s² and ar = 22.74 m/s²

magnitude of acceleration is  22.98 m/s²

Explanation:

given data

velocity = 10 m/s

initial time to = 0

distance s = 400 m

time t = 14 s

to find out

components and magnitude of acceleration after the car has travelled 200 m

solution

first we find the radius of circular track that is

we know  distance S = 2πR

400 = 2πR

R = 63.66 m

and tangential acceleration is

S = ut + 0.5 ×at²

here u is initial speed and t is time and S is distance

400 = 10 × 14  + 0.5 ×a (14)²

a = 3.37 m/s²

and here tangential acceleration is constant

so  velocity at distance 200 m

v² - u² = 2 a S

v² = 10² + 2 ( 3.37) 200

v = 38.05 m/s

so radial acceleration at distance 200 m

ar = \frac{v^2}{R}

ar = \frac{38.05^2}{63.66}

ar = 22.74 m/s²

so magnitude of total acceleration is

A = \sqrt{a^2 + ar^2}

A = \sqrt{3.37^2 + 22.74^2}

A = 22.98 m/s²

so magnitude of acceleration is  22.98 m/s²

You might be interested in
Situation: Peter is designing a new hybrid car that functions on solar power. He is currently working on sketches of his design
givi [52]

Answer:

whats the question?

Explanation:

8 0
2 years ago
Who can use NIST resources?
sukhopar [10]

Answer:

Federal agencies

Explanation:

NIST (National Institute of Standards and Technology) also called between 1901 and 1988 National Bureau of Standards (NBS), it is an agency of the Technology Administration of the United States Department of Commerce. The mission of this institute is to promote innovation and industrial competition in the United States through advances in metrology, standards and technology in ways that improve economic stability and quality of life.

As part of this mission, NIST scientists and engineers continually refine the science of measurement (metrology) by creating precise engineering and manufacturing required for most current technological advances. They are also directly involved in the development and testing of standards made by the private sector and government agencies. The NIST was originally called the National Bureau of Standards (NBS), a name it had from 1901 to 1988. The progress and technological innovation of the United States depends on the abilities of the NIST, especially if we talk about four areas: biotechnology , nanotechnology, information technologies and advanced manufacturing.

7 0
3 years ago
• Build upon the results of problem 3-85 to determine the minimum factor of safety for fatigue based on infinite life, using the
Rudik [331]

Answer:

minimum factor of safety for fatigue is = 1.5432

Explanation:

given data

AISI 1018 steel cold drawn as table

ultimate strength Sut = 63.800 kpsi

yield strength Syt = 53.700 kpsi

modulus of elasticity E = 29.700 kpsi

we get here

\sigma a = \sqrt{(\sigma a \times kb)^2+3\times (za\times kt)^2}    ...........1

here kb and kt = 1 combined bending and torsion fatigue factor

put here value and we get

\sigma a =  \sqrt{(12 \times 1)^2+3\times (0\times 1)^2}  

\sigma a = 12 kpsi

and

\sigma m = \sqrt{(\sigma m \times kb)^2+3\times (zm\times kt)^2}     ...........2

put here value and we get

\sigma m = \sqrt{(-0.9 \times 1)^2+3\times (10\times 1)^2}  

\sigma m = 17.34 kpsi

now we apply here goodman line equation here that is

\frac{\sigma m}{Sut} +  \frac{\sigma a}{Se} = \frac{1}{FOS}     ...................3

here Se = 0.5 × Sut

Se = 0.5 × 63.800 = 31.9 kspi

put value in equation 3 we get

\frac{17.34}{63.800} +  \frac{12}{31.9} = \frac{1}{FOS}  

solve it we get

FOS = 1.5432

6 0
3 years ago
(40 points) Program the following sorting algorithms: InsertionSort, MergeSort, and QuickSort. There are 9 test les uploaded for
babunello [35]

Answer:

Explanation:

MERGE SORT

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

void merge(int arr[], int l, int m, int r)

{

int i, j, k;

int n1 = m - l + 1;

int n2 = r - m;

 

int L[n1], R[n2];

for (i = 0; i < n1; i++)

L[i] = arr[l + i];

for (j = 0; j < n2; j++)

R[j] = arr[m + 1+ j];

i = 0;

j = 0;

k = l;

while (i < n1 && j < n2)

{

if (L[i] <= R[j])

{

arr[k] = L[i];

i++;

}

else

{

arr[k] = R[j];

j++;

}

k++;

}

while (i < n1)

{

arr[k] = L[i];

i++;

k++;

}

while (j < n2)

{

arr[k] = R[j];

j++;

k++;

}

}

void mergeSort(int arr[], int l, int r)

{

if (l < r)

{

int m = l+(r-l)/2;

mergeSort(arr, l, m);

mergeSort(arr, m+1, r);

merge(arr, l, m, r);

}

}

void printArray(int A[], int size)

{

int i;

for (i=0; i < size; i++)

printf("%d ", A[i]);

printf("\n");

}

int main()

{

int arr[1000] = {0};

int arr_size =0;

int data;

char file1[20];

strcpy(file1,"data.txt");

FILE *fp;

fp = fopen(file1,"r+");

if (fp == NULL) // if file not opened return error

{

perror("Unable to open file");

return -1;

}

else

{

fscanf (fp, "%d", &data);    

arr[arr_size]=data;

arr_size++;

while (!feof (fp))

{  

fscanf (fp, "%d", &data);  

arr[arr_size]=data;

arr_size++;    

}

}

printf("Given array is \n");

printArray(arr, arr_size);

mergeSort(arr, 0, arr_size - 1);

printf("\nSorted array Using MERGE SORT is \n");

printArray(arr, arr_size);

return 0;

}

3 0
3 years ago
Write down at least two things that the mine winch
sveticcg [70]
I don’t know what the
4 0
3 years ago
Other questions:
  • A gasoline engine has a piston/cylinder with 0.1 kg air at 4 MPa, 1527◦C after combustion, and this is expanded in a polytropic
    14·1 answer
  • Use the orange points (square symbol) to plot the initial short-run industry supply curve when there are 20 firms in the market.
    5·1 answer
  • ____ technologies are new technologies that are not currently widely employed.
    15·2 answers
  • In designing a fixed-incline self-acting thrust pad when the width of the pad is much larger than the length, it is of interest
    10·1 answer
  • Design a plate and frame heat exchanger for the following problem:
    10·1 answer
  • Suppose you are asked to design an office building. Explain what type of drawing you would use and why.
    8·2 answers
  • Some_____
    10·1 answer
  • A house that was heated by electric resistance heaters consumed 1500 kWh of electric
    6·1 answer
  • A. The ragion was colonized by European powers
    6·1 answer
  • I’m in Sociology Class guys and I need help on this question!
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!