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
It is the tool used to measure the amount of electric current​
sergeinik [125]

Answer:

Ammeter

Explanation:

Instrument for measuring either direct or alternating electric current, in amperes. Ammeters vary in their operating principles and accuracies

7 0
2 years ago
Read 2 more answers
Sun of first 1 nayural numbers​
marin [14]

Answer:

the answer is

n(n + 1)  \div 2

n(n+1)/2

4 0
2 years ago
Read 2 more answers
According to fire regulations in a town, the pressure drop in a commercial steel, horizontal pipe must not exceed 2.0 psi per 25
bonufazy [111]

Answer:

6.37 inch

Explanation:

Thinking process:

We need to know the flow rate of the fluid through the cross sectional pipe. Let this rate be denoted by Q.

To determine the pressure drop in the pipe:

Using the Bernoulli equation for mass conservation:

\frac{P1}{\rho } + \frac{v_{2} }{2g} +z_{1}  = \frac{P2}{\rho } + \frac{v2^{2} }{2g} + z_{2} + f\frac{l}{D} \frac{v^{2} }{2g}

thus

\frac{P1-P2}{\rho }  = f\frac{l}{D} \frac{v^{2} }{2g}

The largest pressure drop (P1-P2) will occur with the largest f, which occurs with the smallest Reynolds number, Re or the largest V.

Since the viscosity of the water increases with temperature decrease, we consider coldest case at T = 50⁰F

from the tables

Re= 2.01 × 10⁵

Hence, f = 0.018

Therefore, pressure drop, (P1-P2)/p = 2.70 ft

This occurs at ae presure change of 1.17 psi

Correlating with the chart, we find that the diameter will be D= 0.513

                                                                                                      = <u>6.37 in Ans</u>

7 0
3 years ago
A steel rule can be used to check for
MAXImum [283]
I THINK THE ANSWER IS B BUT IM NOT SURE OK BYE
3 0
3 years ago
5. Consider the LTI system defined by the differential equation (a) Draw the pole-zero plot for the system. Is the system stable
stealth61 [152]

Answer:

Detailed solution is attached in the images below showing step wise solution and answer for each part individually.

8 0
3 years ago
Other questions:
  • What are the challenges posed by strategic information systems, and how should they be addressed?
    10·1 answer
  • Anyone have any good ways of revisiting <br> Or <br> Have any good study notes
    11·1 answer
  • Two technicians are discussing solder wire repair. Technician A says that electrical tape can be used to cover the joint. Techni
    10·1 answer
  • Traditional password entry schemes are susceptible to "shoulder surfing" in which an attacker watches an unsuspecting user enter
    13·1 answer
  • A four-lane freeway (two lanes in each direction) is located on rolling terrain and has 12-ft lanes, no lateral obstructions wit
    14·1 answer
  • A DNS record that's used to redirect traffic from one domain name to another is known as a _______ record.
    11·1 answer
  • A paint company produces glow in the dark paint with an advertised glow time of 15 min. A painter is interested in finding out i
    11·1 answer
  • Write a program that asks the user to enter a list of numbers. The program should take the list of numbers and add only those nu
    7·1 answer
  • Hi all, could you solve this please?<br> What is the value of the resistance R
    14·1 answer
  • 6.
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!