fork download
  1. from numpy import*
  2. from matplotlib.pyplot import*
  3. dv=0.001
  4. t=0.5
  5. v=linspace(0.35,10,1000)
  6. p=8*t/(3*v-1)-3/v**2
  7. figure(1)
  8. plot(v,p, 'r')
  9. show()
Success #stdin #stdout 0.66s 55360KB
stdin
Standard input is empty
stdout
Standard output is empty