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
valentina_108 [34]
2 years ago
9

A work element in a manual assembly task consists of the following MTM-1 elements: (1) R16C, (2) G4A, (3) M10B5, (4) RL1, (5) R1

4B, (6) G1B, (7) M8C3, (8) P1NSE, and (9) RL1.
(a) Determine the normal times in TMUs for these motion elements.
(b) What is the total time for this work element in sec
Engineering
1 answer:
ella [17]2 years ago
7 0

Answer:

a)

1) R16C ; Tn = 17 TMU

2) G4A ; Tn = 7.3 TMU

3) M10B5 ; Tn = 15.1 TMU

4) RL1 ; Tn = 2 TMU

5) R14B ; Tn = 14.4 TMU

6) G1B ; Tn = 3.5 TMU

7) M8C3 ; Tn = 14.7 TMU

8) P1NSE ; Tn = 10.4 TMU

9) RL1 ; Tn = 2 TMU

b) 3.1 secs

Explanation:

a) Determine the normal times in TMUs for these motion elements

1) R16C ; Tn = 17 TMU

2) G4A ; Tn = 7.3 TMU

3) M10B5 ; Tn = 15.1 TMU

4) RL1 ; Tn = 2 TMU

5) R14B ; Tn = 14.4 TMU

6) G1B ; Tn = 3.5 TMU

7) M8C3 ; Tn = 14.7 TMU

8) P1NSE ; Tn = 10.4 TMU

9) RL1 ; Tn = 2 TMU

b ) Determine the total time for this work element in seconds

first we have to determine the total TMU = ∑ TMU = 86.4 TMU

note ; 1 TMU = 0.036 seconds

hence the total time for the work in seconds = 86.4 * 0.036 = 3.1 seconds

You might be interested in
What is the average linear (seepage) velocity of water in an aquifer with a hydraulic conductivity of 6.9 x 10-4 m/s and porosit
jeka94

Answer:

a. 0.28

Explanation:

Given that

porosity =30%

hydraulic gradient = 0.0014

hydraulic conductivity = 6.9 x 10⁻4 m/s

We know that average linear velocity given as

v=\dfrac{K}{n_e}\dfrac{dh}{dl}

v=\dfrac{6.9\times 10^{-4}}{0.3}\times0.0014\ m/s

v=3.22\times 10^{-6}\ m/s

The velocity in m/d      ( 1 m/s =86400 m/d)

v= 0.27 m/d

So the nearest answer is 'a'.

a. 0.28

4 0
2 years ago
Five hundred gallons of 89-octane gasoline is obtained by mixing 87-octane gasoline with 92-octane gasoline. (a) Write a system
miskamm [114]

Explanation:

a) The total volume equals the sum of the volumes.

500 = x + y

The total octane amount equals the sum of the octane amounts.

89(500) = 87x + 92y

44500 = 87x + 92y

b) desmos.com/calculator/ekegkzllqx

As x increases, y decreases.

c) Use substitution or elimination to solve the system of equations.

44500 = 87x + 92(500−x)

44500 = 87x + 46000 − 92x

5x = 1500

x = 300

y = 200

The required volumes are 300 gallons of 87 gasoline and 200 gallons of 92 gasoline.

6 0
3 years ago
Which of the following is a common use for commas?
andreyandreev [35.5K]

Answer:

connecting two independent clauses

4 0
3 years ago
Read 2 more answers
For unrestrained cube made from linear, isotropic, homogeneous material the temperature increase causes strain in_____ direction
LenKa [72]

Answer: The answer is four; four

Explanation: This is because of the mixture of material used and the number of directions it causes strain I directly proportional to the number of times it causes stress.

7 0
3 years ago
Reference Parameters (returning multiple values): Write a C++ function that converts standard time to military time. Inputs incl
valkas [14]

Answer:

Code is given as below:

Explanation:

#include <iostream>

using namespace std;

//function prototype declaration

void MilitaryTime(int, int, char, int &, int &);

int main()

{

    //declare required variables

    int SHour, SMin, MHour, MMin;

    char AorP;

    //promt and read the hours from the user

    cout<<"Enter hours in standard time : ";

    cin>>SHour;

    //check the hours are valid are not

    while(SHour<0 || SHour>12)

    {

         cout<<"Invalid hours for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter hours in standard time : ";

         cin>>SHour;

    }

    //promt and read the minutes from the user

    cout<<"Enter minutes in standard time : ";

    cin>>SMin;

    //check the minutes are valid are not

    while(SMin<0 || SMin>59)

    {

         cout<<"Invalid minutes for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter minutes in standard time : ";

         cin>>SMin;

    }

    //promt and read the am or pm from the user

    cout<<"Enter standard time meridiem (a for AM p for PM): ";

    cin>>AorP;

    //check the meridiem is valid are not

    while(!(AorP=='a' || AorP=='p' || AorP=='A' || AorP=='P'))

    {

         cout<<"Invalid meridiem for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter standard time meridiem (a for AM p for PM): ";

         cin>>AorP;

    }

    //call function to calculate the military time

    MilitaryTime(SHour, SMin, AorP, MHour, MMin);

    //fill zeros and display standard time

    cout.width(2);

    cout.fill('0');

    cout<<SHour<<":";

    cout.width(2);

    cout.fill('0');

    cout<<SMin;

    if(AorP=='a' || AorP=='A')

         cout<<" am = ";

    else

         cout<<" pm = ";

    //fill zeros and display military time

    cout.width(2);

    cout.fill('0');

    cout<<MHour;

    cout.width(2);

    cout.fill('0');

    cout<<MMin<<endl;

    system("PAUSE");

    return 0;

}

//function to calculate the military time with reference parameters

void MilitaryTime(int SHour, int SMin, char AorP, int &MHour, int &MMin)

{

    //check the meredium is am or pm

    //and calculate hours

    if(AorP=='a' || AorP=='A')

    {

         if(SHour==12)

             MHour = 0;

         else

             MHour = SHour;

    }

    else

         MHour = SHour+12;

    MMin = SMin;

5 0
3 years ago
Other questions:
  • Let suppose, you are going to develop a web-application for school management system. Then what architectural pattern will you u
    9·1 answer
  • (TCO 1) Name one disadvantage of fixed-configuration switches over modular switches. a. Ease of management b. Port security b. F
    6·1 answer
  • In this type of projection, the angles between the three axes are different:- A) Isometric B) Axonometric C) Trimetric D) Dimetn
    11·1 answer
  • Consider a very long, cylindrical fin. The temperature of the fin at the tip and base are 25 °C and 50 °C, respectively. The dia
    14·1 answer
  • Suppose a student rubs a Teflon rod with wool and then briefly touches it to an initially neutral aluminum rod suspended by insu
    6·1 answer
  • Thermodynamics deals with the macroscopic properties of materials. Scientists can make quantitative predictions about these macr
    13·1 answer
  • What is the maximum fine for knowingly refilling a disposable refrigerant drum?
    11·1 answer
  • An American architect whose principles of building included consonance with the landscape was ____________________________.
    13·1 answer
  • A pipe fitter would fabricate which one of the following systems?
    13·1 answer
  • Not all projects that engineers work on will have human factors involved.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!