sciforge-lib 0.0.4

Scientific computing library — mathematics, physics, chemistry, biology, astronomy, geology, meteorology.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::Fuel;

pub mod biodiesel_b100;
pub mod biogas;
pub mod ethanol_e85;

pub fn all() -> Vec<Fuel> {
    vec![
        ethanol_e85::fuel(),
        biodiesel_b100::fuel(),
        biogas::fuel(),
    ]
}