From 94b3eb433b799651abac9846b400debb88f1448f Mon Sep 17 00:00:00 2001 From: ChintanVasoya <67757721+ChintanVasoya@users.noreply.github.com> Date: Thu, 1 Oct 2020 20:56:04 +0530 Subject: [PATCH] Update Water Vapor Calculation.py --- Water Vapor Calculation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Water Vapor Calculation.py b/Water Vapor Calculation.py index 4299bc7..67d33a3 100644 --- a/Water Vapor Calculation.py +++ b/Water Vapor Calculation.py @@ -1,7 +1,7 @@ import numpy as np -T = np.linspace(-100,100,50) -es = 611*np.exp(17.27*T/(237.3+T)) -plt.plot(T,es) -plt.xlabel('T (degree Celcius)') +t = np.linspace(-100,100,50) +es = 611*np.exp(17.27*t/(237.3+t)) +plt.plot(t,es) +plt.xlabel('t (degree Celcius)') plt.ylabel('es (Pa)') plt.show()