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
Ket [755]
2 years ago
15

A piston-cylinder device contains 0.15 kg of air initially at 2 MPa and 350 °C. The air is first expanded isothermally to 500 kP

a, then compressed polytropically with a polytropic exponent of 1.2 to the initial pressure, and finally compressed in an isobaric process to the initial state. Determine the boundary work for each process and the net work for the cycle?
Engineering
1 answer:
Semmy [17]2 years ago
7 0

Answer:

Isothermal  expansion W₁ =-37198.9 J

Polytropic Compression W₂ =-34872.82 J

Isobaric Compression W₃ =  -6974.566 J

The net work for the cycle = -79046.29 J

Explanation:

Mass of air = 0.15 kg = 150 g

Molar mass = 28.9647 g/mol

Number of moles = 150 g /28.9647 g/mol = 5.179 moles of air

PV = nRT therefrore V = nRT/(P) = 5.179*8.314*(350+273.15)/(2×10⁶) = 0.0134167 m³

For isothermal expansion we have

P₁V₁ = P₂V₂ or V₂ = P₁V₁/P₂ = 2×10⁶*0.0134167 / (5×10⁵) = 0.0536668 m³

Therefore work done

W₁ = -nRTln(V₂/V₁) = -26833ln(4) = -37198.9 J

Stage 2

Compression polytropically we have

\frac{P_2}{P_3} = (\frac{V_3}{V_2} )^n  where P₃ = 2 MPa

Therefore V₃ = (\frac{1}{4} )^{\frac{1}{1.2} }*V_2  = 1.6904×10⁻² m³

Work = W₂ = \frac{P_2V_2-P_3V_3}{n-1} =  -34872.82 J

\frac{P_2}{P_3} = (\frac{T_2}{T_3} )^\frac{n}{n-1}     or T₃ = T_2*(\frac{P_3}{P_2})^\frac{n-1}{n} = 785.12 K

Isobaric compression we have  thus

Work done W₃ = P(V₁ -V₃) = -6974.566 J

Total work = W₁ + W₂ + W₃ = -37198.9 J + -34872.82 J + -6974.566 J = -79046.29 J

You might be interested in
Discuss the organizational system that you believe would be the most effective for the safety officer in a medium-sized (100-200
marin [14]

Answer:

A safety manager is a person who designs and maintains the safety elements at workplace. A balance should be required for production and the job in providing work environment. As a safety officer in a medium sized manufacturing facility the following organizational system can be designed and maintained:

  • Maintaining a workplace as per the guidelines by Occupational safety and health association. The rules and regulation should be such that maintains the manufacturing facilities.  
  • For warning to workers proper labelling, floor mapping, signs, posters should be used.  
  • Procurement and usage of safe tools.  
  • A guideline that describes safety standard and precautionary measures should be available to the workers. They should be aware about all the steps that needs to be taken in crisis.  
  • Ensuring that the workers have enough training safety and health or accident prevention.  
  • Identify and eliminate the hazardous elements from the workplace.  
  • A strict action should be taken against the worker in case of violation of rules and not adhering with guidelines.

3 0
2 years ago
A light bulb is switched on and within a few minutes its temperature becomes constant. Is it at equilibrium or steady state.
EleoNora [17]

Answer:

The temperature attains equilibrium with the surroundings.  

Explanation:

When the light bulb is lighted we know that it's temperature will go on increasing as the filament of the bulb has to  constantly dissipates energy during the time in which it is on. Now this energy is dissipated as heat as we know it, this heat energy is absorbed by the material of the bulb which is usually made up of glass, increasing it's temperature. Now we know that any object with temperature above absolute zero has to dissipate energy in form of radiations.

Thus we conclude that the bulb absorbs as well as dissipates it's absorbed thermal energy. we know that this rate is dependent on the temperature of the bulb thus it the temperature of the bulb does not change we can infer that an equilibrium has been reached in the above 2 processes i.e the rate of energy absorption equals the rate of energy dissipation.

Steady state is the condition when the condition does not change with time no matter whatever the surrounding conditions are.

6 0
3 years ago
LC3 Programming ProblemUse .BLKW to set up an array of 10 values, starting at memory location x4000, as in lab 4.Now programmati
irga5000 [103]

Answer:

Check the explanation

Explanation:

Code

.ORIG x4000

;load index

LD R1, IND

;increment R1

ADD R1, R1, #1

;store it in ind

ST R1, IND

;Loop to fill the remaining array

TEST LD R1, IND

;load 10

LD R2, NUM

;find tw0\'s complement

NOT R2, R2

ADD R2, R2, #1

;(IND-NUM)

ADD R1, R1, R2

;check (IND-NUM)>=0

BRzp GETELEM

;Get array base

LEA R0, ARRAY

;load index

LD R1, IND

;increment index

ADD R0, R0, R1

;store value in array

STR R1, R0,#0

;increment part

INCR

;Increment index

ADD R1, R1, #1

;store it in index

ST R1, IND

;go to test

BR TEST

;get the 6 in R2

;load base address

GETELEM LEA R0, ARRAY

;Set R1=0

AND R1, R1,#0

;Add R1 with 6

ADD R1, R1, #6

;Get the address

ADD R0, R0, R1

;Load the 6th element into R2

LDR R2, R0,#0

;Display array contents

PRINT

;set R1 = 0

AND R1, R1, #0

;Loop

;Get index

TOP ST R1, IND

;Load num

LD R3,NUM

;Find 2\'s complement

NOT R3, R3

ADD R3, R3,#1

;Find (IND-NUM)

ADD R1, R1,R3

;repeat until (IND-NUM)>=0

BRzp DONE

;load array address

LEA R0, ARRAY

;load index

LD R1, IND

;find address

ADD R3, R0, R1

;load value

LDR R1, R3,#0

;load 0x0030

LD R3, HEX

;convert value to hexadecimal

ADD R0, R1, R3

;display number

OUT

;GEt index

LD R1, IND

;increment index

ADD R1, R1, #1

;go to top

BR TOP

;stop

DONE HALT

;declaring variables

;set limit

NUM .FILL 10

;create array

ARRAY .BLKW 10 #0

;variable for index

IND .FILL 0

;hexadecimal value

HEX .FILL x0030

;stop

.END

7 0
2 years ago
(D)<br> 13. Describe the differences between an impact socket and a conventional socket.
docker41 [41]

Answer:

The wall of an impact socket is around 50% thicker than that of a regular socket, making it suitable for use with pneumatic impact tools, whereas regular sockets should only be used on hand tools.

Explanation:

This allows the socket to remain securely attached to the impact wrench anvil, even under high stress situations.

3 0
2 years ago
If the bending moment (M) is 4,176 ft-lb and the beam is an 1 beam, calculate the bending stress (psi) developed at a point with
SpyIntel [72]

Answer:

Bending stress at point 3.96 is \sigma_b = 1.37 psi

Explanation:

Given data:

Bending Moment M is 4.176 ft-lb = 50.12 in- lb

moment of inertia I = 144 inc^4

y = 3.96 in

\sigma_b = \frac{M}{I} \times y

putting all value to get bending stress

\sigma_b = \frac{50.112}{144} \times 3.96  

\sigma_b =  1.37 psi

Bending stress at point 3.96 is \sigma_b = 1.37 psi

3 0
3 years ago
Other questions:
  • Given the unity feedback system
    5·1 answer
  • A water jet jump involves a jet cross-sectional area of 0.01 m2 , and a jet velocity of 30 m/s. The jet is surrounded by entrain
    6·1 answer
  • What does WCS stand for? A. Western CAD System B. Worldwide Coordinate Sectors C. World Coordinate System D. Wrong CAD Settings
    10·1 answer
  • The outer surface of a spacecraft in space has an emissivity of 0.6 and an absorptivity of 0.2 for solar radiation. If solar rad
    12·1 answer
  • Write a program that asks the user for the name of a file. The program should display the number of words that the file contains
    7·1 answer
  • Filler metals range in diameter from 1/16" to 3/8"*<br> O<br> true<br> O False
    15·1 answer
  • A driver is traveling at 90 km/h down a 3% grade on good, wet pavement. An accident
    11·1 answer
  • Plz help electrical technology
    15·2 answers
  • The following is a series of questions pertaining to the NSPE Code of Ethics. Please indicate whether the statement are true or
    14·1 answer
  • Phosphorus and nitrogen are included in which category of water pollutants?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!