Related questions with answers
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:
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 plot of as a function of and for and for oxygen (molar mass 0.032 .
Solution
VerifiedAnswered 2 years ago
Answered 2 years ago
Step 1
1 of 3Use 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
Create an account to view solutions
By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Recommended textbook solutions

Fundamentals of Electric Circuits
6th Edition•ISBN: 9780078028229 (12 more)Charles Alexander, Matthew Sadiku2,120 solutions

Physics for Scientists and Engineers: A Strategic Approach with Modern Physics
4th Edition•ISBN: 9780133942651 (5 more)Randall D. Knight3,508 solutions

Advanced Engineering Mathematics
10th Edition•ISBN: 9780470458365 (6 more)Erwin Kreyszig4,134 solutions

MATLAB: An Introduction with Applications
5th Edition•ISBN: 9781118629864 (1 more)Amos Gilat389 solutions
More related questions
1/4
1/7