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
fredd [130]
3 years ago
6

A circular column is fixed at the base and not supported at the top. If the column needs to be 15ft and hold 10kips, what is the

required size of the column? Assume the material is aluminum.
Engineering
1 answer:
muminat3 years ago
3 0

Answer:

The required size of column is length = 15 ft and diameter = 4.04 inches

Explanation:

Given;

Length of the column, L = 15 ft

Applied load, P = 10 kips = 10 × 10³ Psi

End condition as fixed at the base and free at the top

thus,

Effective length of the column, \L_e = 2L = 30 ft = 360 inches

now, for aluminium

Elastic modulus, E = 1.0 × 10⁷ Psi

Now, from the Euler's critical load, we have

P =\frac{\pi^2EI}{L_e^2}

where, I is the moment of inertia

on substituting the respective values, we get

10\times10^3 =\frac{\pi^2\times1.0\times10^7\times I}{360^2}

or

I = 13.13 in⁴

also for circular cross-section

I = \frac{\pi}{64}\times d^4

thus,

13.13 = \frac{\pi}{64}\times d^4

or

d = 4.04 inches

The required size of column is length = 15 ft and diameter = 4.04 inches

You might be interested in
A steam reformer operating at 650C and 1 atm uses propane as fuel for hydrogen production. At the given operating conditions, th
dusya [7]

Answer:

Explanation:

a) for shifting reactions,

Kps =  ph2 pco2/pcoph20

=[h2] [co2]/[co] [h2o]

h2 + co2 + h2O + co + c3H8 = 1

it implies that

H2 + 0.09 + H2O + 0.08 + 0.05 = 1

solving the system of equation yields

H2 = 0.5308,

H2O = 0.2942

B)  according to Le chatelain's principle for a slightly exothermic reaction, an increase in temperature favors the reverse reaction producing less hydrogen. As a result, concentration of hydrogen in the reformation decreases with an increasing temperature.

c) to calculate the maximum hydrogen yield , both reaction must be complete

C3H8 + 3H2O ⇒ 3CO + 7H2( REFORMING)

CO + H2O ⇒ CO2 + H2 ( SHIFTING)

C3H8 + 6H2O ⇒ 3CO2 + 10 H2 ( OVER ALL)

SO,

Maximum hydrogen yield

= 10mol h2/3 molco2 + 10molh2

= 0.77

⇒ 77%

3 0
3 years ago
Which one is dependent variable?
GREYUIT [131]

Answer:

The dependent variable is MEDV - Median value of owner-occupied homes in $1000's

Explanation:

The median value of the house has to be predicted, based on its properties and neighborhood properties, this can be done by using a linear regression model.

The dependent variable in Machine Learning is the output variable that we want to predict.

Therefore, according to the question given "MEDV" is the dependent variable.

8 0
3 years ago
A mass weighing 22 lb stretches a spring 4.5 in. The mass is also attached to a damper with Y coefficient . Determine the value
Dominik [7]

Answer:

Cc= 12.7 lb.sec/ft

Explanation:

Given that

m = 22 lb

g= 32 ft/s²

m = \dfrac{22}{32}=0.6875\ s^2/ft

x= 4.5 in

1 in = 0.083 ft

x= 0.375 ft

Spring constant ,K

K=\dfrac{m}{x}=\dfrac{22}{0.375}

K= 58.66  lb/ft

The damper coefficient for critically damped system

C_c=2\sqrt{mK}

C_c=2\sqrt{0.6875\times 58.66}

Cc= 12.7 lb.sec/ft

5 0
3 years ago
An air standard cycle with constant specific heats is executed in a closed system with 0.003 kg of air and consists of the follo
Vsevolod [243]

Answer:

a) Please see attached copy below

b) 0.39KJ

c)  20.9‰

Explanation:

The three process of an air-standard cycle are described.

Assumptions

1. The air-standard assumptions are applicable.

2. Kinetic and potential energy negligible.

3. Air in an ideal gas with a constant specific heats.

Properties:

The properties of air are gotten from the steam table.

b) T₁=290K ⇒ u₁=206.91 kj/kg, h₁=290.16 kj/kg.

P₂V₂/T₂=P₁V₁/T₁⇒ T₂=P₂T₁/P₁ = 380/95(290K)= 1160K

T₃=T₂(P₃/P₂)⁽k₋1⁾/k =(1160K)(95/380)⁽⁰°⁴/₁.₄⁾ =780.6K

Qin=m(u₂₋u₁)=mCv(T₂-T₁)

=0.003kg×(0.718kj/kg.k)(1160-290)K= 1.87KJ

Qout=m(h₃₋h₁)=mCp(T₃₋T₁)

=0.003KG×(1.005kj/kg.k(780.6-290)K= 1.48KJ

Wnet, out= Qin-Qout = (1.87-1.48)KJ =0.39KJ

c)ηth= Wnet/W₍in₎ =0.39KJ/1.87KJ = 20.9‰

7 0
3 years ago
Write the following decorators and apply them to a single function (applying multiple decorators to a single function): 1. The f
natita [175]

Answer:

Complete question is:

write the following decorators and apply them to a single function (applying multiple decorators to a single function):

1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”

2. The decorator will return the wrapper per usual.

3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.

4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.

5. Apply both decorators (by @ operator to greetings()).

6. Invoke the greetings() function and capture the result.

Code :

def strong_decorator(func):

def func_wrapper(name):

return "<strong>{0}</strong>".format(func(name))

return func_wrapper

def em_decorator(func):

def func_wrapper(name):

return "<em>{0}</em>".format(func(name))

return func_wrapper

@strong_decorator

@em_decorator

def Greetings(name):

return "{0}".format(name)

print(Greetings("Hello"))

Explanation:

5 0
3 years ago
Other questions:
  • What will happen in a wire drawing operation when the cross-sectional area has a reduction of 60% in a single pass?
    10·1 answer
  • Valves on steam lines are commonly encountered and you should know how they work. For most valves, the change in velocity of the
    10·1 answer
  • What considerations are included in the Preliminary Floodproofing/Retrofitting Preference Matrix?
    7·1 answer
  • The conditions at the beginning of compression in an Otto engine operating on hot-air standard with k=1.35 and 101.325 kPa, 0.05
    10·1 answer
  • What is the output of the following program fragment. Choose appropriate data-types of variables to match output.
    10·1 answer
  • If my current directory is ‘AR’ write the path for my current directory
    5·1 answer
  • The current at resonance in a series L-C-R circuit is 0.2mA. If the applied voltage is 250mV at a frequency of 100 kHz and the c
    9·1 answer
  • Match the scenario to the problem-solving step it represents.
    7·1 answer
  • Explain race condition..<br><br>don't spam..​
    13·2 answers
  • An open tank contain oil of specific gravity 0.75 on top of
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!