Skip to content
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
11d97d3
Add ReadTheDocs configuration
lmoresi Jan 13, 2026
2d1de50
Add Sphinx API documentation for ReadTheDocs
lmoresi Jan 13, 2026
f023547
Fix ReadTheDocs config - don't install underworld3
lmoresi Jan 13, 2026
35c5226
Use pixi-based build for ReadTheDocs
lmoresi Jan 13, 2026
e54df1b
Fix pixi path in ReadTheDocs config
lmoresi Jan 13, 2026
3110ea8
Use ReadTheDocs jobs pattern with asdf for pixi
lmoresi Jan 13, 2026
48d7088
Create output directory before copying docs
lmoresi Jan 13, 2026
31e2774
Remove autodoc_mock_imports - pixi provides real PETSc
lmoresi Jan 13, 2026
6466019
Fix circular import: remove sys.path to source
lmoresi Jan 14, 2026
b9cb199
Add documentation for missing modules
lmoresi Jan 14, 2026
a6a5bb3
Complete meshing docs and add global_evaluate
lmoresi Jan 14, 2026
bea24b9
Add docs-audit task to check documentation coverage
lmoresi Jan 14, 2026
0b2f066
Merge pull request #21 from underworldcode/development
lmoresi Jan 18, 2026
5742e6a
Merge remote-tracking branch 'origin/main'
lmoresi Mar 13, 2026
5444f55
Update README: binder badges for v0.99/v3.0.0/dev, fix CI badge filen…
lmoresi Mar 13, 2026
f344bf5
Fix launcher dispatch payload to match expected field names
lmoresi Mar 14, 2026
0d62fa9
Fix YAML quoting in launcher dispatch payload
lmoresi Mar 14, 2026
ecf30ae
Add manual dispatch overrides for binder image builds
lmoresi Mar 14, 2026
dce52b4
Make Dockerfile resilient to different dependency versions
lmoresi Mar 14, 2026
9aeaadd
Fix stale build cache: add --no-cache-dir to pip install
lmoresi Mar 15, 2026
4117a72
Fix petsc_save_checkpoint() to use XDMF compat groups (fixes #80)
lmoresi Mar 14, 2026
e3ef3b3
Auto-detect binder launcher ref from git tag / RTD version
lmoresi Mar 17, 2026
04509cc
Merge development: add GitHub Release workflow and release notes
lmoresi Mar 22, 2026
4526d1f
Fix units setup in vector projection Poisson test
ss2098 Jun 9, 2026
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
11 changes: 11 additions & 0 deletions tests/test_1450_poisson_vector_projection.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,17 @@ def test_vector_projection_after_poisson():


def test_vector_projection_after_poisson_with_units():
# Strict units mode requires reference quantities to be set before
# creating meshes or MeshVariables with units.
uw.reset_default_model()
model = uw.get_default_model()
model.set_reference_quantities(
domain_depth=uw.quantity(1.0, "m"),
plate_velocity=uw.quantity(1.0, "m/s"),
mantle_viscosity=uw.quantity(1.0, "Pa*s"),
temperature_difference=uw.quantity(1.0, "K"),
)

"""
Test that Vector_Projection works with unit-aware meshes after Poisson solve.

Expand Down