mirror of
https://github.com/aselimov/cea-rs.git
synced 2026-04-21 09:24:21 +00:00
Reorganize some code and add the start of the transport file parsing
This commit is contained in:
parent
d5ed4c7599
commit
3548d8b449
7 changed files with 281 additions and 28 deletions
13
src/properties/transport_fit.rs
Normal file
13
src/properties/transport_fit.rs
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue