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
Alenkasestr [34]
3 years ago
9

The water in an 8-m-diameter, 3-m-high above-ground swimming pool is to be emptied by unplugging a 3-cm-diameter, 25-m-long hori

zontal pipe attached to the bottom of the pool. Determine the maximum discharge rate of water through the pipe in liters per second.
Engineering
1 answer:
Dima020 [189]3 years ago
8 0

Answer:

The maximum discharge rate of water is 4.6 L/s

Explanation:

Given data:

d=diameter=8 m

h=height=3 m

The mathematical expression for the theoritical velocity is:

v_{th} =\sqrt{2gh} =\sqrt{2*9.8*3} =7.6681m/s

The maximum discharge can be calculate by:

Q=C_{d} Av_{th}

Here

Cd=coefficient of discharge=0.855

Q=0.855*\frac{\pi }{4} *d^{2} *vx_{th} =0.855*\frac{\pi }{4} *0.03^{2} *7.6681=0.0046m^{3} /s=4.6L/s

You might be interested in
Calculate the radius of gyration for a bar of rectangular cross section with thickness t and width w for bending in the directio
SVEN [57.7K]

Answer:

a)R= sqrt( wt³/12wt)

b)R=sqrt(tw³/12wt)

c)R= sqrt ( wt³/12xcos45xwt)

Explanation:

Thickness = t

Width = w

Length od diagonal =sqrt (t² +w²)

Area of raectangle = A= tW

Radius of gyration= r= sqrt( I/A)

a)

Moment of inertia in the direction of thickness I = w t³/12

R= sqrt( wt³/12wt)

b)

Moment of inertia in the direction of width I = t w³/12

R=sqrt(tw³/12wt)

c)

Moment of inertia in the direction of diagonal I= (w t³/12)cos 45=( wt³/12)x 1/sqrt (2)

R= sqrt ( wt³/12xcos45xwt)

4 0
3 years ago
A cold storage room is used to keep the temperature inside the room maintain at low temperature.
lianna [129]

Answer:

The power of the brick wall it may be how the soiled ness of the wall too keep in the cold

Explanation:

5 0
3 years ago
Read 2 more answers
Which of the following tools might civil engineers use when designing roads in a recently constructed industrial park?
Dmitry [639]

Answer:D. Gunter's Chain

Explanation:I know this because a gunter's chain is used for plots of land to be accurately surveyed and plotted, for legal and commercial purposes.

6 0
3 years ago
Read 2 more answers
Bessy's calf weighed 99.19 pounds when calved on March 7th. Her calf gained an average of 1.85 pounds per day for 266 days. What
Zepler [3.9K]

Answer:

591.3

Explanation:

99.19 + (1.85 × 266) = 591.29

rounded = 591.3

4 0
4 years ago
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

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

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
Other questions:
  • A heat pump receives heat from a lake that has an average wintertime temperature of 6o C and supplies heat into a house having a
    12·1 answer
  • A Service Schedule is...
    8·2 answers
  • An uncovered swimming pool loses 1.0 inch of water off its 1,000 ft^2 surface each week due to evaporation. The heat of vaporiza
    14·1 answer
  • Write a function named is_float(s) that takes one argument that is a string. It returns True if string s represents a floating p
    6·1 answer
  • Describe the make-up of an internal combustion engine.<br> Pls answer quickly.
    5·1 answer
  • Jnjn freeeeeeeeeeeeeeeeeeeeeeeeeeeeeee pointtttttttttt
    15·2 answers
  • A 1/4" nut driver with a 1.52 inch diameter handle is used to install a 14" 6 UNC
    13·1 answer
  • HELP _7. All of the following except which would lead to an INCREASE in friction?
    15·1 answer
  • What measurement is the usable area of conduit based on?
    11·1 answer
  • Silicon chips are used primarily in ?
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!