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
When moving cylinders always remove and make
Karolina [17]

Unless cylinders are firmly secured on a special carrier intended for this purpose, regulators shall be removed and valve protection caps put in place before cylinders are moved. A suitable cylinder truck, chain, or other steadying device shall be used to keep cylinders from being knocked over while in use.

5 0
3 years ago
A standard penetration test has been conducted on a coarse sand at a depth of 16 ft below the ground surface. The blow counts ob
scoray [572]

Solution :

Given :

The number of blows is given as :

0 - 6 inch = 4 blows

6 - 12 inch = 6 blows

12 - 18 inch = 6 blows

The vertical effective stress $=1500 \ lb/ft^2$

                                              $= 71.82 \ kN/m^2$

                                             $ \sim 72 \ kN/m^2 $

Now,

$N_1=N_0 \left(\frac{350}{\bar{\sigma}+70} \right)$

$N_1 = $ corrected N - value of overburden

$\bar{\sigma}=$ effective stress at level of test

0 - 6 inch, $N_1=4 \left(\frac{350}{72+70} \right)$

                      = 9.86

6 - 12 inch, $N_1=6 \left(\frac{350}{72+70} \right) $

                        = 14.8

12 - 18 inch, $N_1=6 \left(\frac{350}{72+70} \right) $

                         = 14.8

$N_{avg}=\frac{9.86+14.8+14.8}{3}$

       = 13.14

       = 13

8 0
2 years ago
Question 9.1 from the textbook. Consider the following workload: Process Burst Time Priority Arrival Time P1 50 4 0 P2 20 1 20 P
Marizza181 [45]

Answer:

Explanation:

The schedule using shortest remaining time, non-preemptive priority and round Robin with quantum number 30 is shown in the attached file, please kindly go through it to access the answer.

5 0
3 years ago
Answer the following either true (T) or false (F) (5 pts)
likoan [24]

Answer:

1. True

2. True

3. False

Explanation:

The office location is where the soil layer is not uniform. The thickness of the soil varies which could lead to doors being jammed. The engineer needs to estimate the differential in clay soil.

The inclined surface can hold less weight than a vertical surface. The capacity to hold the weight is due to the gravitational force which is exerted to the load.

6 0
3 years ago
La extensión de un resumen debe estar en un rango de _________ del texto inicial. a)25 a 35 % b)10 a 20 % c)15 a 20 % d)20 a 25
mestny [16]

Answer:

b)

Explanation:

because it is correct

3 0
3 years ago
Other questions:
  • Q5. A hypothetical metal alloy has a grain diameter of 2.4 x 10-2 mm. After a heat treatment at 575°C for 500 min, the grain dia
    7·1 answer
  • An inductor (L = 400 mH), a capacitor (C = 4.43 µF), and a resistor (R = 500 Ω) are connected in series. A 44.0-Hz AC generator
    11·1 answer
  • A student proposes a complex design for a steam power plant with a high efficiency. The power plant has several turbines, pumps,
    6·1 answer
  • Consider laminar, fully developed flow in a channel of constant surface temperature Ts. For a given mass flow rate and channel l
    15·1 answer
  • Suppose a student rubs a Teflon rod with wool and then briefly touches it to an initially neutral aluminum rod suspended by insu
    6·1 answer
  • Suppose there are 76 packets entering a queue at the same time. Each packet is of size 5 MiB. The link transmission rate is 2.1
    5·1 answer
  • The specific gravity of a fluid with a weight density of 31.2 lb/ft is a. 2.00 b. 0.969 c. 0.500 d. 1.03
    10·1 answer
  • A plot of land is an irregular trangle with a base of 122 feet and a height of 47 feet what is the area of the plot?
    13·1 answer
  • What are difference between conic sectional and solids?
    15·1 answer
  • What is the simplified meaning of the word "engineering"​
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!