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
Gennadij [26K]
4 years ago
8

There is a proposal in Brooklyn to construct a new mid-rise apartment building on a vacant lot at the intersection of Avenue A a

nd 48th Street. The property is square, providing flexibility for the location of the building and an associated playground. The developer wishes to locate a small park and playground adjacent to the quietist street. The traffic volumes for Avenue A are: cars – 496; medium trucks – 52, heavy trucks – 19; and buses - 10. The traffic volumes for 48th Street are: cars – 822; medium trucks – 22, heavy trucks – 8; and buses - 3. Following his thinking, which street should the park be adjacent to? (3 points) Assuming the setbacks are the same, what is the difference in noise levels adjacent to the 2 streets? (4 points) Based upon people’s perceptions of noise differences, are the developer’s concerns valid? Why? (3 points)
Engineering
1 answer:
Soloha48 [4]4 years ago
8 0

Answer:

a. Park should be adjacent to 48th Street, b. Difference in noise level = 707dBa, c. Yes

Explanation:

Data given for Avenue A

Cars = 496, Medium Truck = 52, Heavy Truck = 19, Buses = 10

Data given for 48th Street

Cars = 822, Medium Truck = 22, Heavy Truck = 8, Buses = 3

Consider the PCEs to be Cars = 1, Medium Truck = 13, Heavy Truck = 47, Buses = 18

a. Noise Level = Number of vehicles x PCE

For Avenue A

Noise level = (496 x 1) + (52 x 13) + (19 x 47) + (10 x 18) = 2245dBa

For 48th Street

Noise level = (822 x 1) + (22 x 13  + (8 x 47) + (3 x 18) = 1538dBa

The park should adjacent to 48th street as it is quieter than Avenue A

b. Let the Setback be 50ft. We know that the reduction of noise for 100ft = 5-8 dBa, hence

For Avenue A Noise Reduction due to 50 ft = (8/100) x 50 = 4dBa

Noise at Setback distance = 2245 - 4 = 2241dBa

Considering the same setback the noise at 48th street would be = 1538 - 4 = 1534 dBa

The difference is noise level between the two sides would be = 2241 - 1534 = 707 dBa

c. Yes the developer concerns are valid because there is a clear difference in noise levels of the two sites. This can be seen even after setting the same Setback. Locating the park next to Avenue A will cause serious noise problems.

You might be interested in
A cylindrical insulation for a steam pipe has an inside radius rt = 6 cm, outside radius r0 = 8 cm, and a thermal conductivity k
goldfiish [28.3K]

Answer:

heat loss per 1-m length of this insulation is 4368.145 W

Explanation:

given data

inside radius r1 = 6 cm

outside radius r2 = 8 cm

thermal conductivity k = 0.5 W/m°C

inside temperature t1 = 430°C

outside temperature t2 = 30°C

to find out

Determine the heat loss per 1-m length of this insulation

solution

we know thermal resistance formula for cylinder that is express as

Rth = \frac{ln\frac{r2}{r1}}{2 \pi *k * L}   .................1

here r1 is inside radius and r2 is outside radius L is length and k is thermal conductivity

so

heat loss is change in temperature divide thermal resistance

Q = \frac{t1- t2}{\frac{ln\frac{r2}{r1}}{2 \pi *k * L}}

Q = \frac{(430-30)*(2 \pi * 0.5 * 1}{ln\frac{8}{6} }

Q = 4368.145 W

so heat loss per 1-m length of this insulation is 4368.145 W

4 0
3 years ago
The mathematical relationship between
11Alexandr11 [23.1K]
4) Ohms law thats the answer
7 0
3 years ago
The roof of a refrigerated truck compartment consists of a layer of foamed urethane insulation (t2 = 21 mm, ki = 0.026 W/m K) be
lakkis [162]

Answer:

Tso = 28.15°C

Explanation:

given data

t2 = 21 mm

ki = 0.026 W/m K

t1 = 9 mm

kp = 180 W/m K

length of the roof is L = 13 m

net solar radiation into the roof = 107 W/m²

temperature of the inner surface Ts,i = -4°C

air temperature is T[infinity] = 29°C

convective heat transfer coefficient h = 47 W/m² K

solution

As when energy on the outer surface at roof of a refrigerated truck that is balance as

Q = \frac{T \infty - T si }{\frac{1}{hA}+\frac{t1}{AKp}+\frac{t2}{AKi}+\frac{t1}{aKp}}       .....................1

Q = \frac{T \infty - Tso}{\frac{1}{hA}}                         .....................2

now we compare both equation 1 and 2 and put here value

\frac{29-(-4)}{\frac{1}{47}+\frac{2\times0.009}{180}+\frac{0.021}{0.026}} = \frac{29-Tso}{\frac{1}{47}}            

solve it and we get

Tso = 28.153113

so Tso = 28.15°C

3 0
3 years ago
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
3 years ago
Read 2 more answers
Science, Technology, Engineering &amp; Mathematics
miv72 [106K]

A communication systems

4 0
3 years ago
Other questions:
  • A rigid tank of 1 in3 contains nitrogen gas at 600 kPa, 400 K. By mistake someone lets 0.5 kg flow out. If the final temperature
    5·1 answer
  • A steady state and continuous separator has a total feed rate of 100. kg/h of a 55.0 wt. % benzene mixture. The balance is tolue
    7·1 answer
  • if you had 100 B size sheets and you cut them into A size sheets, how many sheets of A size paper would you have
    14·1 answer
  • Assume the triac of an AC discrete output module fails in the shorted state. How would this affect the device connected to this
    5·1 answer
  • 37. In ______ combination of drugs, the effects of one drug cancel or diminish
    12·1 answer
  • Ok I need a new laptop but I'm not sure which one. The Surface laptop 3 is better in many fields like the camera, speaker, audio
    14·1 answer
  • The air loss rate for a straight truck or bus with the engine off and the brakes
    11·1 answer
  • A Carnot heat engine absorbs 235 KW of heat from a heat source and rejects 164 KW to the atmosphere. Determine the thermal effic
    7·1 answer
  • Sometimes we need to create heat, such as in circuit breakers and rear window
    5·2 answers
  • Technician A says test lights are great for performing simple tests. Technician B says you can use a test light to check SRS cir
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!