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

The dam cross section is an equilateral triangle, with a side length, L, of 50 m. Its width into the paper, b, is 100 m. The dam

material has a specific gravity, SG, of 3.1. You may assume that the dam is loosely attached to the ground at its base, though there is significant friction to keep it from sliding.Is the weight of the dam sufficient to prevent it from tipping around its lower right corner?
Engineering
1 answer:
lisabon 2012 [21]2 years ago
6 0

Answer:

Explanation:

In an equilateral trinagle the center of mass is at 1/3 of the height and horizontally centered.

We can consider that the weigth applies a torque of T = W*b/2 on the right corner, being W the weight and b the base of the triangle.

The weigth depends on the size and specific gravity.

W = 1/2 * b * h * L * SG

Then

Teq = 1/2 * b * h * L * SG * b / 2

Teq = 1/4 * b^2 * h * L * SG

The water would apply a torque of elements of pressure integrated over the area and multiplied by the height at which they are apllied:

T1 = \int\limits^h_0 {p(y) * sin(30) * L * (h-y)} \, dy

The term sin(30) is because of the slope of the wall

The pressure of water is:

p(y) = SGw * (h - y)

Then:

T1 = \int\limits^h_0 {SGw * (h-y) * sin(30) * L * (h-y)} \, dy

T1 = \int\limits^h_0 {SGw * sin(30) * L * (h-y)^2} \, dy

T1 = SGw * sin(30) * L * \int\limits^h_0 {(h-y)^2} \, dy

T1 = SGw * sin(30) * L * \int\limits^h_0 {(h-y)^2} \, dy

T1 = SGw * sin(30) * L * \int\limits^h_0 {h^2 - 2*h*y + y^2} \, dy

T1 = SGw * sin(30) * L * (h^2*y - h*y^2 + 1/3*y^3)(evaluated between 0 and h)

T1 = SGw * sin(30) * L * (h^2*h - h*h^2 + 1/3*h^3)

T1 = SGw * sin(30) * L * (h^3 - h^3 + 1/3*h^3)

T1 = 1/3 * SGw * sin(30) * L * h^3

To remain stable the equilibrant torque (Teq) must be of larger magnitude than the water pressure torque (T1)

1/4 * b^2 * h * L * SG > 1/3 * SGw * sin(30) * L * h^3

In an equilateral triangle h = b * cos(30)

1/4 * b^3 * cos(30) * L * SG  > 1/3 * SGw * sin(30) * L * b^3 * (cos(30))^3

SG > SGw * 4/3* sin(30) * (cos(30))^2

SG > 1/2 * SGw

For the dam to hold, it should have a specific gravity of at leas half the specific gravity of water.

This is avergae specific gravity, including holes.

You might be interested in
You are given a noninverting 741 op-amp with a dc-gain of 23.6 dB. The input signal to this amplifier is;Vin(t) = (0.18)∙cos(2π(
Vsevolod [243]

Answer:

Output voltage equation is V_{out} (t) = 2.72 \cos (2\pi (57000)t +18.3)

Explanation:

Given:

dc gain A = 23.6 dB

Input signal V_{in} (t) = 0.18 \cos (2\pi (57000)t +18.3)

Now convert gain,

A = 10^{\frac{23.6}{20} } = 15.13

DC gain at frequency f = 0 is given by,

  A = \frac{V_{out} }{V_{in} }

V_{out} =AV_{in}

V_{out} = 15.13 \times   0.18 \cos (2\pi (57000)t +18.3)

At zero frequency above equation is written as,

V_{out} = 2.72 \times \cos 18.3

V_{out} = 2.72

Now we write output voltage as input voltage,

V_{out} (t) = 2.72 \cos (2\pi (57000)t +18.3)

Therefore, output voltage equation is V_{out} (t) = 2.72 \cos (2\pi (57000)t +18.3)

7 0
2 years ago
Assume that a p+ - n diode is built with an n region width l smaller than a hole diffusion length (l
RSB [31]

Answer: hiiiiii

fff

Explanation:

7 0
3 years ago
Determine the output logic-levels(boolean-levels) for XNOR if the two-inputs are inverted?​
stiv31 [10]

Answer:

<em><u>1</u></em>

<em><u>1What is the output of 2 Input XNOR gate if both the inputs are same? Explanation: The output of 2 Input XNOR gate is 1 if both the inputs are same. The output of the XNOR gate is 1 if both the inputs are logic 0 or logic 1. This is why they are called as equality detector.</u></em>

4 0
2 years ago
In which situation is a are food service workers not required to wash their hands?
Margarita [4]

Answer:

when wearing gloves?

Explanation:

?

or when off duty

3 0
2 years ago
Read 2 more answers
Write a iterative function that finds the n-th integer of the Fibonacci sequence. Then build a minimal program (main function) t
Natasha2012 [34]

Answer:

Codes for each of the problems are explained below

Explanation:

PROBLEM 1 IN C++:

#include<iostream>

using namespace std;

//fib function that calculate nth integer of the fibonacci sequence.

void fib(int n){

  // l and r inital fibonacci values for n=1 and n=2;

  int l=1,r=1,c;

 

  //if n==1 or n==2 then print 1.

  if(n==1 || n==2){

      cout << 1;

      return;

  }

  //for loop runs n-2 times and calculates nth integer of fibonacci sequence.

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

      c=l+r;

      l=r;

      r=c;

      cout << "(" << i << "," << c << ") ";

  }

  //prints nth integer of the fibonacci sequence stored in c.

  cout << "\n" << c;

}

int main(){

  int n; //declared variable n

  cin >> n; //inputs n to find nth integer of the fibonacci sequence.

  fib(n);//calls function fib to calculate and print fibonacci number.

}

PROBLEM 2 IN PYTHON:

def fib(n):

   print("fib({})".format(n), end=' ')

   if n <= 1:

       return n

   else:

       return fib(n - 1) + fib(n - 2)

if __name__ == '__main__':

   n = int(input())

   result = fib(n)

   print()

   print(result)

7 0
2 years ago
Read 2 more answers
Other questions:
  • From the following numbered list of characteristics, decide which pertain to (a) precipitation hardening, and which are displaye
    12·1 answer
  • A 55-μF capacitor has energy ω (t) = 10 cos2 377t J and consider a positive v(t). Determine the current through the capacitor.
    12·1 answer
  • A 15 cm × 15 cm circuit board dissipating 20 W of power uniformly is cooled by air, which approached the circuit board at 20C w
    11·1 answer
  • To prevent hydroplaning, _____. A. slow down B. speed up C. deflate your tires D. use cruise control
    15·1 answer
  • By efficiency, we generally mean the ratio of the desired output to the required input. That is, efficiency is a measure of what
    7·1 answer
  • Write a script (Program 2) to perform t he following matrix operations. Use output commands to clearly output each problem with
    15·1 answer
  • All of these are true about using adhesive EXCEPT:
    6·1 answer
  • When you accelerate, the size of the front tire patch becomes____
    15·1 answer
  • 40 POINTS IF ANSERED WITHIN 10 MINS
    13·2 answers
  • Write down the tracking error such that the adaptive cruise control objective is satisfied.
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!