@mat3ra/prode 2026.6.12-0 → 2026.7.14-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,7 @@ import TotalEnergyContributionsProperty from "./properties/object/TotalEnergyCon
26
26
  import FermiEnergyProperty from "./properties/scalar/FermiEnergyProperty";
27
27
  import FormationEnergyProperty from "./properties/scalar/FormationEnergyProperty";
28
28
  import HOMOEnergyProperty from "./properties/scalar/HOMOEnergyProperty";
29
+ import InterfacialEnergyProperty from "./properties/scalar/InterfacialEnergyProperty";
29
30
  import IonizationPotentialElementalProperty from "./properties/scalar/IonizationPotentialElementalProperty";
30
31
  import LUMOEnergyProperty from "./properties/scalar/LUMOEnergyProperty";
31
32
  import PressureProperty from "./properties/scalar/PressureProperty";
@@ -55,7 +56,7 @@ export default class PropertyFactory {
55
56
  static getNonScalarPropertyNames(): PropertyName[];
56
57
  static getArrayOfObjectsPropertyNames(): PropertyName[];
57
58
  private static filterPropertyNames;
58
- static createProperty(config: AnyProperty): FormationEnergyContributionsProperty | AveragePotentialProfileProperty | BandGapsProperty | BandStructureProperty | ChargeDensityProfileProperty | ConvergenceElectronicProperty | ConvergenceIonicProperty | DensityOfStatesProperty | DielectricTensorProperty | FileContentProperty | FinalStructureProperty | HubbardUProperty | HubbardVNNProperty | HubbardVProperty | IsRelaxedProperty | JupyterNotebookEndpointProperty | PhononDispersionsProperty | PhononDOSProperty | PotentialProfileProperty | ReactionEnergyProfileProperty | WavefunctionAmplitudeProperty | WorkflowProperty | TotalEnergyContributionsProperty | FermiEnergyProperty | FormationEnergyProperty | HOMOEnergyProperty | IonizationPotentialElementalProperty | LUMOEnergyProperty | PressureProperty | ReactionEnergyBarrierProperty | SurfaceEnergyProperty | ThermalCorrectionToEnergyProperty | ThermalCorrectionToEnthalpyProperty | TotalEnergyProperty | TotalForcesProperty | ValenceBandOffsetProperty | ZeroPointEnergyProperty | AtomicForcesProperty | MagneticMomentsProperty | StressTensorProperty;
59
+ static createProperty(config: AnyProperty): FormationEnergyContributionsProperty | AveragePotentialProfileProperty | BandGapsProperty | BandStructureProperty | ChargeDensityProfileProperty | ConvergenceElectronicProperty | ConvergenceIonicProperty | DensityOfStatesProperty | DielectricTensorProperty | FileContentProperty | FinalStructureProperty | HubbardUProperty | HubbardVNNProperty | HubbardVProperty | IsRelaxedProperty | JupyterNotebookEndpointProperty | PhononDispersionsProperty | PhononDOSProperty | PotentialProfileProperty | ReactionEnergyProfileProperty | WavefunctionAmplitudeProperty | WorkflowProperty | TotalEnergyContributionsProperty | FermiEnergyProperty | FormationEnergyProperty | HOMOEnergyProperty | InterfacialEnergyProperty | IonizationPotentialElementalProperty | LUMOEnergyProperty | PressureProperty | ReactionEnergyBarrierProperty | SurfaceEnergyProperty | ThermalCorrectionToEnergyProperty | ThermalCorrectionToEnthalpyProperty | TotalEnergyProperty | TotalForcesProperty | ValenceBandOffsetProperty | ZeroPointEnergyProperty | AtomicForcesProperty | MagneticMomentsProperty | StressTensorProperty;
59
60
  static createMetaProperty(config: AnyMetaProperty): MetaProperty;
60
61
  static createProtoProperty(config: AnyProtoProperty): AtomicConstraintsProperty | BoundaryConditionsProperty;
61
62
  }
@@ -30,6 +30,7 @@ const TotalEnergyContributionsProperty_1 = __importDefault(require("./properties
30
30
  const FermiEnergyProperty_1 = __importDefault(require("./properties/scalar/FermiEnergyProperty"));
31
31
  const FormationEnergyProperty_1 = __importDefault(require("./properties/scalar/FormationEnergyProperty"));
32
32
  const HOMOEnergyProperty_1 = __importDefault(require("./properties/scalar/HOMOEnergyProperty"));
33
+ const InterfacialEnergyProperty_1 = __importDefault(require("./properties/scalar/InterfacialEnergyProperty"));
33
34
  const IonizationPotentialElementalProperty_1 = __importDefault(require("./properties/scalar/IonizationPotentialElementalProperty"));
34
35
  const LUMOEnergyProperty_1 = __importDefault(require("./properties/scalar/LUMOEnergyProperty"));
35
36
  const PressureProperty_1 = __importDefault(require("./properties/scalar/PressureProperty"));
@@ -55,6 +56,7 @@ const PROPERTY_CLASS_MAP = {
55
56
  [LUMOEnergyProperty_1.default.propertyName]: LUMOEnergyProperty_1.default,
56
57
  [FormationEnergyProperty_1.default.propertyName]: FormationEnergyProperty_1.default,
57
58
  [SurfaceEnergyProperty_1.default.propertyName]: SurfaceEnergyProperty_1.default,
59
+ [InterfacialEnergyProperty_1.default.propertyName]: InterfacialEnergyProperty_1.default,
58
60
  [ConvergenceElectronicProperty_1.default.propertyName]: ConvergenceElectronicProperty_1.default,
59
61
  [ConvergenceIonicProperty_1.default.propertyName]: ConvergenceIonicProperty_1.default,
60
62
  [FermiEnergyProperty_1.default.propertyName]: FermiEnergyProperty_1.default,
@@ -0,0 +1,5 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { InterfacialEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ export type InterfacialEnergyPropertySchemaMixin = Omit<InterfacialEnergyPropertySchema, "_id" | "slug" | "systemName" | "schemaVersion">;
4
+ export type InterfacialEnergyPropertyInMemoryEntity = InMemoryEntity & InterfacialEnergyPropertySchemaMixin;
5
+ export declare function interfacialEnergyPropertySchemaMixin<T extends InMemoryEntity>(item: InMemoryEntity): asserts item is T & InterfacialEnergyPropertySchemaMixin;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.interfacialEnergyPropertySchemaMixin = interfacialEnergyPropertySchemaMixin;
4
+ function interfacialEnergyPropertySchemaMixin(item) {
5
+ // @ts-expect-error
6
+ const properties = {
7
+ get name() {
8
+ return this.requiredProp("name");
9
+ },
10
+ set name(value) {
11
+ this.setProp("name", value);
12
+ },
13
+ get units() {
14
+ return this.requiredProp("units");
15
+ },
16
+ set units(value) {
17
+ this.setProp("units", value);
18
+ },
19
+ get value() {
20
+ return this.requiredProp("value");
21
+ },
22
+ set value(value) {
23
+ this.setProp("value", value);
24
+ },
25
+ };
26
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
27
+ }
@@ -16,6 +16,12 @@ function workflowPropertySchemaMixin(item) {
16
16
  set workflows(value) {
17
17
  this.setProp("workflows", value);
18
18
  },
19
+ get compute() {
20
+ return this.prop("compute");
21
+ },
22
+ set compute(value) {
23
+ this.setProp("compute", value);
24
+ },
19
25
  get metadata() {
20
26
  return this.prop("metadata");
21
27
  },
@@ -64,6 +70,18 @@ function workflowPropertySchemaMixin(item) {
64
70
  set tags(value) {
65
71
  this.setProp("tags", value);
66
72
  },
73
+ get description() {
74
+ return this.prop("description");
75
+ },
76
+ set description(value) {
77
+ this.setProp("description", value);
78
+ },
79
+ get descriptionObject() {
80
+ return this.prop("descriptionObject");
81
+ },
82
+ set descriptionObject(value) {
83
+ this.setProp("descriptionObject", value);
84
+ },
67
85
  };
68
86
  Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
69
87
  }
@@ -11,6 +11,7 @@ export { default as PressureProperty } from "./properties/scalar/PressurePropert
11
11
  export { default as ReactionEnergyBarrierProperty } from "./properties/scalar/ReactionEnergyBarrierProperty";
12
12
  export { default as FormationEnergyProperty } from "./properties/scalar/FormationEnergyProperty";
13
13
  export { default as SurfaceEnergyProperty } from "./properties/scalar/SurfaceEnergyProperty";
14
+ export { default as InterfacialEnergyProperty } from "./properties/scalar/InterfacialEnergyProperty";
14
15
  export { default as TotalEnergyProperty } from "./properties/scalar/TotalEnergyProperty";
15
16
  export { default as HOMOEnergyProperty } from "./properties/scalar/HOMOEnergyProperty";
16
17
  export { default as LUMOEnergyProperty } from "./properties/scalar/LUMOEnergyProperty";
package/dist/js/index.js CHANGED
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.ProtoPropertyHolder = exports.MetaPropertyHolder = exports.PropertyHolder = exports.metaPropertyHolderMixin = exports.propertyHolderMixin = exports.protoPropertyHolderMixin = exports.ReactionEnergyProfileProperty = exports.WavefunctionAmplitudeProperty = exports.PotentialProfileProperty = exports.ChargeDensityProfileProperty = exports.BandStructureProperty = exports.ThermalCorrectionToEnthalpyProperty = exports.ThermalCorrectionToEnergyProperty = exports.LUMOEnergyProperty = exports.HOMOEnergyProperty = exports.TotalEnergyProperty = exports.SurfaceEnergyProperty = exports.FormationEnergyProperty = exports.ReactionEnergyBarrierProperty = exports.PressureProperty = exports.IsRelaxedProperty = exports.BandGapsProperty = exports.FinalStructureProperty = exports.FormationEnergyContributionsProperty = exports.PseudopotentialMetaProperty = exports.MetaProperty = exports.Property = exports.PropertyType = exports.PropertyName = exports.PropertyFactory = void 0;
20
+ exports.ProtoPropertyHolder = exports.MetaPropertyHolder = exports.PropertyHolder = exports.metaPropertyHolderMixin = exports.propertyHolderMixin = exports.protoPropertyHolderMixin = exports.ReactionEnergyProfileProperty = exports.WavefunctionAmplitudeProperty = exports.PotentialProfileProperty = exports.ChargeDensityProfileProperty = exports.BandStructureProperty = exports.ThermalCorrectionToEnthalpyProperty = exports.ThermalCorrectionToEnergyProperty = exports.LUMOEnergyProperty = exports.HOMOEnergyProperty = exports.TotalEnergyProperty = exports.InterfacialEnergyProperty = exports.SurfaceEnergyProperty = exports.FormationEnergyProperty = exports.ReactionEnergyBarrierProperty = exports.PressureProperty = exports.IsRelaxedProperty = exports.BandGapsProperty = exports.FinalStructureProperty = exports.FormationEnergyContributionsProperty = exports.PseudopotentialMetaProperty = exports.MetaProperty = exports.Property = exports.PropertyType = exports.PropertyName = exports.PropertyFactory = void 0;
21
21
  var PropertyFactory_1 = require("./PropertyFactory");
22
22
  Object.defineProperty(exports, "PropertyFactory", { enumerable: true, get: function () { return __importDefault(PropertyFactory_1).default; } });
23
23
  var settings_1 = require("./settings");
@@ -45,6 +45,8 @@ var FormationEnergyProperty_1 = require("./properties/scalar/FormationEnergyProp
45
45
  Object.defineProperty(exports, "FormationEnergyProperty", { enumerable: true, get: function () { return __importDefault(FormationEnergyProperty_1).default; } });
46
46
  var SurfaceEnergyProperty_1 = require("./properties/scalar/SurfaceEnergyProperty");
47
47
  Object.defineProperty(exports, "SurfaceEnergyProperty", { enumerable: true, get: function () { return __importDefault(SurfaceEnergyProperty_1).default; } });
48
+ var InterfacialEnergyProperty_1 = require("./properties/scalar/InterfacialEnergyProperty");
49
+ Object.defineProperty(exports, "InterfacialEnergyProperty", { enumerable: true, get: function () { return __importDefault(InterfacialEnergyProperty_1).default; } });
48
50
  var TotalEnergyProperty_1 = require("./properties/scalar/TotalEnergyProperty");
49
51
  Object.defineProperty(exports, "TotalEnergyProperty", { enumerable: true, get: function () { return __importDefault(TotalEnergyProperty_1).default; } });
50
52
  var HOMOEnergyProperty_1 = require("./properties/scalar/HOMOEnergyProperty");
@@ -0,0 +1,15 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { InterfacialEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ import { InterfacialEnergyPropertySchemaMixin } from "../../generated/InterfacialEnergyPropertySchemaMixin";
4
+ import Property from "../../Property";
5
+ import { PropertyName, PropertyType } from "../../settings";
6
+ type Schema = InterfacialEnergyPropertySchema;
7
+ type Base = typeof Property<Schema> & Constructor<InterfacialEnergyPropertySchemaMixin>;
8
+ declare const InterfacialEnergyProperty_base: Base;
9
+ export default class InterfacialEnergyProperty extends InterfacialEnergyProperty_base implements Schema {
10
+ static readonly isRefined = true;
11
+ static readonly propertyName = PropertyName.interfacial_energy;
12
+ static readonly propertyType = PropertyType.scalar;
13
+ constructor(config: Omit<Schema, "name">);
14
+ }
15
+ export {};
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const InterfacialEnergyPropertySchemaMixin_1 = require("../../generated/InterfacialEnergyPropertySchemaMixin");
7
+ const Property_1 = __importDefault(require("../../Property"));
8
+ const settings_1 = require("../../settings");
9
+ class InterfacialEnergyProperty extends Property_1.default {
10
+ constructor(config) {
11
+ super({ ...config, name: InterfacialEnergyProperty.propertyName });
12
+ }
13
+ }
14
+ InterfacialEnergyProperty.isRefined = true;
15
+ InterfacialEnergyProperty.propertyName = settings_1.PropertyName.interfacial_energy;
16
+ InterfacialEnergyProperty.propertyType = settings_1.PropertyType.scalar;
17
+ exports.default = InterfacialEnergyProperty;
18
+ (0, InterfacialEnergyPropertySchemaMixin_1.interfacialEnergyPropertySchemaMixin)(InterfacialEnergyProperty.prototype);
@@ -16,6 +16,7 @@ export declare enum PropertyName {
16
16
  homo_energy = "homo_energy",
17
17
  lumo_energy = "lumo_energy",
18
18
  surface_energy = "surface_energy",
19
+ interfacial_energy = "interfacial_energy",
19
20
  formation_energy = "formation_energy",
20
21
  convergence_electronic = "convergence_electronic",
21
22
  convergence_ionic = "convergence_ionic",
@@ -24,6 +24,7 @@ var PropertyName;
24
24
  PropertyName["homo_energy"] = "homo_energy";
25
25
  PropertyName["lumo_energy"] = "lumo_energy";
26
26
  PropertyName["surface_energy"] = "surface_energy";
27
+ PropertyName["interfacial_energy"] = "interfacial_energy";
27
28
  PropertyName["formation_energy"] = "formation_energy";
28
29
  PropertyName["convergence_electronic"] = "convergence_electronic";
29
30
  PropertyName["convergence_ionic"] = "convergence_ionic";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mat3ra/prode",
3
- "version": "2026.6.12-0",
3
+ "version": "2026.7.14-0",
4
4
  "description": "PROperty DEfinitions",
5
5
  "scripts": {
6
6
  "test": "nyc --reporter=text mocha --recursive --bail",
@@ -52,7 +52,7 @@
52
52
  "@babel/eslint-parser": "^7.16.3",
53
53
  "@exabyte-io/eslint-config": "2025.5.13-0",
54
54
  "@mat3ra/code": "2026.5.27-0",
55
- "@mat3ra/esse": "2026.6.12-0",
55
+ "@mat3ra/esse": "2026.7.14-0",
56
56
  "@mat3ra/made": "2026.5.28-0",
57
57
  "@mat3ra/tsconfig": "2024.6.3-0",
58
58
  "@types/lodash": "^4.17.20",
@@ -33,6 +33,7 @@ import TotalEnergyContributionsProperty from "./properties/object/TotalEnergyCon
33
33
  import FermiEnergyProperty from "./properties/scalar/FermiEnergyProperty";
34
34
  import FormationEnergyProperty from "./properties/scalar/FormationEnergyProperty";
35
35
  import HOMOEnergyProperty from "./properties/scalar/HOMOEnergyProperty";
36
+ import InterfacialEnergyProperty from "./properties/scalar/InterfacialEnergyProperty";
36
37
  import IonizationPotentialElementalProperty from "./properties/scalar/IonizationPotentialElementalProperty";
37
38
  import LUMOEnergyProperty from "./properties/scalar/LUMOEnergyProperty";
38
39
  import PressureProperty from "./properties/scalar/PressureProperty";
@@ -65,6 +66,7 @@ type PropertyClassMap = {
65
66
  | Constructor<LUMOEnergyProperty>
66
67
  | Constructor<FormationEnergyProperty>
67
68
  | Constructor<SurfaceEnergyProperty>
69
+ | Constructor<InterfacialEnergyProperty>
68
70
  | Constructor<ConvergenceElectronicProperty>
69
71
  | Constructor<ConvergenceIonicProperty>
70
72
  | Constructor<FermiEnergyProperty>
@@ -118,6 +120,7 @@ const PROPERTY_CLASS_MAP: PropertyClassMap = {
118
120
  [LUMOEnergyProperty.propertyName]: LUMOEnergyProperty,
119
121
  [FormationEnergyProperty.propertyName]: FormationEnergyProperty,
120
122
  [SurfaceEnergyProperty.propertyName]: SurfaceEnergyProperty,
123
+ [InterfacialEnergyProperty.propertyName]: InterfacialEnergyProperty,
121
124
  [ConvergenceElectronicProperty.propertyName]: ConvergenceElectronicProperty,
122
125
  [ConvergenceIonicProperty.propertyName]: ConvergenceIonicProperty,
123
126
  [FermiEnergyProperty.propertyName]: FermiEnergyProperty,
@@ -0,0 +1,38 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { InterfacialEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ export type InterfacialEnergyPropertySchemaMixin = Omit<
5
+ InterfacialEnergyPropertySchema,
6
+ "_id" | "slug" | "systemName" | "schemaVersion"
7
+ >;
8
+
9
+ export type InterfacialEnergyPropertyInMemoryEntity = InMemoryEntity &
10
+ InterfacialEnergyPropertySchemaMixin;
11
+
12
+ export function interfacialEnergyPropertySchemaMixin<T extends InMemoryEntity>(
13
+ item: InMemoryEntity,
14
+ ): asserts item is T & InterfacialEnergyPropertySchemaMixin {
15
+ // @ts-expect-error
16
+ const properties: InMemoryEntity & InterfacialEnergyPropertySchemaMixin = {
17
+ get name() {
18
+ return this.requiredProp<InterfacialEnergyPropertySchema["name"]>("name");
19
+ },
20
+ set name(value: InterfacialEnergyPropertySchema["name"]) {
21
+ this.setProp("name", value);
22
+ },
23
+ get units() {
24
+ return this.requiredProp<InterfacialEnergyPropertySchema["units"]>("units");
25
+ },
26
+ set units(value: InterfacialEnergyPropertySchema["units"]) {
27
+ this.setProp("units", value);
28
+ },
29
+ get value() {
30
+ return this.requiredProp<InterfacialEnergyPropertySchema["value"]>("value");
31
+ },
32
+ set value(value: InterfacialEnergyPropertySchema["value"]) {
33
+ this.setProp("value", value);
34
+ },
35
+ };
36
+
37
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
38
+ }
@@ -25,6 +25,12 @@ export function workflowPropertySchemaMixin<T extends InMemoryEntity>(
25
25
  set workflows(value: WorkflowPropertySchema["workflows"]) {
26
26
  this.setProp("workflows", value);
27
27
  },
28
+ get compute() {
29
+ return this.prop<WorkflowPropertySchema["compute"]>("compute");
30
+ },
31
+ set compute(value: WorkflowPropertySchema["compute"]) {
32
+ this.setProp("compute", value);
33
+ },
28
34
  get metadata() {
29
35
  return this.prop<WorkflowPropertySchema["metadata"]>("metadata");
30
36
  },
@@ -73,6 +79,18 @@ export function workflowPropertySchemaMixin<T extends InMemoryEntity>(
73
79
  set tags(value: WorkflowPropertySchema["tags"]) {
74
80
  this.setProp("tags", value);
75
81
  },
82
+ get description() {
83
+ return this.prop<WorkflowPropertySchema["description"]>("description");
84
+ },
85
+ set description(value: WorkflowPropertySchema["description"]) {
86
+ this.setProp("description", value);
87
+ },
88
+ get descriptionObject() {
89
+ return this.prop<WorkflowPropertySchema["descriptionObject"]>("descriptionObject");
90
+ },
91
+ set descriptionObject(value: WorkflowPropertySchema["descriptionObject"]) {
92
+ this.setProp("descriptionObject", value);
93
+ },
76
94
  };
77
95
 
78
96
  Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
package/src/js/index.ts CHANGED
@@ -11,6 +11,7 @@ export { default as PressureProperty } from "./properties/scalar/PressurePropert
11
11
  export { default as ReactionEnergyBarrierProperty } from "./properties/scalar/ReactionEnergyBarrierProperty";
12
12
  export { default as FormationEnergyProperty } from "./properties/scalar/FormationEnergyProperty";
13
13
  export { default as SurfaceEnergyProperty } from "./properties/scalar/SurfaceEnergyProperty";
14
+ export { default as InterfacialEnergyProperty } from "./properties/scalar/InterfacialEnergyProperty";
14
15
  export { default as TotalEnergyProperty } from "./properties/scalar/TotalEnergyProperty";
15
16
  export { default as HOMOEnergyProperty } from "./properties/scalar/HOMOEnergyProperty";
16
17
  export { default as LUMOEnergyProperty } from "./properties/scalar/LUMOEnergyProperty";
@@ -0,0 +1,27 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { InterfacialEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ import {
5
+ InterfacialEnergyPropertySchemaMixin,
6
+ interfacialEnergyPropertySchemaMixin,
7
+ } from "../../generated/InterfacialEnergyPropertySchemaMixin";
8
+ import Property from "../../Property";
9
+ import { PropertyName, PropertyType } from "../../settings";
10
+
11
+ type Schema = InterfacialEnergyPropertySchema;
12
+
13
+ type Base = typeof Property<Schema> & Constructor<InterfacialEnergyPropertySchemaMixin>;
14
+
15
+ export default class InterfacialEnergyProperty extends (Property as Base) implements Schema {
16
+ static readonly isRefined = true;
17
+
18
+ static readonly propertyName = PropertyName.interfacial_energy;
19
+
20
+ static readonly propertyType = PropertyType.scalar;
21
+
22
+ constructor(config: Omit<Schema, "name">) {
23
+ super({ ...config, name: InterfacialEnergyProperty.propertyName });
24
+ }
25
+ }
26
+
27
+ interfacialEnergyPropertySchemaMixin(InterfacialEnergyProperty.prototype);
@@ -20,6 +20,7 @@ export enum PropertyName {
20
20
  homo_energy = "homo_energy",
21
21
  lumo_energy = "lumo_energy",
22
22
  surface_energy = "surface_energy",
23
+ interfacial_energy = "interfacial_energy",
23
24
  formation_energy = "formation_energy",
24
25
  convergence_electronic = "convergence_electronic",
25
26
  convergence_ionic = "convergence_ionic",