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
lesya [120]
3 years ago
13

Which is an example of a subsystem and system relationship?

Engineering
1 answer:
Zanzabum3 years ago
6 0

The example of a subsystem and system relationship is option

A) mechanical toggle, Xbox controller

Explanation:

  • Controls and Controllers are known as the mechanical, electro-mechanical, or electronic devices which are used to  input signals to change the conditions or values which are in processes or access to buildings, operators, gated areas, etc.
  • When you press and hold the given Shift button, these buttons which are chosen becomes an alternate inputs.
  • Normally, there are three controllers(PID) which are used in any of the process industries inorder to maintain and control the required setpoint.
  • an example of a subsystem and system relationship is a mechanical toggle, Xbox controller
  • Controllers improve the steadiness and state of accuracy by decreasing the steady state error. When the steady state accuracy gets better, the stability also improves.
  • Controllers are also used to help in reducing the unwanted offsets which are produced by the system.

You might be interested in
A coil with an average diameter of 5 inch will have an area of ""blank"" square meters
nadezda [96]

Answer:

19.64 square inches

Explanation:

Area will be (¶d^2)/4

= (3.142 x 5^2)/4

= 19.64 square inches

8 0
3 years ago
Lab scale tests performed on a cell broth with a viscosity of 5cP gave a specific cake resistance of 1 x1011 cm/g and a negligib
insens350 [35]

Answer:

5.118 m^3/hr

Explanation:

Given data:

viscosity of cell broth = 5cP

cake resistance = 1*1011 cm/g

dry basis per volume of filtrate = 20 g/liter

Diameter = 8m ,  Length = 12m

vacuum pressure = 80 kpa

cake formation time = 20 s

cycle time = 60 s

<u>Determine the filtration rate in volumes/hr  expected fir the rotary vacuum filter</u>

attached below is a detailed solution of the question

Hence The filtration rate in volumes/hr expected for the rotary vacuum filter

V' = ( \frac{60}{20} ) * 1706.0670

   = 5118.201 liters  ≈ 5.118 m^3/hr

4 0
2 years ago
120 litres of water is discharge from container in 25 seconds. Find the rate of discharge in cumecs.if the discharge took place
notsponge [240]
<h2>Answer:</h2>

Rate of discharge in cumecs: <u>0.0048m³/s</u>.

Velocity flow: <u>24m/s</u>.

<h2>Explanation:</h2>

<h3>1. Find the rate of discharge in cumecs.</h3>

a. Convert from litres to m³.
120L*1000= 120000mL

120000mL=120000cm³

120000cm³/100³=0.12 m³.

b. Rate of discharge.

<em>If  0.12 m³ where discharged in 25 seconds, the rate of discharge is:</em>

0.12m³/25s = 0.0048m³/s.

<em />

<em />

<h3>2. Find the velocity flow.</h3>

Let's refer to the fluid mechanics equation that relates volume flow, area and velocity. This is the formula:

\frac{dV}{dt}=Av; where the expression \frac{dV}{dt} is the volume flow rate (in m³/s); A is the cross-sectional area of the pipe (in m²), and v is the velocity flow (in m/s).

a. Solve the equation for v.

\frac{dV}{dt}=Av\\ \\(\frac{dV}{dt})/A=v\\ \\v=(\frac{dV}{dt})/A

b. Calculate the cross-sectional area of the pipe.

<em>The cross-sectional area of the pipe is a circle. Hence, the formula of this area is:</em>

A=\pi r^{2}

<em>We'll have to convert the diameter to meters, because the formula for flow velocity needs the area in m². Let's go ahead and do that.</em>

<em />50mm/1000=0.05m.

<em>We were given the diameter, and the formula uses the radius, but the radius is just half of the diameter, therefore, we can substitute in toe formula like this:</em>

A=\pi (\frac{0.05}{2} )^{2}=0.0020m^{2}

c. Substitute in the new expression for velocity flow and calculate.

v=(\frac{dV}{dt})/A\\ \\v=(\frac{0.048m^{3} }{1s})/(0.0020m^{2} )\\\\ v= 24m/s

8 0
2 years ago
When a motorist passes a bicyclist, what is the minimum legal distance (clearance) to leave between vehicle and bike? *
Vladimir79 [104]
There is no legal minimum distance
8 0
3 years ago
Your program must output each student’s name in the form: last name followed by a comma, followed by a space, followed by the fi
Reptile [31]

Answer:

#include <iostream>

#include <string>

#include <fstream>

using namespace std;

char getStudentGrade(int testScore);

//Declare constant max students in file 10

const int maxStudents = 10;

struct StudentType

{

  string studentFName;

  string studentLName;

  int testScore;

  char grade;

};

void readStudentData(StudentType students[]){

  int i = 0;

 

  ifstream infile;

  infile.open("inputStudentData.txt");

 

 

  while (!infile.eof())

  {

   infile >> students[i].studentFName;

   infile >> students[i].studentLName;

   infile >> students[i].testScore;

   students[i].grade = getStudentGrade(students[i].testScore);

      i++;

  }

}

char getStudentGrade(int testScore){

  char grade;

  if(testScore >= 80) {

      grade = 'A';      

  }

  else if(testScore >= 60) {

      grade = 'B';

  }

  else if(testScore >= 50) {

      grade = 'C';  

  }

  else if(testScore >= 40) {

      grade = 'D';      

  }

  else {

      grade = 'F';  

  }

  return grade;

}

int main()

{

 

  StudentType students[10];

 

  readStudentData(students);

 

  for(int i=0;i<maxStudents;i++) {

      students[i].grade = getStudentGrade(students[i].testScore);

  }

 

  for(int i=0; i<maxStudents; i++){    

      cout << students[i].studentLName <<", " << students[i].studentFName << " " << students[i].grade << endl;

  }

  ofstream outputFile;

  outputFile.open ("outputStudentData.txt");

 

  for(int i=0; i<maxStudents; i++){    

      outputFile << students[i].studentLName <<", " << students[i].studentFName << " " << students[i].grade << endl;

  }

  outputFile.close();

  return 0;

}

3 0
3 years ago
Other questions:
  • I logged on today to work on my makeup work. <br> A: True<br> B: False
    5·2 answers
  • What are cars manufactured with today that allows for quick stopping without the brakes locking up?
    5·1 answer
  • Go online and search for information about companies that have been harmed or bankrupted by a disaster. Choose one such company
    11·1 answer
  • A composite wall is made of two layers of 0.3 m and 0.15 m thickness with surfaces held at 600°C and 20°C respectively. If the c
    9·1 answer
  • My t!t$ feel sore and heavyy
    13·1 answer
  • Which of these people is an engineer?
    13·1 answer
  • If an elevator repairer observes that cables begin to fray after 15 years, what process might he or she use to create a maintena
    11·1 answer
  • How to comment other people
    9·2 answers
  • Explain how you would solve for total resistance in a parallel circuit versus a series circuit. How would you apply and solve fo
    10·1 answer
  • What is photosynthesis​
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!