plots module
This module defines the functions for plotting of the evolution of physical quantities
- plots.plot_diameter_squared(time, diameter_squared, title)[source]
Plots the evolution of the squared diameter of the droplet over time
- Parameters:
time (array) – time array
diameter_squared (array) – Droplet diameter squared
title (str) – Title of the plot (depends on the chosen model)
- plots.plot_droplet_position(time, position, title)[source]
Plots the evolution of the position of the droplet over time
- Parameters:
time (array) – time array of the velocity
position (numpy.ndarray) – Axial position of the droplet
title (str) – Title of the plot (depends on the chosen model)
- plots.plot_droplet_temperature(droplet_temperature)[source]
Plots the evolution of the droplet temperature over time
- Parameters:
droplet_temperature (OdeResult) – Droplet temperature
- plots.plot_droplet_velocity(time, velocity, title)[source]
Plots the evolution of the droplet axial velocity over time
- Parameters:
time (array) – time array attribute of the computed OdeResult
velocity (2D array) – velocity array attribute of the computed OdeResult
title (str) – Title of the plot (depends on the chosen model)