New Dielectric Materials
We just published data on two materials, Zr2Bi2O7 and CsTaTeO6, which were the result of a workflow to discover new dielectric materials. Dielectrics are used in CPUs and SSDs among many other electronic devices. We managed to experimentally synthesize both these materials and measure their dielectric properties (thanks Wes!), so I wanted to take the opportunity of having two crystal structures that are special to me to write a short tutorial on how to render 3D crystal structures in a browser using one of my side-projects called matterviz
.
<script>
import { Structure } from 'matterviz'
// parse all JSON files in this directory
const structs = import.meta.glob(`./*.json`, { eager: true, import: 'default' })
</script>
<!-- iterate over JSON objects and pass them to the <Structure /> component for rendering -->
{#each Object.entries(structs) as [name, structure]}
<Structure {structure} />
{/each}
Here’s what this code renders: