Fresh artifacts for your SolveForce app
- Unified JSON (clean contract):
/mnt/data/isotopes_master.json[ { "element_z": 1, "element_symbol": "H", "Known": 7, "Stable": 2, "Unstable": 5, "Predicted": 17, "Gap": 10 }, … ] - Top 25 “Gap” report (where we’re missing the most):
CSV → isotopes_top_gap_25.csv
Markdown → isotopes_top_gap_25.md
Drop
isotopes_master.jsoninto your/public/files/(or S3/CDN) and point your UI or API at it. It’s already normalized with explicitelement_zandelement_symbolkeys.
Plug into the SolveForce interface (quick)
Backend: serve /api/isotopes from the JSON.
// Next.js / Express-style
export default async function handler(req, res) {
const data = await fetch(process.env.ISOTOPES_JSON_URL || "/files/isotopes_master.json")
.then(r => r.json());
res.status(200).json(data);
}
Frontend: the React component I sent (IsotopeMasterTable) will render the Known / Stable (strict) / Unstable / Predicted / Gap columns, sortable + filterable, with CSV/MD download buttons.
Optional enhancements (I can prep these too):
- Top-gaps endpoint
/api/isotopes/top-gaps?limit=20 - Block filters(s/p/d/f) and Z-range presets in the UI
- Model overlays(switch Predicted column between Neufcourt-2020 baseline and, e.g., DRHBc upper range ≈9,035) to visualize theoretical variance
- Drip-line flags(proton/neutron edges) per element
If you want any of those, say the word and I’ll generate the files and code stubs to match your stack.
Key terms in plain language
Open a term for a concise explanation of language used on this page.
Content Delivery Network (CDN)
A distributed system that serves website or application content from locations closer to users, improving speed, resilience, and capacity.
API
An application programming interface is a defined way for software systems to exchange data or request functions from one another.
Colocation
Placing customer-owned servers and network equipment in a professionally operated data center that provides power, cooling, physical security, and connectivity.
Cloud Computing
Computing resources—such as applications, servers, storage, or databases—delivered from remote infrastructure and scaled as requirements change.
Infrastructure as a Service (IaaS)
Cloud-based servers, storage, and networking that customers configure and manage without owning the underlying data-center hardware.
Bandwidth
The amount of data a connection can carry in a given time, usually measured in Mbps or Gbps. More bandwidth supports more users, devices, and simultaneous applications.