KiThe 0.3.2

A numerical suite for chemical kinetics and thermodynamics, combustion, heat and mass transfer,chemical engeneering. Work in progress. Advices and contributions will be appreciated
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::gui::experimental_kinetics_gui::model::PlotModel;

// Group: Direct Problem (stubs)
pub struct DirectProblem;

impl DirectProblem {
    pub fn show(ui: &mut egui::Ui, _model: &mut PlotModel) {
        if ui.button("Solve IVP").clicked() {
            println!("Stub: Solve IVP");
        }

        if ui.button("Solve BVP").clicked() {
            println!("Stub: Solve BVP");
        }
    }
}