//! Core types and structures for fluid dynamics simulations.
//!
//! This module contains the fundamental data structures and types used throughout
//! the fluid dynamics module, including state representations, boundary conditions,
//! and solver parameters.
// Re-export all public types for convenient access
pub use FluidBoundaryCondition;
pub use NavierStokesParams;
pub use ;