Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168697
Image: ubuntu2004
####################################### # plot data from evaporation-condensation simulation # data file uploaded 140509 # T=288 K # qv=0.019 # 10^6 particles / cc serve as ccn ####################################### from pylab import * data=load(DATA+'Condensation in a saturated environmnent') time=data[:,0] # column '1' time qv=data[:,1] # column 2 specific humidity (kg/kg) Lc=data[:,2] # column 3 cloud water (kg/kg) subplot(211) plot(time,qv,'o') ylabel('Cloud water mixing ratio kg/kg') xlabel('Time / seconds') subplot(212) plot(time,Lc,'o') ylabel('Specific humidity kg/kg') xlabel('Time / seconds') savefig('test2.png')