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
Harrizon [31]
3 years ago
13

1. True/False The Pressure Relief valve maintains the minimum pressure in the hydraulic circuit​

Engineering
1 answer:
elena55 [62]3 years ago
3 0
Yeah it’s true. Good luck!!
You might be interested in
A 2-mm-diameter electrical wire is insulated by a 2-mm-thick rubberized sheath (k = 0.13 W/m ? K), and the wire/sheath interface
Svet_ta [14]

Question

A 2-mm-diameter electrical wire is insulated by a 2-mm-thick rubberized sheath (k = 0.13 W/m.K), and the wire/sheath interface is characterized by a thermal contact resistance of Rtc = 3E-4m².K/W. The convection heat transfer coefficient at the outer surface of the sheath is 10 W/m²K, and the temperature of the ambient air is 20°C.

If the temperature of the insulation may not exceed 50°C, what is the maximum allowable electrical power that may be dissipated per unit length of the conductor? What is the critical radius of the insulation?

Answer:

a. 4.52W/m

b. 13mm

Explanation:

Given

Diameter of electrical wire = 2mm

Wire Thickness = 2-mm

Thermal Conductivity of Rubberized sheath (k = 0.13 W/m.K)

Thermal contact resistance = 3E-4m².K/W

Convection heat transfer coefficient at the outer surface of the sheath = 10 W/m²K,

Temperature of the ambient air = 20°C.

Maximum Allowable Sheet Temperature = 50°C.

From the thermal circuit (See attachment), we my write

E'q = q' = (Tin,i - T∞)/(R'cond + R'conv)

= (Tin,i - T∞)/(Ln (r in,o / r in,i)/2πk + (1/(2πr in,o h)))

Where r in,i = D/2

= 2mm/2

= 1 mm

= 0.001m

r in,o = r in,i + t = 0.003m

T in, i = Tmax = 50°C

Hence

q' = (50 - 20)/[(Ln (0.003/0.001)/(2π * 0.13) + 1/(2π * 0.003 * 10)]

= 30/[(Ln3/0.26π) + 1/0.06π)]

= 30/[(1.34) + 5.30)]

= 30/6.64

= 4.52W/m

The critical radius is unaffected by the constant resistance.

Hence

Critical Radius = k/h

= 0.13/10

= 0.013m

= 13mm

5 0
3 years ago
How long...you...novels? A. Have/write B. Do/write C. Have/written D. Did/go
soldi70 [24.7K]

Answer:

Answer is B.

Explanation:

Subject verb agreement

3 0
3 years ago
Read 2 more answers
Which of the following wouldn't be pictured on a fan motor's ladder logic diagram? A. Auxiliary contacts B. two Push-button cont
pychu [463]

Answer:

c

Explanation:

:)

7 0
3 years ago
4. The outer end of a control arm is attached to the steering knuckle through a
arlik [135]
Is attached to the spring
3 0
3 years ago
Read 2 more answers
1. The system must be able to manage multiple students (max of 15) and their grades for assignments from three different assignm
mr_godi [17]

Answer:

#include<iostream>

#include<string.h>

using namespace std;

class gradebook;

class student

{

friend class gradebook;

char name[20]; // std name

int homework_grades[6], quiz_grades[6], exam_grades[4]; //grades array

float homework_avg, quiz_avg, exam_avg, final_avg;

};

class gradebook

{

student list[16];

public:

char gb_name[20]; // gradebook name

int max, total;

// Constructor

gradebook()

{

strcpy(gb_name,"noname");

max = 5;

total = 0;

for(int i=1;i<=15;i++)

{

strcpy(list[i].name,"noname");

for(int j=1;j<=5;j++)

{

list[i].homework_grades[j] = -1;

list[i].quiz_grades[j] = -1;

}

list[i].exam_grades[1] = list[i].exam_grades[2] = list[i].exam_grades[3] = -1;

}

}

// Member functions

void display_std_name();

void display_grades(int, int);

int add_std(char *new_name);

int remove(int);

//int ch_grade(int, int);

};

// Define all functions

// Remove a student from list and adjust remaining

int gradebook::remove(int std_id)

{

if(total==0 || std_id>total || std_id<=0)

return 0;

if(std_id==total)

{

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

strcpy(list[total--].name,"noname");

return 1;

}

cout<<"\n“"<<list[std_id].name<<"” has been successfully removed! (New class size: 2)";

for(int i=std_id; i<total; i++)

{

list[i]=list[i+1];

}

total--;

return 1;

}

// Add student to gradebook

int gradebook::add_std(char *new_name)

{

if(total<15)

{

strcpy(list[++total].name, new_name);

return 1;

}

return 0;

}

// Display student name list

void gradebook::display_std_name()

{

for(int i=1;i<=total;i++)

{

cout<<"\n"<<i<<" "<<list[i].name;

}

}

/* Display grades of students

// (grade_id, student_number_in_list)

homework(1), quiz(2), exam(3)

*/

void gradebook::display_grades(int g_id, int std_id)

{

int i;

if(std_id<=total)

{

if(g_id==1)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].homework_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==2)

{

for(i=1;i<6;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].quiz_grades[i]==-1) cout<<"<ungraded>";

}

}

else if(g_id==3)

{

for(i=1;i<4;i++)

{

cout<<"\n"<<i<<". ";

if(list[std_id].exam_grades[i]==-1) cout<<"<ungraded>";

}

}

}

else

cout<<"\nNo such std exists";

}

/****************************** MAIN ****************************/

int main()

{

int main_choice, grade_choice, std_id, new_grade;

char g_name[20], s_name[20];

float a,b,c;

gradebook g;

do

{

cout<<"\n\n-=| MAIN MENU |=-";

cout<<"\n1. Add a student\n2. Remove a student\n3. Change a student’s grade\n4. Change group weights\n5. Change the gradebook name\n6. Display class averages\n7. Display full report\n0. QUIT\n";

cout<<"\nEnter an action: ";

cin>>main_choice;

switch(main_choice)

{

case 0:

break;

case 1:

cout<<"\n-=| ADDING STUDENT |=-";

cout<<"\nPlease enter the student’s name: ";

cin>>s_name;

if(g.add_std(s_name))

cout<<"\n"<<s_name<<" was successfully added to the gradebook!";

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 2:

cout<<"\n-=| REMOVING STUDENT |=-";

if(g.total!=0)

{

g.display_std_name();

cout<<"\n Enter student to remove: ";

cin>>std_id;

if(!g.remove(std_id))

cout<<"\nCannot remove students";

}

else

cout<<"\nStudents cannot be added because the gradebook is full!";

break;

case 3:

cout<<"\n-=| CHANGING GRADE |=-\n1. Change a homework grade\n2. Change a quiz grade\n3. Change an exam grade";

cout<<"\nWhat type of grade would you like to change: ";

cin>>grade_choice;

g.display_std_name();

cout<<"\nWhich student’s grade would you like to change? ";

cin>>std_id;

//ch_grade(grade_choice, std_id);

g.display_grades(grade_choice, std_id);

break;

/*

case 4:

cout<<"\n-=| CHANGING WEIGHTS |=-";

while(1)

{

cout<<"\nEnter the weights, separated by spaces, in the order of homework, quizzes, and exams (total must add up to 1.0):";

cin>>a>>b>>c;

if(a+b+c==1.00)

break;

else

cout<<"\n Weights do not add up to 1.0, try again...";

}

break;

case 5:

cout<<"\n-=| CHANGING NAME |=-\nPlease enter the new name for the gradebook: ";

cin>>g_name;

cout<<"\n Gradebook name changed from “ ” to "<<g_name;

break;

case 6:

cout<<"\n-=| CLASS AVERAGES |=-";

cout<<"\nHomework average of class: ";

cout<<"\nQuiz average of class: ";

cout<<"\nExam average of class: ";

cout<<"\nFinal average of class: ";

break;

case 7:

break;

*/

default:

cout<<"\n\nInvalid input\n\n";

}

}while(main_choice!=0);

return 0;

}

Explanation:

6 0
3 years ago
Other questions:
  • Based on parameters such as the materials shear modulus, diameter of the wire, mean coil diameter, and number of active coils (a
    11·1 answer
  • How do I cancel Trial subscription
    15·1 answer
  • Both a gage and a manometer are attached to a gas tank to measure its pressure. If the reading on the pressure gage is 65 kPa, d
    9·1 answer
  • Give three examples of how engineering has made human life better in your opinion.
    13·1 answer
  • This is due in a few hours but I appreciate it if it was answered soon so I can rest.
    5·1 answer
  • Unlike in a reguler panel, in a subpanel, the neutral bus must be completely isolated from the
    12·1 answer
  • Giving away points hope they help with your questions
    14·1 answer
  • A planes leaves Arcra ab 10:40pm and arrives in Germany at 07:32 the
    8·1 answer
  • A 50-mm cube of the graphite fiber reinforced polymer matrix composite material is subjected to 125-kN uniformly distributed com
    14·1 answer
  • Thrust is managed to maintain IAS, and glide slope is being flown. What characteristics should be observed when a headwind shear
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!