From 8dfd66fb245d4e1101b93a32ed44ace5a4d982a5 Mon Sep 17 00:00:00 2001 From: Tyler Mathis <35553152+tsmathis@users.noreply.github.com> Date: Tue, 14 Jan 2025 16:40:21 -0800 Subject: [PATCH] remove unnecessary 'dielectric' field covered by 'frequency_dependent_dielectric' --- emmet-core/emmet/core/vasp/calculation.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/emmet-core/emmet/core/vasp/calculation.py b/emmet-core/emmet/core/vasp/calculation.py index a32473b92e..bdb70c72c6 100644 --- a/emmet-core/emmet/core/vasp/calculation.py +++ b/emmet-core/emmet/core/vasp/calculation.py @@ -2,8 +2,8 @@ # mypy: ignore-errors -import os import logging +import os from datetime import datetime from pathlib import Path from typing import Any, Dict, List, Optional, Tuple, Union @@ -397,10 +397,6 @@ class CalculationOutput(BaseModel): description="The magnetization density, defined as total_mag/volume " "(units of A^-3)", ) - dielectric: Optional[dict[str, list]] = Field( - None, - description="Energy of incident photons in ev and real and imaginary parts of the dielectric tensor", - ) optical_absorption_coeff: Optional[list] = Field( None, description="Optical absorption coefficient in cm^-1" )