mirror of
https://github.com/aselimov/cea-rs.git
synced 2026-04-21 09:24:21 +00:00
14 lines
266 B
Rust
14 lines
266 B
Rust
|
|
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,
|
||
|
|
}
|