بنقرة واحدة
mat-amorphization
Generate amorphorized structures from crystalline starting points using a melt-quench MD protocol.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate amorphorized structures from crystalline starting points using a melt-quench MD protocol.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Quantify prediction uncertainty of MACE MLIPs using committee (ensemble) models; flag high-uncertainty structures for DFT verification.
Compute phonon-limited carrier mobility and mode-resolved electron-phonon coupling in 2D materials from first principles with Quantum ESPRESSO and EPW.
GPU-accelerated batched inference for MACE, MatGL (TensorNet/M3GNet/CHGNet), and FairChem MLIPs using NValchemi, enabling parallel static, relax, and MD workflows across multiple structures simultaneously.
Extract structured synthesis procedures from a folder of PDFs using the LeMat-Synth GeneralSynthesisOntology schema, producing one JSON file per paper with per-material synthesis records.
Predict LC-MS/MS (MS2, tandem mass spectra) from SMILES via ICEBERG, a two-stage deep neural network. Outputs predicted m/z vs intensity spectrum, fragment ion SMILES, and a spectrum plot.
Match an experimental spectrum (1H NMR, 13C NMR, IR) against predicted or database reference spectra for candidate ranking and structure confirmation. Supports local catalog lookup, public database fallback, and pluggable similarity metrics.
| name | mat-amorphization |
| description | Generate amorphorized structures from crystalline starting points using a melt-quench MD protocol. |
| category | ["materials"] |
To generate disordered, amorphous structures from crystalline inputs using molecular dynamics (MD). This is achieved through a "melt-quench" protocol, where the material is heated above its melting point and then rapidly cooled to "freeze" the liquid-like disorder.
The standard Computational amorphization protocol involves:
prep_supercell.py helper script. By default, it generates an orthorhombic conventional supercell with approximately 100 atoms, ensuring a robust starting point for amorphization.python .agents/skills/mat-amorphization/scripts/prep_supercell.py --input crystalline.cif --output supercell.cif
MACE-MP-large or CHGNet using the mcp_mace_load_model (or similar) tool.Amorphization is performed by calling the run_md tool in a sequence:
Heat the system to a high temperature (e.g., 3000K) to eliminate crystalline order.
mcp_mace_run_mdnvt_langevin (Robust for high-T dynamics).temperature=3000, steps=5000 (10 ps), ensemble="nvt_langevin", timestep=2.0.Cool the system rapidly to the target temperature (e.g., 300K).
mcp_mace_run_mdnvt_langevin (Supports specific set_temperature ramping).monitor_type="quenching" and monitor_params={"temperature_end": 300, "steps": 5000}.temperature=3000 (start), steps=5000 (10 ps), ensemble="nvt_langevin".Relax the structure at the target temperature to reach equilibrium distribution.
mcp_mace_run_mdnvt_bussi (Bussi-Donadio-Parrinello) - Provides correct canonical sampling.temperature=300, steps=2500 (5 ps), ensemble="nvt_bussi".Use the analyze_amorphous.py script to verify the results:
prep_supercell.py: Expands a unit cell to a supercell.analyze_amorphous.py: Calculates RDF and coordination numbers from the final structure..agents/skills/mat-amorphization/examples/ for validated amorphous structures.Author: Bowen Deng Contact: GitHub @learningmatter-mit