Reorganize some code and add the start of the transport file parsing

This commit is contained in:
Alex Selimov 2026-03-28 22:56:36 -04:00
parent d5ed4c7599
commit 3548d8b449
7 changed files with 281 additions and 28 deletions

View file

@ -0,0 +1,13 @@
pub struct SpeciesTransportData {
pub name: String,
pub viscosities: Vec<TransportFit>,
pub conductivities: Vec<TransportFit>,
}
pub struct TransportFit {
pub temp_range: (f64, f64),
pub a: f64,
pub b: f64,
pub c: f64,
pub d: f64,
}