pub mod allelopathy;
pub mod biomass;
pub mod bridge;
pub mod decomposition;
pub mod dispersal;
pub mod ecosystem;
pub mod error;
pub mod evapotranspiration;
pub mod fire;
pub mod growth;
pub mod herbivory;
pub mod integration;
pub mod lai;
pub mod mortality;
pub mod mycorrhiza;
pub mod nitrogen;
pub mod pft;
pub mod phenology;
pub mod photosynthesis;
pub mod pollination;
pub mod reproduction;
pub mod respiration;
pub mod root;
pub mod season;
pub mod stomata;
pub mod succession;
pub mod water;
#[cfg(feature = "logging")]
pub mod logging;
pub use error::{Result, VanaspatiError};
pub use growth::{GrowthModel, GrowthStage, growth_stage, water_stress_growth_factor};
pub use photosynthesis::{
PhotosynthesisPathway, canopy_light_at_depth, co2_factor, light_compensation_point,
light_interception, pathway_params, photosynthesis_rate, photosynthesis_rate_co2,
shaded_photosynthesis_rate, temperature_factor, temperature_factor_c4, temperature_factor_cam,
understory_light_fraction, water_stress_factor, water_use_efficiency,
};
pub use season::{Season, daylight_hours_at, growth_modifier_at};
pub use root::{RootSystem, RootType};
pub use pollination::{PollinationMethod, pollination_probability};
pub use dispersal::{DispersalMethod, SeedProfile, dispersal_distance, dispersal_probability};
pub use biomass::{
AllocationStrategy, BiomassPool, allocate, height_to_diameter, height_to_leaf_area,
};
pub use mortality::{
MortalityCause, age_mortality_rate, disease_mortality, drought_mortality, fire_mortality,
frost_mortality, self_thinning_mortality, windthrow_mortality,
};
pub use fire::{
FireStrategy, bark_protection, fire_return_interval_years, post_fire_establishment,
resprout_vigor, serotinous_release,
};
pub use mycorrhiza::{
MycorrhizalType, carbon_cost_fraction, colonization_rate, enhanced_n_uptake, hyphal_reach_m,
net_benefit_ratio, nutrient_enhancement,
};
pub use allelopathy::{
AllelopathicPotency, daily_input as allelopathic_input, germination_inhibition,
growth_inhibition, production_rate as allelopathic_production_rate, soil_concentration,
};
pub use water::{
SoilType, SoilWater, WaterFluxes, daily_water_balance, infiltration_rate,
saturated_conductivity, soil_evaporation,
};
pub use stomata::{
StomatalBehavior, ball_berry_conductance, boundary_layer_conductance, drought_stomatal_factor,
instantaneous_wue, saturation_vapor_pressure, total_leaf_conductance, transpiration_rate,
vapor_pressure_deficit, vpd_stomatal_factor,
};
pub use phenology::{
PhenologicalEvent, accumulated_chill, accumulated_gdd, chilling_contribution, dormancy_broken,
dormancy_onset_triggered, event_reached, event_to_growth_stage, gdd_threshold,
growing_degree_days, phenological_progress, senescence_triggered,
};
pub use decomposition::{
LitterType, SoilCarbon, SomFluxes, SomPool, base_decomposition_rate, daily_decomposition_rate,
daily_som_turnover, half_life_days, mass_decomposed, moisture_decomposition_factor,
nitrogen_release, remaining_mass, som_transfer_fractions, som_turnover_rate,
temperature_decomposition_factor,
};
pub use respiration::{
RespirationComponent, growth_respiration, growth_respiration_fraction, maintenance_respiration,
net_primary_productivity_carbon, organ_respiration_coefficient,
partitioned_maintenance_respiration, total_autotrophic_respiration,
};
pub use lai::{
LeafHabit, drought_leaf_retention, effective_lai, frost_leaf_loss, lai_from_biomass, max_lai,
seasonal_lai_multiplier,
};
pub use evapotranspiration::{
penman_monteith_et, psychrometric_constant, reference_et, surface_resistance, svp_slope,
};
pub use pft::{PftParams, PftType};
pub use nitrogen::{
NitrogenFluxes, SoilNitrogen, critical_n_concentration, daily_nitrogen_balance,
mineralization_rate, nitrogen_leaching, nitrogen_stress_factor, nitrogen_uptake,
plant_n_demand,
};
pub use herbivory::{
HerbivoryType, biomass_removal, compensatory_growth_factor, herbivory_mortality,
organ_vulnerability, total_biomass_removed,
};
pub use succession::{
SuccessionalStage, competitive_displacement, effective_growth_multiplier,
establishment_probability, max_growth_rate_multiplier, shade_tolerance, typical_lifespan_years,
};
pub use reproduction::{
VegetativeMethod, base_ramet_rate, clonal_area_m2, parent_cost_kg, ramet_cost_fraction,
resource_limited_ramets, spread_distance_m,
};
pub use ecosystem::{competition_growth, net_primary_productivity, shannon_diversity};
pub use bridge::{
allelopathy_growth_factor, atmosphere_to_photosynthesis_inputs, canopy_to_habitat_score,
evapotranspiration_cooling, fire_weather_risk, frost_risk_to_mortality, frost_to_dormancy,
growing_conditions_to_growth_multiplier, herbivore_to_biomass_loss, humidity_to_vpd,
light_to_successional_advantage, mycorrhiza_enhanced_uptake, nitrogen_to_growth_stress,
rainfall_to_water_supply, seed_production_to_food, soil_temperature_to_growth_factor,
soil_temperature_to_root_activity, soil_water_to_growth_stress,
soil_water_to_photosynthesis_stress, solar_to_par, wet_bulb_to_heat_stress,
wind_to_boundary_conductance, wind_to_dispersal_speed,
};