Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 74 additions & 30 deletions CLAUDE.md

Large diffs are not rendered by default.

88 changes: 73 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resolver = "2"
members = [
"crates/formoniq",
"crates/derham",
"crates/exterior",
"crates/glatt",
"crates/simplicial",
"crates/multiindex",
Expand All @@ -24,7 +23,6 @@ members = [
default-members = [
"crates/formoniq",
"crates/derham",
"crates/exterior",
"crates/glatt",
"crates/simplicial",
"crates/multiindex",
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ is enforced by the crate boundaries rather than by convention.
- **[`coorder`](crates/coorder/README.md)**:
affine coordinates tagged by the space they live in,
so the maps between coordinate spaces are explicit and their confusion does not compile.
- **[`exterior`](crates/exterior/README.md)**:
the exterior algebra, with variance (forms versus vectors) tracked at the type level,
so pullback, the musical isomorphisms and the Hodge star
take their direction and metric from the type rather than from a convention.
- **[`multialgebra`](crates/multialgebra/README.md)**:
the exterior and symmetric algebras as one construction, and tensor products of them,
with the variance of each slot deciding pullback against pushforward,
the musical isomorphisms and which Gramian measures it.
- **[`simplicial`](crates/simplicial/README.md)**:
the simplicial manifold, keeping pure-combinatorial topology separate from geometry,
which enters intrinsically as signed squared edge lengths,
Expand All @@ -97,7 +97,7 @@ is enforced by the crate boundaries rather than by convention.
Because each concept lives in the lowest crate that can express it,
the lower crates are self-contained mathematical objects rather than FEEC-internal plumbing,
and are usable on their own.
`exterior` is an exterior-algebra library that knows nothing of meshes or PDEs.
`multialgebra` is a multilinear-algebra library that knows nothing of meshes or PDEs.
`simplicial` carries combinatorial topology
(boundary operators, homology, Betti numbers) alongside intrinsic Regge geometry,
none of which needs a differential form.
Expand Down Expand Up @@ -160,7 +160,7 @@ The current version is a rebuild toward the more general library described above
The crates are published on [crates.io](https://crates.io/crates/formoniq),
with documentation on [docs.rs](https://docs.rs/formoniq).
Depend on the engine with `cargo add formoniq`,
or on any lower crate on its own (`cargo add exterior`, `cargo add simplicial`, ...).
or on any lower crate on its own (`cargo add multialgebra`, `cargo add simplicial`, ...).

To build from source:

Expand Down
2 changes: 1 addition & 1 deletion crates/derham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["de-rham", "cochain", "whitney", "fem"]
categories = ["mathematics", "science"]

[dependencies]
exterior = { path = "../exterior", version = "0.2.0" }
multialgebra = { path = "../multialgebra", version = "0.2.0" }
glatt = { path = "../glatt", version = "0.2.0" }
simplicial = { path = "../simplicial", version = "0.2.0" }
coorder = { path = "../coorder", version = "0.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/derham/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ and functoriality of the composite pullback on a curved manifold.
`derham` is the discrete-forms layer of
[formoniq](https://github.com/luiswirth/formoniq),
a finite element exterior calculus (FEEC) engine:
the crate where the exterior algebra (`exterior`), the simplicial manifold (`simplicial`)
the crate where the exterior algebra (`multialgebra`), the simplicial manifold (`simplicial`)
and the continuum (`glatt`) meet.
It assembles no global operators and solves nothing.
Those live one crate up.
Expand Down
Loading