A particular brand of paint covers 340 square feet per gallon . Write a program in C++ to determine and report approximately how many gallons of paint will be needed to paint two coats on a wooden fence that is 6 feet high and 100 feet long .

Answers

Answer 1

Answer:

#include <iostream>

using namespace std;

// named constant to give mnemonic name to "magic number"

const float SqFtPerGal = 350.0f;

// the function main() is always the entry point of the application

int main()

{

float length, width, area, paint; // to hold user values and results

// prompt user for length and width of wall

cout << "Enter length of wall : " << flush;

cin >> length;

cout << "Enter width of wall : " << flush;

cin >> width;

// calculate area and amount of paint needed

area = length * width;

paint = area / SqFtPerGal;

// output results with reasonable text

cout << "You need " << paint << " gallons of paint to cover "

<< area << " square feet of wall." << endl;

// program stops executing when it returns from main(), 0 means O.K.

return 0;

}

Explanation:


Related Questions

By saying that the electrostatic field is conservative, we do not mean that:_______ The potential difference between any two points is zero. It is the gradient of scalar potential. Its circulation is identically zero along any path. Its curl is identically zero everywhere. The work done in moving a charge along closed path inside the field is zero.

Answers

Answer:

(a) The potential difference between any two points is zero.

Explanation:

A conservative field is;

i. a vector field that is the gradient of some function. Electrostatic field is the gradient of scalar potential, hence it is conservative.

ii. a vector field where the integral along every closed path is zero. This means that the work done in a closed cycle is zero. For an electrostatic field, the charge along closed path inside the field is zero. Hence, electrostatic field is conservative.

iii. a vector field if curl of its potential(vector product of the del operator and the potential) is zero. The curl of electrostatic field is identically zero everywhere.

iv. a vector field whose circulation is zero along any path.

v. a vector field whose potential difference between two points is independent of the path taken. The potential difference between any two points is not necessarily zero.

Other examples of conservative fields are;

i. gravitational field.

ii. magnetic field.

When we say that electrostatic field is conservative, we do not mean that the potential difference between any two points is zero.

What is a conservative field?

A conservative field refers to a form of force between the Earth and another mass whose work is determined only by the final displacement of the object acted upon.

What we mean by saying an electrostatic field is conservative includes:

It is the gradient of scalar potentialIts circulation is identically zero along any pathIts curl is identically zero everywhereThe work done in moving a charge along closed path inside the field is zero.

Hence, when we say that electrostatic field is conservative, we do not mean that the potential difference between any two points is zero.

Therefore, the Option A is correct.

Read more about conservative field

brainly.com/question/10712927

I2 + KOH = KIO3 + KI + H2O Marque la(s) respuesta(s) falsas: La suma de coeficientes mínimos del agua y el agente reductor es 6 El KI es la forma reducida El KOH es el agente reductor La suma de electrones transferidos más el coeficiente mínimo del agua suman 16 La relación entre el agente oxidante y el agente reductor es 1

Answers

Answer:

Las declaraciones falsas incluyen

- El KOH es el agente reductor.

- La suma de electrones transferidos más el coeficiente mínimo de agua suman 16.

Todas las otras declaraciones son ciertas.

The false statements include

- The KOH is the reducing agent.

- The sum of transferred electrons plus the minimum coefficient of water add up to 16.

All the other statements are true.

Explanation:

Es evidente que esta es una reacción redox en presencia de medio básico. Entonces, equilibraremos esta reacción redox en pasos. I₂ + KOH → KIO₃ + KI + H₂O

Paso 1 Eliminar los iones espectadores; Estos son los iones que aparecen en ambos lados de la reacción. Es evidente que solo el ion de potasio (K⁺) es el ion espectador de esta reacción.

I₂ + OH⁻ → IO₃⁻ + I⁻ + H₂O

Paso 2

Separamos la reacción en las medias reacciones de oxidación y reductina. La oxidación es la pérdida de electrones que conduce a un aumento del número de oxidación del ion, mientras que la reducción es la ganancia de elecrones que conduce a una disminución en el número de oxidación del ion. También es evidente que es el gas de yodo el que se reduce y oxida para esta reacción.

El gas de yodo se reduce a I⁻ (el número de oxidación se reduce de 0 a -1) y el gas de yodo se oxida a IO₃⁻ (el número de oxidación de yodo aumenta de 0 en gas de yodo a +5 en IO₃⁻)

Reducción media reacción

I₂ → I⁻

Media reacción de oxidación

I₂ + OH⁻ → IO₃⁻ + H₂O

Paso 3

Equilibramos las medias reacciones y agregamos los respectivos electrones transferidos

Reducción media reacción

I₂ → 2I⁻

I₂ + 2e⁻ → 2I⁻

Media reacción de oxidación

I₂ + 12OH⁻ → 2IO₃⁻ + 6H₂O

I₂ + 12OH⁻ → 2IO₃⁻ + 6H₂O + 10e⁻

Paso 4

Balancee el número de electrones en las dos medias reacciones

[I₂ + 2e⁻ → 2I⁻] × 5

[I₂ + 12OH⁻ → 2IO₃⁻ + 6H₂O + 10e⁻] × 1

5I₂ + 10e⁻ → 10I⁻

I₂ + 12OH⁻ → 2IO₃⁻ + 6H₂O + 10e⁻

Paso 5

Agregue las dos medias reacciones y elimine cualquier especie que aparezca en ambos lados

5I₂ + 10e⁻ + I₂ + 12OH⁻ → 10I⁻ + 2IO₃⁻ + 6H₂O + 10e⁻

Entonces, eliminamos los 10 electrones que fueron transferidos en la reacción balanceada

6I₂ + 12OH⁻ → 10I⁻ + 2IO₃⁻ + 6H₂O

Paso 6

Reintroducimos la especie eliminada desde el principio (el ion potasio)

6I₂ + 12KOH → 10KI + 2KIO₃ + 6H₂O

Los coeficientes mínimos son entonces

3I₂ + 6KOH → 5KI + KIO₃ + 3H₂O

Luego verificamos cada una de las declaraciones proporcionadas para elegir las falsas.

- La suma de los coeficientes mínimos del agua y el agente reductor es 6.

El gas yodo es el agente reductor y oxidante. Coeficiente mínimo de agua y gas de yodo = 3 + 3 = 6 Esta afirmación es cierta.

- El KI es la forma reductora KI resulta de la semirreacción de reducción.

Por lo tanto, es la forma reducida del gas de yodo. Esta afirmación es cierta. - El KOH es el agente reductor. KOH no es el agente reductor. Esta afirmación es falsa.

- La suma de los electrones transferidos más el coeficiente mínimo de agua suman 16.

Electrones transferidos = 10

Coeficiente mínimo de agua = 3

Suma = 13 y no 16.

Esta afirmación es falsa.

- La proporción del agente oxidante y el agente reductor es 1.

Dado que el gas yodo es el agente reductor y oxidante, la proporción de estos dos es verdaderamente 1. Esta afirmación es cierta.

¡¡¡Espero que esto ayude!!!

1. The sine rule is used when we are given either a) two angles and one side, or b) two sides and a non-included angle.

i. True
ii. False

2. The cosine rule is used when we are given either a) three sides or b) two sides and the included angle.

i. True
ii. False

Answers

Answer:

A. Yes

B. Yes

Explanation:

We want to evaluate the validity of the given assertions.

1. The first statement is true

The sine rule stipulates that the ratio of a side and the sine of the angle facing the side is a constant for all sides of the triangle.

Hence, to use it, it’s either we have two sides and an angle and we are tasked with calculating the value of the non given side

Or

We have two angles and a side and we want to calculate the value of the side provided we have the angle facing this side in question.

For notation purposes;

We can express the it for a triangle having three sides a, b, c and angles A,B, C with each lower case letter being the side that faces its corresponding big letter angles

a/Sin A = b/Sin B = c/Sin C

2. The cosine rule looks like the Pythagoras’s theorem in notation but has a subtraction extension that multiplies two times the product of the other two sides and the cosine of the angle facing the side we want to calculate

So let’s say we want to calculate the side a in a triangle of sides a, b , c and we have the angle facing the side A

That would be;

a^2 = b^2 + c^2 -2bcCosA

So yes, the cosine rule can be used for the scenario above

Liquidated damages are intended to represent anticipated losses to the owner based upon circumstances existing at the time the contract was made. List at least five types of potential losses to the owner that would qualify for determination of such potential losses.

Answers

Answer:

1. Loss of income.

2. Rental costs.

3. Utility bills.

4. Loss of rent.

5. Storage costs.

Explanation:

Liquidated damages can be defined as pre-determined damages or clauses that are highlighted or indicated at the time of entering into a contract between a contractor and a client which is mainly based on evaluation of the actual loss the client may incur should the contractor fail to meet the agreed completion date.

Generally, liquidated damages are meant to be fair rather than being a penalty or punitive to the defaulter. It is usually calculated on a daily basis for the loss.

When entering into a contract with another, liquidated damages are intended to represent anticipated losses to the owner based upon circumstances existing at the time the contract was made.

Listed below are five (5) types of potential losses to the owner that would qualify for determination of such potential losses;

1. Loss of income.

2. Rental costs.

3. Utility bills.

4. Loss of rent.

5. Storage costs.

Air enters the first compressor stage of a cold-air standard Brayton cycle with regeneration and intercooling at 100 kPa, 300 K, with a mass flow rate of 6 kg/s. The overall compressor pressure ratio is 10, and the pressure ratios are the same across each compressor stage. The temperature at the inlet to the second compressor stage is 300 K. The turbine inlet temperature is 1400 K. The compressor stages and turbine each have isentropic efficiencies of 80% and the regenerator effectiveness is 80%. For k = 1.4, calculate:
a. the thermal efficiency of the cycle
b. the back work ratio
c. the net power developed, in kW
d. the rates of exergy destruction in each compressor stage and the turbine stage as well as the regenerator, in kW, for T 0 = 300 K.

Answers

Answer:

a. [tex]\eta _{th}[/tex] = 77.65%

b. bwr = 6.5%

c. 3538.986 kW

d. -163.169 kJ

Explanation:

a. The given property  are;

P₂/P₁ = 10, P₂ = 10 * 100 kPa = 1000 kPa

p₄/p₁ = 10

P₂/P₁ = p₄/p₃ = √10

p₂ = 100·√10

[tex]T_{2s}[/tex] = T₁×(√10)^(0.4/1.4) = 300 × (√10)^(0.4/1.4) = 416.85 K

T₂ = T₁ + ([tex]T_{2s}[/tex] - T₁)/[tex]\eta _c[/tex] = 300 + (416.85 - 300)/0.8 = 446.0625 K

p₄ = 10×p₁ = 10×100 = 1000 kPa

p₄/p₃ = √10 =

p₃ = 100·√10

T₃ = 300 K

T₃/[tex]T_{4s}[/tex] = (P₂/P₁)^((k - 1)/k) = (√10)^(0.4/1.4)

[tex]T_{4s}[/tex] = T₃/((√10)^(0.4/1.4) ) = 300/((√10)^(0.4/1.4)) = 215.905 K

T₄ = T₃ + ([tex]T_{4s}[/tex] - T₃)/[tex]\eta _c[/tex] = 300 + (215.905- 300)/0.8 = 194.881 K

The efficiency = 1 - (T₄ - T₁)/(T₃ - T₂) = 1 - (194.881 -300)/(300 -446.0625 ) = 0.28

T₄ = 446.0625 K

T₆ = 1400 K

[tex]T_{7s}[/tex]/T₆ = (1/√10)^(0.4/1.4)

[tex]T_{7s}[/tex] = 1400×(1/√10)^(0.4/1.4)  = 1007.6 K

T₇ = T₆ - [tex]\eta _t[/tex](T₆ - [tex]T_{7s}[/tex]) = 1400 - 0.8*(1400 - 1007.6) = 1086.08 K

T₈ = 1400 K

T₉ = 1086.08 K

T₅ = T₄ + [tex]\epsilon _{regen}[/tex](T₉ - T₄) = 446.0625 +0.8*(1086.08 - 446.0625) = 958.0765 K

[tex]\eta _{th}[/tex] =(((T₆ - T₇) + (T₈ - T₉)) -((T₂ - T₁) + (T₄ - T₃)))/((T₆ - T₅) + (T₈ - T₇))

(((1400 - 1086.08) + (1400 -1086.08 ))-((446.0625 - 300)+(194.881 - 300)))/((1400 -958.0765 ) + (1400 -1086.08 )) = 0.7765

[tex]\eta _{th}[/tex] = 77.65%

b. Back work ratio, bwr = [tex]bwr = \dfrac{w_{c,in}}{w_{t,out}}[/tex]

((446.0625 - 300)+(194.881 - 300))/((1400 - 1086.08) + (1400 -1086.08 ))

40.9435/627.84 = 6.5%

c. [tex]w_{net, out} = c_p[(T_6 -T_7) + (T_8 - T_9)] - [(T_2 - T_1) + (T_4 -T_3)][/tex]

Power developed is given by the relation;

[tex]\dot m \cdot w_{net, out}[/tex]

[tex]\dot m \cdot w_{net, out}[/tex]= 6*1.005*(((1400 - 1086.08) + (1400 -1086.08 ))-((446.0625 - 300)+(194.881 - 300))) = 3538.986 kW

d. Exergy destruction = 6*(1.005*(300-446.0625 ) - 300*1.005*(-0.3966766)

-163.169 kJ

If these components have weights WA = 50000 lb , WB=8000lb, and WC=6000lb, determine the normal reactions of the wheels D, E, and F on the ground.

Answers

Answer:

F(F) = 15037 lb

F(E) = 24481.5 lb

F(D) =  24481.5 lb

Explanation:

(The diagram of the figure and Free Body Diagram is attached)

Data given:

W(A) = 50,000 lb

W(B) = 8000 lb

W(C) = 6000 lb

∑F = 0

F(F) + F(E) + F(D) - W(A) - W(B) - W(C) = 0

F(F) + F(E) + F(D) = W(A) + W(B) + W(C)

F(F) + F(E) + F(D) = 50000 + 8000 + 6000

F(F) + F(E) + F(D) = 64000 lb

∑M(o)

∑M(o) = M(F) + M(E) + M(D) + M(A) + M(B) + M(C)

Where

M(F) = 27i × F(F)k = -27F(F)j

M(E) = 14j × F(E)k = 14F(E)i

M(D) = -14j × F(D)k = -14F(D)i

M(A) = 7i × -50000k = 350,000j

M(B) = (4i - 6j) × -8000k = 48000i + 32000j

M(C) = (4i + 8j) × -6000k = -48000i + 24000j

∑M(x) = ∑M(i) = 0

∑M(i) = 14F(E) - 14F(D) = 0

F(E) = F(D)

∑M(y) = ∑M(j) = 0

∑M(j) = -27F(F) + 350,000 + 32,000 + 24,000 = 0

27F(F) = 406,000

F(F) = 15037 lb

F(F) + F(E) + F(D) = 64000 lb

F(E) = F(D)

F(F) + 2F(E) = 64000

2F(E) = 64000 - 15037

2F(E) = 48963

F(E) = 24481.5 lb

F(D) =  24481.5 lb

For each of the following stacking sequences found in FCC metals, cite the type of planar defect that exists:

a. . . . A B C A B C B A C B A . . .
b. . . . A B C A B C B C A B C . . .

Copy the stacking sequences and indicate the position(s) of planar defect(s) with a vertical dashed line.

Answers

Answer:

a) The planar defect that exists is twin boundary defect.

b) The planar defect that exists is the stacking fault.

Explanation:      

I am using bold and underline instead of a vertical line.

a. A B C A B C B A C B A

In this stacking sequence, the planar defect that occurs is twin boundary defect because the stacking sequence at one side of the bold and underlined part of the sequence is the mirror image or reflection of the stacking sequence on the other side. This shows twinning. Hence it is the twin boundary inter facial defect.

b. A B C A B C  B C A B C

In this stacking sequence the planar defect that occurs is which occurs is stacking fault defect. This underlined region is HCP like sequence. Here BC is the extra plane hence resulting in the stacking fault defect. The fcc stacking sequence with no defects should be A B C A B C A B C A B C. So in the above stacking sequence we can see that A is missing in the sequence. Instead BC is the defect or extra plane. So this disordering of the sequence results in stacking fault defect.

Determine the voltage input to the inverting terminal of an op amp when −40 μV is applied to the non-inverting terminal and the output through an open-loop gain of 150,000 is 15 V.

Answers

Answer:

The voltage input to the inverting terminal is 60μV

Explanation:

Given;

open-loop gain, A = 150,000

output voltage, V₀ = 15 V

voltage at the inverting input, [tex]V_n[/tex] = −40 μV = 40 x 10⁻⁶ V

The relationship between output voltage and voltage at the inverting input is given as;

[tex]V_o = A(V_p -V_n)\\\\15 = 150,000(V_p -(-40*10^{-6}))\\\\15 = 150,000 (V_p +40*10^{-6}) \\\\V_p +40*10^{-6} = \frac{15}{150,000} \\\\V_p + 40*10^{-6} = 1 *10^{-4}\\\\V_p + 40*10^{-6} = 100 *10^{-6}\\\\V_p = 100 *10^{-6} - 40*10^{-6}\\\\V_p = 60 *10^{-6}\\\\V_p = 60 \ \mu V[/tex]

Therefore, the voltage input to the inverting terminal is 60μV

Determine whether or not it is possible to cold work steel so as to give a minimum Brinell hardness of 225 and at the same time have a ductility of at least 12%EL. Justify your decision

Answers

Answer:

First we determine the tensile strength using the equation;

Tₓ (MPa) = 3.45 × HB

{ Tₓ is tensile strength, HB is Brinell hardness = 225 }

therefore

Tₓ = 3.45 × 225

Tₓ = 775 Mpa

From Conclusions, It is stated that in order to achieve a tensile strength of 775 MPa for a steel, the percentage of the cold work should be 10

When the percentage of cold work for steel is up to 10,the ductility is 16% EL.

And 16% EL is greater than 12% EL

Therefore, it is possible to cold work steel to a given minimum Brinell hardness of 225 and at the same time a ductility of at least 12% EL

A shaft made of aluminum is 40.0 mm in diameter at room temperature (21°C). Its coefficient of thermal expansion = 24.8 x 10-6 mm/mm per °C. If it must be reduced in size by 0.20 mm in order to be expansion fitted into a hole, determine the temperature to which the shaft must be cooled.

Answers

Answer:

Temperature to which the shaft must be cooled, [tex]\theta_2 = -180.61 ^0C[/tex]

Explanation:

Diameter of the shaft at room temperature, d₁ = 40 mm

Room temperature, θ₁ = 21°C

Coefficient of thermal expansion, [tex]\alpha = 24.8 * 10^{-6} / ^0 C[/tex]

The shaft is reduced in size by 0.20 mm:

Δd = - 0.20 mm

The temperature to which the shaft must be cooled, θ₂ = ?

The coefficient of thermal expansion is given by the equation:

[tex]\alpha = \frac{\triangle d}{d_1 * \triangle \theta}\\\\24.8 * 10^{-6} = \frac{-0.20}{40 * \triangle \theta}\\\\\triangle \theta = \frac{-0.20 }{24.8 * 10^{-6} * 40} \\\\\triangle \theta = - 201.61 ^0 C\\\triangle \theta = \theta_2 - \theta_1\\\\- 201.61 = \theta_2 - 21\\\\\theta_2 = -201.61 + 21\\\\\theta_2 = -180.61 ^0C[/tex]

One kg of an idea gas is contained in one side of a well-insulated vessel at 800 kPa. The other side of the vessel is under vacuum. The two sides are separated by a piston that is initially held in place by the pins. The pins are removed and the gas suddenly expands until it hits the stops. What happens to the internal energy of the gas?
a. internal energy goes up
b. internal energy goes down
c. internal energy stays the same
d. we need to know the volumes to make the calculation

Answers

Answer:

Option C = internal energy stays the same.

Explanation:

The internal energy will remain the same or unchanged because this question has to do with a concept in physics or classical chemistry (in thermodynamics) known as Free expansion.

So, the internal energy will be equals to the multiplication of the change in temperature, the heat capacity (keeping volume constant) and the number of moles. And in free expansion the internal energy is ZERO/UNCHANGED.

Where, the internal energy, ∆U = 0 =quantity of heat, q - work,w.

The amount of heat,q = Work,w.

In the concept of free expansion the only thing that changes is the volume.

why is the peak value of the rectified output less than the peak value of the ac input and by how much g

Answers

Answer:

The Peak value of the output voltage is less or lower than that of the peak value of the input voltage by 0.6V reason been that the voltage is tend to drop across the diode.

Explanation:

This is what we called HALF WAVE RECTIFIER in which the Peak value of the output voltage is less or lower than that of the peak value of the input voltage by 0.6V reason been that the voltage is tend to drop across the diode.

Therefore this is the formula for Half wave rectifier

Vrms = Vm/2 and Vdc

= Vm/π:

Where,

Vrms = rms value of input

Vdc = Average value of input

Vm = peak value of output

Hence, half wave rectifier is a rectifier which allows one half-cycle of an AC voltage waveform to pass which inturn block the other half-cycle which is why this type of rectifiers are often been used to help convert AC voltage to a DC voltage, because they only require a single diode to inorder to construct.

10 kg/s Propane at 10 bar and 20 C is directed to an adiabatic rigid mixer and is mixed with 20 kg/s Propane at 10 bar and 40 C. What is the final volumetric flow rate in (m3/s) of the resulting mixture.

Answers

Answer:

The final volumetric flow rate will be "76.4 m³/s".

Explanation:

The given values are:

[tex]\dot{m_{1}}=10 \ kg/s[/tex]

[tex]\dot{m_{2}}=20 \ Kg/s[/tex]

[tex]T_{1}=293 \ K[/tex]

[tex]T_{2}=313 \ K[/tex]

[tex]P_{1}=P_{2}=P_{3}=10 \ bar[/tex]

As we know,

⇒  [tex]E_{in}=E_{out}[/tex]

[tex]\dot{m_{1}}h_{1}+\dot{m_{2}}h_{2}=\dot{m_{3}}h_{3}[/tex]

[tex]e_{1}\dot{v_{1}}h_{1}+e_{2}\dot{v_{2}}h_{2}=e_{3}\dot{v_{3}}h_{3}[/tex]

[tex]\frac{P_{1}}{RP_{1}}\dot{v_{1}} \ C_{p}T_{1}+ \frac{P_{2}}{RP_{2}}\dot{v_{2}} \ C_{p}T_{1}=\frac{P_{3}}{RP_{3}}\dot{v_{3}} \ C_{p}T_{3}[/tex]

⇒  [tex]\dot{v_{3}}=\dot{v_{1}}+\dot{v_{2}}[/tex]

         [tex]=\frac{\dot{m_{1}}}{e_{1}}+\frac{\dot{m_{2}}}{e_{2}}[/tex]

On substituting the values, we get

         [tex]=\frac{10}{10\times 10^5}\times 8314\times 293+\frac{20\times 8314\times 313}{10\times 10^5}[/tex]

         [tex]=76.4 \ m^3/s[/tex]

Find I in the circuit

Answers

Answer:

  I = 6.364∠3.8° A

Explanation:

You can use KCL or KVL to write node or mesh equations for the voltages and currents in the network. Those require a matrix equation solver capable of working with complex numbers. Some calculators can do that. However, we're going to try a different approach here.

Starting from upper left (j4) and working clockwise around the outside, label the impedances Z1 .. Z4. Label the horizontal branch across the middle Z5. We're going to transform the Δ of Z1, Z2, Z5 into a Y of ZA, ZB, ZC that will facilitate computing the effective impedance of the bridge to the source voltage.

The Δ-Y transformation is symmetrical. The numerator of the equivalent impedance connected to each node is the product of the values currently connected to that node; the denominator is the sum of the values around the loop of the Δ.

So, If we transform the Δ of Z1, Z2, Z5 to a Y of ZA, ZB. ZC with ZA connected where Z1 and Z2 are now connected, ZB connected to Z4, and ZC connected to Z3, the network becomes a series-parallel network with an effective impedance of ...

  Z = ZA + ((ZB +Z4) ║ (ZC +Z3))

__

For starters, we have ...

  ZA = Z1·Z2/(Z1 +Z2 +Z5) = (j4)(-j3)/(j4-j3+8+j5) = 12/(8+j6) = 0.96-j0.72

  ZB = (j4)(8+j5)/(8+j6) = (20+j32)/(8+j6) = 0.32+j3.76

  ZC = (-j3)(8+j5)/(8+j6) = (15-j24)/(8+j6) = -0.24-j2.82

So, the left branch of the parallel combination is ...

  ZB +Z4 = (0.32+j3.76) +(5-j2) = 5.32+j1.76

And the right branch is ...

  ZC +Z3 = (-0.24-j2.82) +10 = 9.76-j2.82

Then the series-parallel combination we want is ...

  ZA + (ZB+Z4)(ZC+Z3)/(ZB+Z4+ZC+Z3) ≈ 4.703671 -j0.3126067

That is, the impedance of the bridge circuit to the source voltage is about ...

  4.7140478∠-3.802°

Dividing the source voltage by this impedance gives the source current, ...

  I = (30∠0°)/(4.7140478∠-3.802°)

  I ≈ 6.363958∠3.802° . . . amperes

A long corridor has a single light bulb and two doors with light switch at each door. design logic circuit for the light; assume that the light is off when both switches are in the same position.

Answers

Answer and Explanation:

Let A denote its switch first after that we will assume B which denotes the next switch and then we will assume C stand for both the bulb. we assume 0 mean turn off while 1 mean turn on, too. The light is off, as both switches are in the same place. This may be illustrated with the below table of truth:

A                    B                       C (output)

0                    0                        0

0                    1                          1

1                     0                         1

1                     1                          0

The logic circuit is shown below

C = A'B + AB'

If the switches are in multiple places the bulb outcome will be on on the other hand if another switches are all in the same place, the result of the bulb will be off. This gate is XOR. The gate is shown in the diagram adjoining below.

A 15.00 mL sample of a solution of H2SO4 of unknown concentration was titrated with 0.3200M NaOH. the titration required 21.30 mL of the base. Assuming complete neutralization of the acid,
1) What was the normality of the acid solution?
2) What was the molarity of the acid solution?

Answers

Answer:

a. 0.4544 N

b. [tex]5.112 \times 10^{-5 M}[/tex]

Explanation:

For computing the normality and molarity of the acid solution first we need to do the following calculations

The balanced reaction

[tex]H_2SO_4 + 2NaOH = Na_2SO_4 + 2H_2O[/tex]

[tex]NaOH\ Mass = Normality \times equivalent\ weight \times\ volume[/tex]

[tex]= 0.3200 \times 40 g \times 21.30 mL \times 1L/1000mL[/tex]

= 0.27264 g

[tex]NaOH\ mass = \frac{mass}{molecular\ weight}[/tex]

[tex]= \frac{0.27264\ g}{40g/mol}[/tex]

= 0.006816 mol

Now

Moles of [tex]H_2SO_4[/tex] needed  is

[tex]= \frac{0.006816}{2}[/tex]

= 0.003408 mol

[tex]Mass\ of\ H_2SO_4 = moles \times molecular\ weight[/tex]

[tex]= 0.003408\ mol \times 98g/mol[/tex]

= 0.333984 g

Now based on the above calculation

a. Normality of acid is

[tex]= \frac{acid\ mass}{equivalent\ weight \times volume}[/tex]

[tex]= \frac{0.333984 g}{49 \times 0.015}[/tex]

= 0.4544 N

b. And, the acid solution molarity is

[tex]= \frac{moles}{Volume}[/tex]

[tex]= \frac{0.003408 mol}{15\ mL \times 1L/1000\ mL}[/tex]

= 0.00005112

=[tex]5.112 \times 10^{-5 M}[/tex]

We simply applied the above formulas

The volume of the 0.3200 M, NaOH required to neutralize the H₂SO₄, is

21.30 mL, which gives the following acid solution approximate values;

1) Normality of the acid solution is 0.4544 N

2) The molarity of the acid is 0.2272

How can the normality, molarity of the solution be found?

Molarity of the NaOH = 0.3200 M

Volume of NaOH required = 21.30 mL

1) The normality of the acid solution is found as follows;

The chemical reaction is presented as follows;

H₂SO₄(aq) + 2NaOH (aq) → Na₂SO₄ (aq) + H₂O

Number of moles of NaOH in the reaction is found as follows;

[tex]n = \dfrac{21.30}{1,000} \times 0.3200 \, M = \mathbf{0.006816 \, M}[/tex]

Therefore;

The number of moles of H₂SO₄ = 0.006816 M ÷ 2 = 0.003408 M

[tex]Normality = \mathbf{ \dfrac{Mass \ of \, Acid \ in \ reaction}{Equivalent \ mass \times Volume \ of \ soltute}}[/tex]

Which gives;

[tex]Normality = \dfrac{ 98 \times 0.003408 }{49 \times 0.015} = \mathbf{0.4544}[/tex]

The normality of the acid solution, H₂SO₄(aq), N ≈ 0.4544

2) The molarity is found as follows;

[tex]Molarity = \dfrac{0.003408 \, moles}{0.015 \, L} = \mathbf{0.2272 \, M}[/tex]

The molarity of the acid solution is 0.2272 M

Learn more about the normality and the molarity of a solution here:

https://brainly.com/question/6532653

https://brainly.com/question/14112872

For a bolted assembly with six bolts, the stiffness of each bolt is kb=Mlbf/in and the stiffness of the members is km=12Mlbf/in. An external load of 80 kips is applied to the entire joint. Assume the load is equally distributed to all the bolts. It has been determined to use 1/2 in- 13 UNC grade 8 bolts with rolled threads. Assume the bolts are preloaded to 75% of the proof load. Clearly state any assumptions.
(a) Determine the yielding factor of safety,
(b) Determine the overload factor of safety,
(c) Determine the factor of safety baserd on joint seperation.

Answers

Answer:

nP  ≈ 4.9 nL =  1.50

Explanation:

GIVEN DATA

external load applied (p) = 85 kips

bolt stiffness ( Kb ) = 3(10^6) Ibf / in

Member stiffness (Km) = 12(10^6) Ibf / in

Diameter of bolts ( d ) = 1/2 in - 13 UNC grade 8

Number of bolts = 6

assumptions

for unified screw threads UNC and UNF

tensile stress area ( A ) = 0.1419 in^2

SAE specifications for steel bolts for grade 8

we have

Minimum proff strength ( Sp) = 120 kpsi

Minimum tensile strength (St) = 150 Kpsi

Load Bolt (p) = external load / number of bolts = 85 / 6 = 14.17 kips

Given the following values

Fi = 75%* Sp*At = (0.75*120*0.1419 ) = 12.771 kip

Preload stress

αi = 0.75Sp = 0.75 * 120 = 90 kpsi

stiffness constant

C = [tex]\frac{Kb}{Kb + Km}[/tex]  = [tex]\frac{3}{3+2}[/tex] = 0.2

A) yielding factor of safety

nP = [tex]\frac{sPAt}{Cp + Fi}[/tex] = [tex]\frac{120* 0.1419}{0.2*14.17 + 12.771}[/tex]

nP = 77.028 / 15.605 = 4.94 ≈ 4.9

B) Determine the overload factor safety

[tex]nL = \frac{SpAt - Fi}{CP}[/tex] = ( 120 * 0.1419) - 12.771 / 0.2 * 14.17

= 17.028 - 12.771 / 2.834

= 1.50

After impact testing a sample at -100oC you realize that the fracture surface is very dull and fibrous. Is the sample behaving in a ductile of brittle manner at this temperature

Answers

Answer:

Ductile

Explanation:

So, from the question, we have the following information or parameters or data which is going to help us in solving this particular problem or question;

=> " impact testing a sample = -100oC shows that the fracture surface is very DULL AND FIBROUS"

TAKE NOTE: DULL AND FIBROUS.

IMPACT TESTING is used by engineers in the configuration of a sample or object.

In order to determine whether a specimen is ductile or brittle, it can be shown from its appearance for instance;

A DUCTILE SAMPLE will be DULL AND FIBROUS thus, our answer!

But a brittle sample will have a crystal shape.

). A 50 mm diameter cylinder is subjected to an axial compressive load of 80 kN. The cylinder is partially

enclosed by a well-fitted casing covering almost the whole length, which reduces the lateral expansion by half.

Determine the ratio between the axial strain when the casing is fitted and that when it is free to expand in diameter.

Take v = 0.3.​

Answers

Answer:

[tex]\frac{e'_z}{e_z} = 0.87142[/tex]

Explanation:

Given:-

- The diameter of the cylinder, d = 50 mm.

- The compressive load, F = 80 KN.

Solution:-

- We will form a 3-dimensional coordinate system. The z-direction is along the axial load, and x-y plane is categorized by lateral direction.

- Next we will write down principal strains ( εx, εy, εz ) in all three directions in terms of corresponding stresses ( σx, σy, σz ). The stress-strain relationships will be used for anisotropic material with poisson ratio ( ν ).

                          εx = - [ σx - ν( σy + σz ) ] / E

                          εy = - [ σy - ν( σx + σz ) ] / E

                          εz = - [ σz - ν( σy + σx ) ] / E

- First we will investigate the "no-restraint" case. That is cylinder to expand in lateral direction as usual and contract in compressive load direction. The stresses in the x-y plane are zero because there is " no-restraint" and the lateral expansion occurs only due to compressive load in axial direction. So σy= σx = 0, the 3-D stress - strain relationships can be simplified to:

                          εx =  [ ν*σz ] / E

                          εy = [ ν*σz ] / E

                          εz = - [ σz ] / E   .... Eq 1

- The "restraint" case is a bit tricky in the sense, that first: There is a restriction in the lateral expansion. Second: The restriction is partial in nature, such, that lateral expansion is not completely restrained but reduced to half.

- We will use the strains ( simplified expressions ) evaluated in " no-restraint case " and half them. So the new lateral strains ( εx', εy' ) would be:

                         εx' = - [ σx' - ν( σy' + σz ) ] / E = 0.5*εx

                         εx' = - [ σx' - ν( σy' + σz ) ] / E =  [ ν*σz ] / 2E

                         εy' = - [ σy' - ν( σx' + σz ) ] / E = 0.5*εy

                         εx' = - [ σy' - ν( σx' + σz ) ] / E =  [ ν*σz ] / 2E

- Now, we need to visualize the "enclosure". We see that the entire x-y plane and family of planes parallel to ( z = 0 - plane ) are enclosed by the well-fitted casing. However, the axial direction is free! So, in other words the reduction in lateral expansion has to be compensated by the axial direction. And that compensatory effect is governed by induced compressive stresses ( σx', σy' ) by the fitting on the cylinderical surface.

- We will use the relationhsips developed above and determine the induced compressive stresses ( σx', σy' ).

Note:  σx' = σy', The cylinder is radially enclosed around the entire surface.

Therefore,

                        - [ σx' - ν( σx'+ σz ) ] =  [ ν*σz ] / 2

                          σx' ( 1 - v ) = [ ν*σz ] / 2

                          σx' = σy' = [ ν*σz ] / [ 2*( 1 - v ) ]

- Now use the induced stresses in ( x-y ) plane and determine the new axial strain ( εz' ):

                           εz' = - [ σz - ν( σy' + σx' ) ] / E

                           εz' = - { σz - [ ν^2*σz ] / [ 1 - v ] } / E

                          εz' = - σz*{ 1 - [ ν^2 ] / [ 1 - v ] } / E  ... Eq2

- Now take the ratio of the axial strains determined in the second case ( Eq2 ) to the first case ( Eq1 ) as follows:

                            [tex]\frac{e'_z}{e_z} = \frac{- \frac{s_z}{E} * [ 1 - \frac{v^2}{1 - v} ] }{-\frac{s_z}{E}} \\\\\frac{e'_z}{e_z} = [ 1 - \frac{v^2}{1 - v} ] = [ 1 - \frac{0.3^2}{1 - 0.3} ] \\\\\frac{e'_z}{e_z} = 0.87142[/tex]... Answer

Air enters the compressor of an ideal cold air-standard Brayton cycle at 100 kPa, 300 K, with a mass flow rate of 6 kg/s. The compressor pressure ratio is 10, and the turbine inlet temperature is 1400 K. For k 5 1.4, calculate (a) the thermal efficiency of the cycle. (b) the back work ratio. (c) the net power developed, in kW.

Answers

Answer:

(a) 48.2 %

(b) 0.4137

(c) 2385.9 kW

Explanation:

The given values are:

Initial pressure,

p₁ = 100 kPa

Initial temperature,

T₁ = 300 K

Mass,

M = 6 kg/s

Pressure ration,

r = 10

Inlent temperature,

T₃ = 1400 K

Specific heat ratio,

k = 1.4

At T₁ and p₁,

⇒  [tex]c_{p}=1.005 \ KJ/Kg.K[/tex]

Process 1-2 in isentropic compression, we get

⇒  [tex]\frac{T_{2}}{T_{1}}=(\frac{p_{2}}{p_{1}})^{\frac{k-1}{k}}[/tex]

    [tex]T_{2}=(\frac{p_{2}}{p_{1}})^{\frac{k-1}{k}}. T_{1}[/tex]

On putting the estimated values, we get

         [tex]=(10)^{\frac{1.4-1}{1.4}}(300)[/tex]

         [tex]=579.2 \ K[/tex]

Process 3-4,

⇒  [tex]\frac{T_{4}}{T_{3}}=(\frac{p_{4}}{p_{3}})^{\frac{k-1}{k}}[/tex]

    [tex]T_{4}=(\frac{1}{10})^{\frac{1.4-1}{1.4}}(1400)[/tex]

         [tex]=725.13 \ K[/tex]

(a)...

The thermal efficiency will be:

⇒  [tex]\eta =\frac{\dot{W_{t}}-\dot{W_{e}}}{\dot{Q_{in}}}[/tex]

    [tex]\eta=1-\frac{\dot{Q_{out}}}{\dot{Q_{in}}}[/tex]

⇒  [tex]\dot{Q_{in}}=\dot{m}(h_{1}-h_{2})[/tex]

           [tex]=\dot{mc_{p}}(T_{3}-T_{2})[/tex]

           [tex]=6\times 1005\times (1400-579.2)[/tex]

           [tex]=4949.4 \ kJ/s[/tex]

⇒  [tex]\dot{Q_{out}}=\dot{m}(h_{4}-h_{1})[/tex]

             [tex]=6\times 1.005\times (725.13-300)[/tex]

             [tex]=2563.5 \ KJ/S[/tex]

As we know,

⇒  [tex]\eta=1-\frac{\dot{Q_{out}}}{\dot{Q_{in}}}[/tex]

On putting the values, we get

       [tex]=1-\frac{2563.5}{4949.4}[/tex]

       [tex]=0.482 \ i.e., \ 48.2 \ Percent[/tex]

(b)...

Back work ratio will be:

⇒  [tex]bwr=\frac{\dot{W_{e}}}{\dot{W_{t}}}[/tex]

Now,

⇒  [tex]\dot{W_{e}}=\dot{mc_{p}}(T_{2}-T_{1})[/tex]

On putting values, we get

          [tex]=6\times 1.005\times (579.2-300)[/tex]

          [tex]=1683.6 \ kJ/s[/tex]

⇒  [tex]\dot{W_{t}}=\dot{mc_{p}}(T_{3}-T_{4})[/tex]

          [tex]=6\times 1.005\times (1400-725.13)[/tex]

          [tex]=4069.5 \ kJ/s[/tex]

So that,

⇒  [tex]bwr=\frac{1683.6}{4069.5}=0.4137[/tex]

(c)...

Net power is equivalent to,

⇒  [tex]\dot{W}_{eyele}=\dot{W_{t}}-\dot{W_{e}}[/tex]

On substituting the values, we get

               [tex]= 4069.5-1683.6[/tex]

               [tex]=2385.9 \ kW[/tex]

Following are the solution to the  given points:

Given :  

Initial pressure [tex]p_1 = 100\ kPa \\\\[/tex]

Initial temperature [tex]T_1 = 300\ K \\\\[/tex]

Mass flow rate of air [tex]m= 6\ \frac{kg}{s}\\\\[/tex]  

Compressor pressure ratio [tex]r =10\\\\[/tex]

Turbine inlet temperature [tex]T_3 = 1400\ K\\\\[/tex]

Specific heat ratio [tex]k=1.4\\\\[/tex]

Temperature [tex]\ T_1 = 300\ K[/tex]

pressure [tex]p_1 = 100\ kPa\\\\[/tex]

[tex]\to c_p=1.005\ \frac{kJ}{kg\cdot K}\\\\[/tex]

Process 1-2 is isen tropic compression  

[tex]\to \frac{T_2}{T_1}=(\frac{P_2}{P_1})^{\frac{k-1}{k}} \\\\[/tex]

[tex]\to T_2=(\frac{P_2}{P_1})^{\frac{k-1}{k}} \ T_1 \\\\[/tex]

         [tex]=(10)^{\frac{1.4-1}{1.4}} (300)\\\\ =(10)^{\frac{0.4}{1.4}} (300) \\\\[/tex]

[tex]\to T_2 = 579.2\ K \\\\[/tex]

Process 3-4 is isen tropic expansion  

[tex]\to \frac{T_4}{T_3}=(\frac{P_4}{P_3})^{\frac{k-1}{k}}\\\\ \to T_4=(\frac{1}{10})^{\frac{1.4-1}{1.4}} (1400)\\\\\to T_4= 725.13\ K \\\\[/tex]

For point a:

The thermal efficiency of the cycle:

[tex]\to \eta = \frac{W_i-W_e}{Q_{in}} \\\\\to \eta = \frac{Q_{in}- Q_{out}}{Q_{in}}\\\\\to \eta =1 - \frac{Q_{out}}{Q_{in}} \\\\\to Q_{in}= m(h_3-h_1) = mc_p (T_4-T_1) =(6)(1.005)(725.13-300) = 2563 \ \frac{kJ}{S}\\\\\to \eta =1- \frac{Q_{out}}{Q_{in}}\\\\[/tex]

       [tex]=1-\frac{2563.5}{4949.4}\\\\ = 0.482\\\\[/tex]

 [tex]\eta = 48.2\%\\\\[/tex]

  For point b:  

The back work ratio  

[tex]\to bwr =\frac{W_e}{W_t}[/tex]

Now

[tex]\to W_e =mc_p (T_2 -T_1)[/tex]

          [tex]=(6) (1.005)(579.2 -300)\\\\ =1683.6 \ \frac{kJ}{S}\\\\[/tex]

[tex]\to W_t=mc_p(T_3-T_4)[/tex]

         [tex]=(6)(1.005)(1400 - 725.13)\\\\ = 4069.5 \frac{KJ}{s}[/tex]

[tex]\to bwr =\frac{W_s}{W_t}= \frac{1683.6}{4069.5}=0.4137[/tex]

   For point c:

The net power developed is equal to

 [tex]\to W_{cycle} = W_t-W_e \\\\[/tex]

                [tex]= ( 4069.5-1683.6)\\\\ = 2385.9 \ kW\\[/tex]

Learn more about Air compressors:

brainly.com/question/15181914

As steam is slowly injected into a turbine, the angular acceleration of the rotor is observed to increase linearly with the time t. Know that the rotor starts from rest at t = 0 and that after 10 s the rotor has completed 20 revolutions.Choose the correct equations of motion for the rotor. (You must provide an answer before moving on to the next part.)
a) a = 2kt, w = 3krº, and 8 = 4kr
b) a = {kt, w = ke?, and 0 = }ke?
c) a = kr?, w = jke', and 0 = krº
d) a = kt, w = jke?, and 0 kr

Answers

Answer:

α = kt

ω = [tex]\frac{kt^2}{2}[/tex]

θ = [tex]\frac{kt^3}{6}[/tex]  

Explanation:

given data

Initial velocity ω = 0

time t = 10 s

Number of revolutions = 20

solution

we will take here first α = kt     .....................1

and as α = [tex]\frac{d\omega}{dt}[/tex]

so that

[tex]\frac{d\omega}{dt}[/tex] = kt      ..................2

now we will integrate it then we will get

∫dω  = [tex]\int_{0}^{t} kt\ dt[/tex]   .......................3

so

ω = [tex]\frac{kt^2}{2}[/tex]

and

ω = [tex]\frac{d\theta}{dt}[/tex]     ..............4

so that

[tex]\frac{d\theta}{dt}[/tex]  = [tex]\frac{kt^2}{2}[/tex]

now we will integrate it then we will get

∫dθ = [tex]\int_{0}^{t}\frac{kt^2}{2} \ dt[/tex]      ...............5

solve it and we get

θ = [tex]\frac{kt^3}{6}[/tex]  

For flow of a liquid metal through a circular tube, the velocity and temperature profiles at a particular axial location may be approximated as being uniform and parabolic, respectively. That is, u(r) = C, and TO-T, = C11-(r/ro)2], where Ci and C2 are constants. what is the value of the Nusselt number Nup at this location?

Answers

Answer:

Nup = 8

Explanation:

u(r) = C1 and T(r) = T(s) = C2 [ 1 - r/ro)^2 ]

The temperature and velocity particles at a particular axial location is Uniform and parabolic

The Nusset Number Nup at this location can be obtained by first determining/calculating for the convection coefficient = [tex]h = \frac{q^I s}{TsTn}[/tex]

Therefore the mean temperature is calculated as follows

attached is the detailed solution and free body diagram

The closed feedwater heater of a regenerative Rankine cycle is to heat 7000 kPa feedwater from 2608C to a saturated liquid. The turbine supplies bleed steam at 6000 kPa and 3258C to this unit. This steam is condensed to a saturated liquid before entering the pump. Calculate the amount of bleed steam required to heat 1 kg of feedwater in this unit.

Answers

Answer:

the amount of bleed steam required to heat 1 kg of feedwater in this unit is 0.078 kg/s

Explanation:

Given that:

Pressure of the feed water = 7000 kPa

Temperature of the closed feedwater heater = 260 ° C

Pressure of of the turbine = 6000 kPa

Temperature of the turbine = 325 ° C

The  objective is to calculate the amount of bleed steam required to heat 1 kg of feedwater in this unit.

From the table A-4 of saturated water temperature table at temperature  260° C at state 1 ;

Enthalpies:

[tex]h_1 = h_f = 1134.8 \ kJ/kg[/tex]

From table A-6 superheated water at state 3 ; the value of the enthalpy relating to the pressure of the turbine at 6000 kPa and temperature of 325° C  is obtained by the interpolating the temperature between 300 ° C and 350 ° C

At 300° C; enthalpy = 2885.6 kJ/kg

At 325° C. enthalpy = 3043.9 kJ/kg

Thus;

[tex]\dfrac{325-300}{350-300}=\dfrac{h_{325^0}-{h_{300^0}}}{{h_{350^0}}- {h_{300^0}}}[/tex]

[tex]\dfrac{325-300}{350-300}=\dfrac{h_{325^0}-2885.6}{3043.9-2885.6 }}[/tex]

[tex]\dfrac{25}{50}=\dfrac{h_{325^0}-2885.6}{3043.9-2885.6 }}[/tex]

[tex]h_{325^0} = 2885.6 + \dfrac{25}{50}({3043.9-2885.6 )[/tex]

[tex]h_{325^0} = 2885.6 + 0.5({3043.9-2885.6 )[/tex]

[tex]h_{325^0} =2964.75 \ kJ/kg[/tex]

At pressure  of 7000 kPa at state 6; we obtain the enthalpies corresponding to the pressure at table A-5 of the saturated water pressure tables.

[tex]h_6 = h_f = 1267.5 \ kJ/kg[/tex]

From state 4 ;we obtain the specific volume corresponding to the pressure of 6000 kPa at table A-5 of the saturated water pressure tables.

[tex]v_4 = v_f = 0.001319\ m^3 /kg[/tex]

However; the specific work pump can be determined by using the formula;

[tex]W_p = v_4 (P_5-P_4)[/tex]

where;

[tex]P_4[/tex] = pressure at state 4

[tex]P_5[/tex] = pressure at state 5

[tex]W_p = 0.001319 (7000-6000)[/tex]

[tex]W_p = 0.001319 (1000)[/tex]

[tex]W_p =1.319 \ kJ/kg[/tex]

Using the energy balance equation of the closed feedwater heater to calculate the amount of bleed steam required to heat 1 kg of feed water ; we have:

[tex]E_{in} = E_{out} \\ \\ m_1h_1 +m_3h_3 + m_3W_p = (m_1+m_3)h_6[/tex]

where;

[tex]m_1 = 1 \ kg[/tex]

Replacing our other value as derived above into the energy balance equation ; we have:

[tex]1 \times 1134.8 +m_3 \times 2964.75 + m_3 \times 1.319 = (1+m_3)\times 1267.5[/tex]

[tex]1134.8 + 2966.069 \ m_3 = 1267.5 + 1267.5m_3[/tex]

Collect like terms

[tex]2966.069 \ m_3- 1267.5m_3 = 1267.5-1134.8[/tex]

[tex]1698.569 \ m_3 =132.7[/tex]

[tex]\ m_3 = \dfrac{132.7}{1698.569}[/tex]

[tex]\mathbf{ m_3 = 0.078 \ kg/s}[/tex]

Hence; the amount of bleed steam required to heat 1 kg of feedwater in this unit is 0.078 kg/s

Which of the following reduces friction in an engine A)wear B)drag C)motor oil D)defractionation

Answers

It is motor oil, as oil is used to reduce friction

A ramp from an expressway with a design speed of 30 mi/h connects with a local road, forming a T intersection. An additional lane is provided on the local road to allow vehicles from the ramp to turn right onto the local road without stopping. The turning roadway has stabilized shoulders on both sides and will provide for a onelane, one-way operation with no provision for passing a stalled vehicle. Determine the width of the turning roadway if the design vehicle is a single-unit truck. Use 0.08 for superelevation.

Answers

Answer:

the width of the turning roadway = 15 ft

Explanation:

Given that:

A ramp from an expressway with a design speed(u) =  30 mi/h connects with a local road

Using 0.08 for superelevation(e)

The minimum radius of the curve on the road can be determined by using the expression:

[tex]R = \dfrac{u^2}{15(e+f_s)}[/tex]

where;

R= radius

[tex]f_s[/tex] = coefficient of friction

From the tables of coefficient of friction for a design speed at 30 mi/h ;

[tex]f_s[/tex] = 0.20

So;

[tex]R = \dfrac{30^2}{15(0.08+0.20)}[/tex]

[tex]R = \dfrac{900}{15(0.28)}[/tex]

[tex]R = \dfrac{900}{4.2}[/tex]

R = 214.29 ft

R ≅ 215 ft

However; given that :

The turning roadway has stabilized shoulders on both sides and will provide for a onelane, one-way operation with no provision for passing a stalled vehicle.

From the tables of "Design widths of pavement for turning roads"

For a One-way operation with no provision for passing a stalled vehicle; this criteria falls under Case 1 operation

Similarly; we are told that the design vehicle is a single-unit truck; so therefore , it falls under traffic condition B.

As such in Case 1 operation that falls under traffic condition B  in accordance with the Design widths of pavement for turning roads;

If the radius = 215 ft; the value for the width of the turning roadway for this conditions = 15ft

Hence; the width of the turning roadway = 15 ft

is used to determine the shear stress at point P over the section supporting a downward shear force in the -y direction. What is Q

Answers

Answer:

Transverse shear stress formula

Explanation:

Transverse shear stress also known as the beam shear, is the shear stress due to bending of a beam.

Generally, when a beam is made to undergo a non-uniform bending, both bending moment (I) and a shear force (V) acts on its cross section or width (t).

Transverse shear stress formula is used to determine the shear stress at point P over the section supporting a downward shear force in the -y direction.

Mathematically, the transverse shear stress is given by the formula below;

[tex]T' = \frac{VQ}{It}[/tex]

Also note, T' is pronounced as tau.

Where;

V is the total shear force with the unit, Newton (N).

I is the Moment of Inertia of the entire cross sectional area with the unit, meters square (m²).

t is the thickness or width of cross sectional area of the material perpendicular to the shear with the unit centimeters (cm).

Q is the statical moment of area.

Mathematically, Q is given by the formula;

[tex]Q = y'P^{*} = ∑y'P^{*}[/tex]

Where [tex]P^{*}[/tex] is the section supporting a downward shear force in the y' direction.

The value of an SMT capacitor is signified by a

Answers

Answer:

Working volttage

Explanation:

SMT electrolytic capacitors are marked with working voltage. The value of these capacitors is measured in micro farads. It is a surface mount capacitor which is used for high volume manufacturers. They are small lead less and are widely used. They are placed on modern circuit boards.

You are tasked with designing an ICS/SCADA system. You must choose a type of ICS/SCADA system from the options listed below: Correctional facility Paint processing plant Water distribution facility Considering the type of system you chose from the list above, discuss the model you would use (time or event-based or a combination) and for what purposes. What considerations do you need to take into account in your design? How does the PLC fit into this system?

Answers

Answer:

The type of ICS/SCADA i choose is the Paint processing plant.

I will consider both the the time and event based as we need to mix various colors at different time interval and different quantities.

The PLC is used to process different tasks based on the commands assigned to it. In a paint processing plant, when a command from a computer is given to PLC for processing that tasks at that time whatever is the quantity is considered to mix it is carried out by PLC.

Explanation:

Solution

From the given question, i will select the Paint processing plant.

Here, the Supervisory Control and Data Acquisition System (SCADA) refers to a  control system which uses computer network to control and manage the various processes from a single computer.

Since we consider the paint processing system for this we make use of both the time and event based as we need to mix various colors at different time interval and different quantities.

The programming Logic Controller (PLC): This is used to process different inputs based on the commands assigned to it.

In paint processing plant, when a command from a computer is assigned to PLC for processing that function at that time whatever is the quantity is required to mix it is carried out by PLC.

So, PLC is very useful device which is also the main processing device which carries out tasks assigned by the SCADA.

Before you attempt to change a tire yourself, you should _____.
A. put on a pair of gloves
B. read your vehicle owner's manual for any special directions or warnings.
C. always call for emergency assistance first
D. let the remaining air out of the flat tire

Answers

Answer: read your vehicle owner's manual for any special directions or warnings.

Answer:

B. read your vehicle owner's manual for any special directions or warnings.

Explanation:

For a fluid flowing through a pipe assuming that pressure drop per unit length of pipe (P/L) depends on the diameter of the pipe , the velocity of fluid, the density of fluid and the viscosity of the fluid. Show that = ∅ ൬ ൰

Answers

Answer:

Explanation:

La vaca

El pato

Other Questions
why is rna shorter than DNA? a student pushed a 100 N bicycle over a distance of 15 m in 5 s. calculate the power generated. A skydiver falls toward the ground at a constant velocity. Which statement best applies Newtons laws of motion to explain the skydivers motion? Following the Pearl Harbor attack: Group of answer choices Franklin Roosevelt resigned the presidency Japan s allies Germany and Italy also declared war on the United States American isolationism increased a congressional resolution for war passed unanimously the United States still avoided involvement in the European conflict An atom has a mass of 35 a neutron mass of 35 and an electron mass of 35. What is the estimated mass of the atom Two intersecting lines l and m form an angle of 56 with each other. The reflection of a point (4, 1) along the line l followed by a reflection along line m will cause a ________ rotation. Question 18 options: A) 56 B) 112 C) 180 D) 28 a:b=7.2 how many times larger is a than b? Brokers and sales agents who submit required criminal background information and fingerprints to TREC when seeking their original license:________. Briefly discuss:(i) The principles of detecting thermal neutrons utilizing a Si detector.(ii) The physics of fast neutron detection.(iii) The principle of operation of strip detectors for charged particle detection andtheir application. judical review gives the supreme court too Can Someone answer this ASAP Which organelles are found only in plant cells and not in animal cells? Interpret the standard deviation of a set of dataQuestionA food processing plant fills snack-sized bags of crackers. The mean number of crackers in each bag is 22 and thestandard deviation is 2. The factory supervisor selects one bag that contains 24 crackers.Which of the following statements is true?Select the correct answer belowdesThe number of crackers in the supervisor's bag is 2 standard deviations to the right of the meaneryThe number of crackers in the supervisor's bag is 2 standard deviations to the left of the mean.The number of crackers in the supervisor's bag is i standard deviation to the right of the mean.upportTopThe number of crackers in the supervisor's bag is i standard deviation to the left of the meanOPreviousShow The specifications for a plastic liner for a concrete highway project calls for thickness of 5.0 mmplus or minus0.10 mm. The standard deviation of the process is estimated to be 0.02 mm.The upper specification limit for this product = ? mm (round your response to three decimalplaces).The lower specification limit for this product = ? mm (round to three decimal palces)The process capability index (CPk) = ? (round to three decimal places)The upper specification lies about ? standard deviations from the centerline (mean thickness) True or false? Nutrient upwelling in marine ecosystems and a seasonal difference in water temperature of fresh water lakes helps to redistribute organisms ??!!! 13r = 182 please explain Please use a / an / the / some / in the following sentences Please give me ________ cheese in my sandwich. An apple has a mass of 150g and a volume of 100cm Find its density in g/cm3? pls help what is gamete A. Two chromosomes that are identical B. two sets of sister chromatids C. a diploid cell that split during meiosis D. a sperm or egg produced by meiosis Justin's neighborhood association has asked him to speak in front of the zoning board regardingcity development plans in their area. Justin is a real estate agent who sells investment property inthe area, as well as a resident.Which of the following techniques is ineffective for gaining credibility and authority?Justin speaks loudly and clearly when he introduces himself as a concerned resident of theO neighborhood. He summarizes his past activity with the neighborhood association and hisrelationship with local businessesJustin explains that the neighborhood association asked him to come and speak today. He tellsO the zoning board that they share a common goal of making the city a great place to live andwork.Justin comes from a work meeting and keeps his tie on but takes off his suit jacket. He explainsO that he works closely with possible investors and has seen the benefits from zoning decisions inthe pastJustin avoids eye contact with the board so that they don't feel intimidated. He also doesn't wantto take away from the neighborhood's statement so he doesn't mention his relationship with realestate investors