Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1791:3e4ae9bfe86a feature/grids/curvilinear
Update manifests
author | Vidar Stiernström <vidar.stiernstrom@gmail.com> |
---|---|
date | Sun, 29 Sep 2024 12:52:49 -0700 |
parents | 43c0bfc13de3 |
children | a6deaf70862b |
line wrap: on
line source
# TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids. # Review: Address this todo? module Grids using Diffinitive.LazyTensors using StaticArrays using LinearAlgebra # Grid export Grid export coordinate_size export component_type export grid_id export boundary_id export boundary_indices export boundary_identifiers export boundary_grid export min_spacing export coarsen export refine export eval_on export componentview export ArrayComponentView export normal export BoundaryIdentifier export TensorGridBoundary export CartesianBoundary export LowerBoundary export UpperBoundary export TensorGrid export ZeroDimGrid export EquidistantGrid export inverse_spacing export spacing export equidistant_grid # MappedGrid export MappedGrid export jacobian export logical_grid export mapped_grid export metric_tensor include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") include("mapped_grid.jl") end # module