[][src]Struct hassium_procedural::world_2d_climate_simulation::World2dClimateSimulationConfig

pub struct World2dClimateSimulationConfig {
    pub world_axis_angle: f64,
    pub full_year_steps: usize,
    pub mass_diffuse_factor: f64,
    pub mass_diffuse_iterations: usize,
    pub mass_advect_factor: f64,
    pub viscosity_factor: f64,
    pub viscosity_iterations: usize,
    pub poisson_pressure_iterations: usize,
    pub slopeness_refraction_power: f64,
    pub water_capacity: f64,
    pub altitude_range: Range<f64>,
    pub temperature_range: Range<f64>,
    pub humidity_limit_range: Range<f64>,
    pub rainfall_factor: f64,
    pub evaporation_factor: f64,
    pub world_core_heating: f64,
    pub sun_heating: f64,
    pub sun_heating_adaptive_correction_factor: f64,
    pub sun_heating_absorption_surface_water_range: Range<f64>,
    pub thermal_radiation: f64,
}

Fields

world_axis_angle: f64full_year_steps: usizemass_diffuse_factor: f64mass_diffuse_iterations: usizemass_advect_factor: f64viscosity_factor: f64viscosity_iterations: usizepoisson_pressure_iterations: usizeslopeness_refraction_power: f64water_capacity: f64altitude_range: Range<f64>temperature_range: Range<f64>humidity_limit_range: Range<f64>rainfall_factor: f64evaporation_factor: f64world_core_heating: f64sun_heating: f64sun_heating_adaptive_correction_factor: f64sun_heating_absorption_surface_water_range: Range<f64>thermal_radiation: f64

Trait Implementations

impl Clone for World2dClimateSimulationConfig[src]

impl Default for World2dClimateSimulationConfig[src]

impl Debug for World2dClimateSimulationConfig[src]

impl Serialize for World2dClimateSimulationConfig[src]

impl<'de> Deserialize<'de> for World2dClimateSimulationConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SetParameter for T