Physical Constant Lookup
ref_constant_lookupLook up a fundamental physical constant by name, symbol, or common alias. Returns the CODATA 2022 value, SI unit expression, relative standard uncertainty, and a short description. Recognizes common names and symbols — "speed of light", "c", "Avogadro's number", "N_A", "Planck", "h", "Boltzmann", "k_B" all resolve correctly. Fuzzy matching returns the closest match plus alternatives.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Constant name, symbol, or common alias (e.g., "speed of light", "c", "Avogadro", "N_A", "Planck constant", "h"). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Full CODATA constant name. | |
| unit | No | SI unit expression (e.g., "m s⁻¹", "J K⁻¹", "dimensionless"). | |
| error | No | Present when the call failed. Absent on success. | |
| exact | No | True when the constant has an exact defined value (no experimental uncertainty). | |
| value | No | Numeric value in SI units. | |
| symbol | No | Standard mathematical symbol. | |
| related | No | Related constants that also matched the query. | |
| codata_id | No | CODATA identifier string, or null if not in CODATA registry. | |
| description | No | Short description of the constant and its significance. | |
| uncertainty | No | Absolute standard uncertainty in SI units. Null for exactly-defined constants. | |
| match_strategy | No | How this constant was matched: exact_symbol = case-sensitive symbol hit (e.g. "G"), exact_name = exact alias/name match, fuzzy = partial or contains match. fuzzy signals the query was imprecise and the result is the closest candidate. | |
| dataset_version | No | Data source version (CODATA year). | |
| uncertainty_relative | No | Relative standard uncertainty or "exact (defined)" for exact values. |