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
saw5 [17]
3 years ago
12

Can someone explain the answer for this question please? -metrology

Engineering
1 answer:
Mademuasel [1]3 years ago
5 0

Answer:

Metrology is “the science of measurement, embracing both experimental and theoretical determinations at any level of uncertainty in any field of science and technology,” as defined by the International Bureau of Weights and Measures  

Explanation:

In simple terms, Metrology is the study or science of measurement. Metrology provides the quality assurance behind modern-day manufacturing processes. It is the science that enables production lines to produce thousands of identical pieces of sophisticated equipment.

You might be interested in
A hawser is wrapped two full turns around a bollard. By exerting an 80-lb force on the free end of the hawser, a dockworker can
Brut [27]

Answer:

μ=0.329, 2.671 turns.

Explanation:

(a)   ln(T2/T1)=μβ         β=angle of contact in radians

take T2 as greater tension value and T1 smaller, otherwise the friction would be opposite.

T2=5000 lb and T1=80 lb

we have two full turns which makes total angle of contact=4π  radians

μ=ln(T2/T1)/β=(ln(5000/80))/4π  

μ=0.329

(b) using the same relation as above we will now compute the angle of contact.

take greater tension as T2 and smaller as T1.

T2=20000 lb     T1=80 lb   μ=0.329

β=ln(20000/80)/0.329=16.7825 radians

divide the angle of contact by 2π to obtain number of turns.

16.7825/2π =2.671 turns

4 0
3 years ago
A gas turbine operates with a regenerator and two stages of reheating and intercooling. Air enters this engine at 14 psia and 60
Rzqust [24]

Answer:

flow(m) = 7.941 lbm/s

Q_in = 90.5184 Btu/lbm

Q_out = 56.01856 Btu/lbm

Explanation:

Given:

- T_1 = 60 F = 520 R

- T_6 = 940 = 1400 R

- Heat ratio for air k = 1.4

- Compression ratio r = 3

- W_net,out = 1000 hp

Find:

mass flow rate of the air

rates of heat addition and rejection

Solution:

- Using ideal gas relation compute T_2, T_4, T_10:

                     T_2 = T_1 * r^(k-1/k)

                     T_2 = T_4 = T_10 = 520*3^(.4/1.4) = 711.744 R

- Using ideal gas relation compute T_7, T_5, T_9:

                     T_7 = T_6 * r^(-k-1/k)

                     T_7 = T_5 = T_9 = 1400*3^(-.4/1.4) = 1022.84 R

- The mass flow rate is obtained by:

                     flow(m) = W_net,out / 2*c_p*(1400-1022.84-711.744+520)

                     flow(m) = 1000*.7068 / 2*0.24*(1400-1022.84-711.744+520)

                     flow(m) = 7.941 lbm/s

- The heat input is as follows:

                     Q_in = c_p*(T_6 - T_5)

                     Q_in = 0.24*(1400 - 1022.84)

                     Q_in = 90.5184 Btu/lbm

- The heat output is as follows:

                     Q_out = c_p*(T_10 - T_1)

                     Q_out = 0.24*(711.744 - 520)

                    Q_out = 56.01856 Btu/lbm

                                           

                     

5 0
3 years ago
Liquid benzene and liquid n-hexane are blended to form a stream flowing at a rate of 1700 lbm/h. An on-line densitometer (an ins
Taya2010 [7]
Let me think of that
5 0
3 years ago
If the surface energy of a magnesium oxide - nickel oxide (MgO-NiO) solid solution is 1.05 J/m2 and its elastic modulus is 198 G
Nastasia [14]

Answer:

The maximum length is 3.897×10^-5 mm

Explanation:

Extension = surface energy/elastic modulus

surface energy = 1.05 J/m^2

elastic modulus = 198 GPa = 198×10^9 Pa

Extension = 1.05/198×10^9 = 5.3×10^-12 m

Strain = stress/elastic modulus = 27×10^6/198×10^9 = 1.36×10^-4

Length = extension/strain = 5.3×10^-12/1.36×10^-4 = 3.897×10^-8 m = 3.897×10^-8 × 1000 = 3.897×10^-5 mm

7 0
3 years ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

for(int i=0;i<n;i++)

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

for(int i=0;i<n;i++)

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
Other questions:
  • How many volts does one cell produce?
    14·2 answers
  • The flatbed truck carries a large section of circular pipe secured only by the two fixed blocks A and B of height h. The truck i
    14·2 answers
  • Steam enters an adiabatic turbine at 8 MPa and 500C with a mass flow rate of 3
    11·1 answer
  • What are two reasons why Hunter edjucation is important?<br><br><br> 30 pts
    12·1 answer
  • There are three options for heating a particular house: a. Gas: $1.33/therm where 1 therm=105,500 kJ b. Electric Resistance: $0.
    9·1 answer
  • Convert 103.69 kN to TN.
    14·1 answer
  • Choose the correct word or phrase to complete the sentence to explain human intervention in a machine system.
    13·1 answer
  • In a device to produce drinking water, humid air at 320C, 90% relative humidity and 1 atm is cooled to 50C at constant pressure.
    14·1 answer
  • 1. Lea y analice la Norma ISO 16949 - Calidad en la industria automotriz, luego se ubica en los requisitos particulares, usted m
    12·1 answer
  • A tank with a volume of 40 cuft is filled with a carbon dioxide and air mixture. The pressure within the tank is 30 psia at 70oF
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!