KiThe 0.2.18

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 KiThe::Kinetics::experimental_kinetics::exp_kinetics_main::*;

fn main() {
    // Create a simple test dataset
    let csv_content = "time,mass,temperature\n1.0,10.0,300.0\n2.0,9.5,310.0\n3.0,9.0,320.0";
    let temp_file = std::env::temp_dir().join("test_nulls.csv");
    std::fs::write(&temp_file, csv_content).unwrap();
    
    let ds = TGADataset::from_csv(temp_file.to_str().unwrap(), "time", "temperature", "mass").unwrap();
    
    // Test the check_nulls function
    println!("Testing check_nulls function:");
    let _ds = ds.check_nulls();
    
    println!("Test completed successfully!");
}