add help docs and ?

This commit is contained in:
2026-03-30 23:10:42 -07:00
parent ced43bec4f
commit 63d76bac72
76 changed files with 2184 additions and 1 deletions

30
docs/nodes/Tip Model.md Normal file
View File

@@ -0,0 +1,30 @@
# Tip Model
Generate a synthetic AFM tip model DATA_FIELD. The input field sets the pixel size for the tip. The apex (centre pixel) is the maximum value; edges are shifted to zero. Equivalent to gwy_tip_model_preset_create (tip.c / tip_model.c).
## Inputs
| Name | Type | Required | Description |
|------|------|----------|-------------|
| field | DATA_FIELD | Yes | Reference field that sets the tip pixel size |
## Outputs
| Name | Type | Description |
|------|------|-------------|
| tip | DATA_FIELD | Synthetic tip shape field |
## Controls
| Name | Type | Default | Description |
|------|------|---------|-------------|
| shape | dropdown | parabola | Tip geometry: parabola (paraboloid with apex radius R), cone (sphere-capped cone), or sphere (ball-on-stick) |
| radius | FLOAT | 10 nm | Apex radius of curvature in metres (1e-10 to 1e-6) |
| half_angle | FLOAT | 20.0 | Half-cone angle from the tip axis in degrees for the cone shape (189°) |
| n_pixels | INT | 65 | Side length of the square tip grid in pixels (odd values only, 3511) |
## Limitations
- half_angle is only used for the cone shape.
- The tip grid must be smaller than or equal to the image size for Tip Deconvolution to work correctly.
- Large n_pixels values produce large tip grids that make deconvolution slow.