- Plots of pressure versus volume
Having some difficulty with an assignment
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
The ideal gas law relates the pressure ?, volume ?, and temperature ? of an ideal gas: ?? = ??? where ? is the number of moles and ? = 8.3145 ?/(? ???). Plots of pressure versus volume at constant temperature are called isotherms. Plot the isotherms for one mole of an ideal gas for volume ranging from 1 to 10 ?3 , at temperatures of ? = 100, 200, 300, ??? 400 ? (four curves in one plot). Label the axes and display a title and a legend. The units for pressure are Pa. After completing this step, you should obtain four plots in a single Figure Window.
 Been trying to figure out how to start this, and completey lost. Not looking for direct answers, just want to know how to go about it. 
1 comentario
  darova
      
      
 el 15 de Oct. de 2019
				It means that you should express P = ...
Use plot function
V = 1 .. 10;
T1 = 100
% ...
T4 = 400
P1 = ...
    % ...
P4 = ...
plot(V,P1)
hold on
plot(V,P2)
% ...
Respuestas (1)
  Abanoub Rezkallah
 el 25 de Feb. de 2022
        The ideal gas law relates the pressure 𝑃𝑃, volume 𝑉𝑉, and temperature 𝑇𝑇 of an ideal gas: 
𝑃𝑃𝑉𝑉 = 𝑠𝑠𝑛𝑛𝑇𝑇 
1 comentario
  Walter Roberson
      
      
 el 25 de Feb. de 2022
				What is ss in this?
The Ideal Gas Law is usual stated as
P*V = n*R*T
Ver también
Categorías
				Más información sobre Elements en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



