Question

Molecules of a gas in a container are moving around at different speeds. Maxwell's speed distribution law gives the probability distribution P(v) as a function of temperature and speed:

P(v)=4π(M2πRT)3/2v2e(Mv2)/(2R7)P ( v ) = 4 \pi \left( \frac { M } { 2 \pi R T } \right) ^ { 3 / 2 } v ^ { 2 } e ^ { \left( - M v ^ { 2 } \right) / ( 2 R 7 ) }

where M is the molar mass of the gas in kg/mol, R = 8.31 J/(mol K), is the gas constant, Tis the temperature in kelvins, and vis the molecule's speed in m/s. Make a 3D3 - \mathrm { D } plot of P(v)P ( v ) as a function of vv and TT for 0v1000m/s0 \leq v \leq 1000 \mathrm { m } / \mathrm { s } and 70T320K70 \leq T \leq 320 \mathrm { K } for oxygen (molar mass 0.032kg/mol)\mathrm { kg } / \mathrm { mol } ) .

Solution

Verified
Answered 2 years ago
Answered 2 years ago
Step 1
1 of 3

Use Matlab function "surf" to solve the given Problem.

clear; clc;

R = 8.31; M = 0.032; v = linspace(0,1000,28); t = linspace(70,320,16); [T, V] = meshgrid(t,v); Z = 4pi(M./(2piRT)).^(3/2).V.^2.exp(-MV.^2./(2RT)); surf(V,T,Z); xlabel('Speed (m/s)') ylabel('Temperature (K)') zlabel('Probability')

Create an account to view solutions

By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Continue with GoogleContinue with Facebook

Create an account to view solutions

By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Continue with GoogleContinue with Facebook

Recommended textbook solutions

Fundamentals of Electric Circuits 6th Edition by Charles Alexander, Matthew Sadiku

Fundamentals of Electric Circuits

6th EditionISBN: 9780078028229 (12 more)Charles Alexander, Matthew Sadiku
2,120 solutions
Physics for Scientists and Engineers: A Strategic Approach with Modern Physics 4th Edition by Randall D. Knight

Physics for Scientists and Engineers: A Strategic Approach with Modern Physics

4th EditionISBN: 9780133942651 (5 more)Randall D. Knight
3,508 solutions
Advanced Engineering Mathematics 10th Edition by Erwin Kreyszig

Advanced Engineering Mathematics

10th EditionISBN: 9780470458365 (6 more)Erwin Kreyszig
4,134 solutions
MATLAB: An Introduction with Applications 5th Edition by Amos Gilat

MATLAB: An Introduction with Applications

5th EditionISBN: 9781118629864 (1 more)Amos Gilat
389 solutions

More related questions

1/4

1/7