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
Mariulka [41]
3 years ago
6

Create a function (prob3_5) that will take inputs of vectors x and y in feet, scalar N, scalars L and W in feet and scalars T1 a

nd T2 in degrees Fahrenheit. It will output a matrix T which is the temperature of each x and y locations. T will have the number of columns equal to the number of elements in x and rows equal to the number of elements in y. Though this can be done without loops (perhaps more efficiently), your program must use a nested loop.
Engineering
1 answer:
Shalnov [3]3 years ago
3 0

Answer:

clear, clc

prob3_5([1,2,3],[6,5,7],12,11,22,55,76)

function T=prob3_5(x,y,N,L,W,T1,T2)

w=zeros(1,length(x));

for n=1:2:N

for i=1:length(x)

w(i)=w(i)+(2/pi)*(2/n)*sin(n*pi*x(i)/L).*sinh(n*pi*y(i)/L)/sinh(n*pi*W/L);

end

end

T=(T2-T1)*w+T1;

end

Explanation:

Please input the commands into MATLAB

You might be interested in
The Stefan-Boltzmann law can be employed to estimate the rate of radiation of energy H from a surface, as in
Mazyrski [523]

Explanation:

A.

H = Aeσ^4

Using the stefan Boltzmann law

When we differentiate

dH/dT = 4AeσT³

dH/dT = 4(0.15)(0.9)(5.67)(10^-8)(650)³

= 8.4085

Exact error = 8.4085x20

= 168.17

H(650) = 0.15(0.9)(5.67)(10^-8)(650)⁴

= 1366.376watts

B.

Verifying values

H(T+ΔT) = 0.15(0.9)(5.67)(10)^-8(670)⁴

= 1542.468

H(T+ΔT) = 0.15(0.9)(5.67)(10^-8)(630)⁴

= 1205.8104

Error = 1542.468-1205.8104/2

= 168.329

ΔT = 40

H(T+ΔT) = 0.15(0.9)(5.67)(10)^-8(690)⁴

= 1735.05

H(T-ΔT) = 0.15(0.9)(5.67)(10^-8)(610)⁴

= 1735.05-1059.83/2

= 675.22/2

= 337.61

5 0
3 years ago
As the junior engineer at the Mesabi Range Hydraulic Engineering Company located in Ely, Minnesota, you have been tasked with de
katen-ka-za [31]

yes it will

Explanation:

5 0
3 years ago
Can you prove that the two bleu areas are the same without numbers please?
Svet_ta [14]

Answer:

\small{\boxed{\tt{\colorbox{green}{✓Verified\:answer}}}}\:

Just draw a line from point D join to point E

The triangle formed DME will be congruent to AMC

6 0
2 years ago
5. (5 points) Select ALL statements that are TRUE A. For flows over a flat plate, in the laminar region, the heat transfer coeff
finlep [7]

Answer:

The following statements are true:

A. For flows over a flat plate, in the laminar region, the heat transfer coefficient is decreasing in the flow direction

C. For flows over a flat plate, the transition from laminar to turbulence flow only happens for rough surface

E. In general, turbulence flows have a larger heat transfer coefficient compared to laminar flows 6.

Select ALL statements that are TRUE

B. In the hydrodynamic fully developed region, the mean velocity of the flow becomes constant

D. For internal flows, if Pr>1, the flows become hydrodynamically fully developed before becoming thermally fully developed

Explanation:

7 0
3 years ago
__________ affect(s) the amount of air conditioning required.
Grace [21]

Answer:

Option D

All the above

Explanation:

Depending with the number of occupants in a building, the number of air conditioners required can either be increased or reduced. For instance, if the building is to be a classroom of over 50 students, 1 air-conditioner can't serve effectively. Similarly, the activity of occupants also dictate the amount of air conditioners required since if it's a gym room where occupants exercise often then the air conditioners required is different from if the room was to serve as a  lounge. The appliances that also operate in a room require that air conditioners be installed as per the heat that may be generated by the appliances.

5 0
3 years ago
Other questions:
  • Nitrogen can be liquefied using a Joule-Thomson expansioni process. This is done by rapidlyl and adiabatically expandign cold ni
    15·1 answer
  • How do I cancel my subscription
    12·2 answers
  • A force 25 N makes an angle of 30,45 and 75 degree with x,y and z axis. What should be the corresponding force vector?
    8·1 answer
  • When you arrive at an intersection with a stop sign in your direction, if there is no marked stop
    14·2 answers
  • Importance of civil engineering in nepal?​
    10·1 answer
  • A 5-mm-thick stainless steel strip (k = 21 W/m•K, rho = 8000 kg/m3, and cp = 570 J/kg•K) is being heat treated as it moves throu
    6·1 answer
  • Two previously undeformed rod-shaped specimens of copper are to be plastically deformed by reducing their cross-sectional areas.
    14·1 answer
  • PLEASE HELPPPPPPP!!!!,
    10·2 answers
  • Wells drilled by a nonprofit called Water for South Sudan use a pump that can provide up to 5,500 gallons of water per day. Use
    10·1 answer
  • Porque el invento de la bombilla es importante?
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!