tud_lbm.io.plotting.contact_line_speed_plot =========================================== .. py:module:: tud_lbm.io.plotting.contact_line_speed_plot .. autoapi-nested-parse:: Contact-line speed history analysis plots. Classes ------- .. autoapisummary:: tud_lbm.io.plotting.contact_line_speed_plot.ContactLineSpeedLeftPlot tud_lbm.io.plotting.contact_line_speed_plot.ContactLineSpeedRightPlot tud_lbm.io.plotting.contact_line_speed_plot.ContactLineSpeedsPairPlot Module Contents --------------- .. py:class:: ContactLineSpeedLeftPlot(config: tud_lbm.config.SimulationConfig | None = None) Bases: :py:obj:`_ContactLineSpeedBase` Plot left contact-line speed over time. .. py:attribute:: name :value: 'contact_line_speed_left' .. py:attribute:: title :value: 'Left contact-line speed vs timestep' .. py:attribute:: ylabel :value: 'd(cll_left)/dt' .. py:attribute:: color :value: 'tab:brown' .. py:attribute:: cl_key :value: 'cll_left' .. py:attribute:: required_keys :value: ('cll_left',) .. py:class:: ContactLineSpeedRightPlot(config: tud_lbm.config.SimulationConfig | None = None) Bases: :py:obj:`_ContactLineSpeedBase` Plot right contact-line speed over time. .. py:attribute:: name :value: 'contact_line_speed_right' .. py:attribute:: title :value: 'Right contact-line speed vs timestep' .. py:attribute:: ylabel :value: 'd(cll_right)/dt' .. py:attribute:: color :value: 'tab:pink' .. py:attribute:: cl_key :value: 'cll_right' .. py:attribute:: required_keys :value: ('cll_right',) .. py:class:: ContactLineSpeedsPairPlot(config: tud_lbm.config.SimulationConfig | None = None) Bases: :py:obj:`tud_lbm.io.plotting.base.AnalysisPlot` Render paired left/right contact-line speed history. .. py:attribute:: name :value: 'contact_line_speeds_pair' .. py:attribute:: required_keys :value: ('cll_left', 'cll_right') .. py:method:: compute(files: list[pathlib.Path]) -> dict[str, numpy.ndarray] Compute left/right contact-line speed arrays for all snapshots. .. py:method:: render(ax: matplotlib.axes.Axes, precomputed: dict[str, numpy.ndarray]) -> None Draw the paired contact-line speed scatter plot.