@mat3ra/prode 2026.3.14-0 → 2026.3.30-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.
Files changed (37) hide show
  1. package/dist/js/PropertyFactory.d.ts +5 -1
  2. package/dist/js/PropertyFactory.js +8 -0
  3. package/dist/js/generated/HOMOEnergyPropertySchemaMixin.d.ts +5 -0
  4. package/dist/js/generated/HOMOEnergyPropertySchemaMixin.js +18 -0
  5. package/dist/js/generated/LUMOEnergyPropertySchemaMixin.d.ts +5 -0
  6. package/dist/js/generated/LUMOEnergyPropertySchemaMixin.js +18 -0
  7. package/dist/js/generated/ThermalCorrectionToEnergyPropertySchemaMixin.d.ts +5 -0
  8. package/dist/js/generated/ThermalCorrectionToEnergyPropertySchemaMixin.js +18 -0
  9. package/dist/js/generated/ThermalCorrectionToEnthalpyPropertySchemaMixin.d.ts +5 -0
  10. package/dist/js/generated/ThermalCorrectionToEnthalpyPropertySchemaMixin.js +18 -0
  11. package/dist/js/generated/WorkflowPropertySchemaMixin.js +9 -0
  12. package/dist/js/index.d.ts +4 -0
  13. package/dist/js/index.js +9 -1
  14. package/dist/js/properties/non-scalar/BandGapsProperty.d.ts +2 -2
  15. package/dist/js/properties/scalar/HOMOEnergyProperty.d.ts +15 -0
  16. package/dist/js/properties/scalar/HOMOEnergyProperty.js +18 -0
  17. package/dist/js/properties/scalar/LUMOEnergyProperty.d.ts +15 -0
  18. package/dist/js/properties/scalar/LUMOEnergyProperty.js +18 -0
  19. package/dist/js/properties/scalar/ThermalCorrectionToEnergyProperty.d.ts +15 -0
  20. package/dist/js/properties/scalar/ThermalCorrectionToEnergyProperty.js +18 -0
  21. package/dist/js/properties/scalar/ThermalCorrectionToEnthalpyProperty.d.ts +15 -0
  22. package/dist/js/properties/scalar/ThermalCorrectionToEnthalpyProperty.js +18 -0
  23. package/dist/js/settings.d.ts +4 -0
  24. package/dist/js/settings.js +4 -0
  25. package/package.json +2 -2
  26. package/src/js/PropertyFactory.ts +12 -0
  27. package/src/js/generated/HOMOEnergyPropertySchemaMixin.ts +26 -0
  28. package/src/js/generated/LUMOEnergyPropertySchemaMixin.ts +26 -0
  29. package/src/js/generated/ThermalCorrectionToEnergyPropertySchemaMixin.ts +27 -0
  30. package/src/js/generated/ThermalCorrectionToEnthalpyPropertySchemaMixin.ts +27 -0
  31. package/src/js/generated/WorkflowPropertySchemaMixin.ts +9 -0
  32. package/src/js/index.ts +4 -0
  33. package/src/js/properties/scalar/HOMOEnergyProperty.ts +28 -0
  34. package/src/js/properties/scalar/LUMOEnergyProperty.ts +28 -0
  35. package/src/js/properties/scalar/ThermalCorrectionToEnergyProperty.ts +27 -0
  36. package/src/js/properties/scalar/ThermalCorrectionToEnthalpyProperty.ts +27 -0
  37. package/src/js/settings.ts +4 -0
@@ -23,10 +23,14 @@ import WavefunctionAmplitudeProperty from "./properties/non-scalar/WavefunctionA
23
23
  import WorkflowProperty from "./properties/non-scalar/WorkflowProperty";
24
24
  import TotalEnergyContributionsProperty from "./properties/object/TotalEnergyContributionsProperty";
25
25
  import FermiEnergyProperty from "./properties/scalar/FermiEnergyProperty";
26
+ import HOMOEnergyProperty from "./properties/scalar/HOMOEnergyProperty";
26
27
  import IonizationPotentialElementalProperty from "./properties/scalar/IonizationPotentialElementalProperty";
28
+ import LUMOEnergyProperty from "./properties/scalar/LUMOEnergyProperty";
27
29
  import PressureProperty from "./properties/scalar/PressureProperty";
28
30
  import ReactionEnergyBarrierProperty from "./properties/scalar/ReactionEnergyBarrierProperty";
29
31
  import SurfaceEnergyProperty from "./properties/scalar/SurfaceEnergyProperty";
32
+ import ThermalCorrectionToEnergyProperty from "./properties/scalar/ThermalCorrectionToEnergyProperty";
33
+ import ThermalCorrectionToEnthalpyProperty from "./properties/scalar/ThermalCorrectionToEnthalpyProperty";
30
34
  import TotalEnergyProperty from "./properties/scalar/TotalEnergyProperty";
31
35
  import TotalForcesProperty from "./properties/scalar/TotalForceProperty";
32
36
  import ValenceBandOffsetProperty from "./properties/scalar/ValenceBandOffsetProperty";
@@ -48,7 +52,7 @@ export default class PropertyFactory {
48
52
  static getScalarPropertyNames(): PropertyName[];
49
53
  static getNonScalarPropertyNames(): PropertyName[];
50
54
  private static filterPropertyNames;
51
- static createProperty(config: AnyProperty): AveragePotentialProfileProperty | BandGapsProperty | BandStructureProperty | ChargeDensityProfileProperty | ConvergenceElectronicProperty | ConvergenceIonicProperty | DensityOfStatesProperty | DielectricTensorProperty | FileContentProperty | FinalStructureProperty | HubbardUProperty | HubbardVNNProperty | HubbardVProperty | IsRelaxedProperty | JupyterNotebookEndpointProperty | PhononDispersionsProperty | PhononDOSProperty | PotentialProfileProperty | ReactionEnergyProfileProperty | WavefunctionAmplitudeProperty | WorkflowProperty | TotalEnergyContributionsProperty | FermiEnergyProperty | IonizationPotentialElementalProperty | PressureProperty | ReactionEnergyBarrierProperty | SurfaceEnergyProperty | TotalEnergyProperty | TotalForcesProperty | ValenceBandOffsetProperty | ZeroPointEnergyProperty | AtomicForcesProperty | MagneticMomentsProperty | StressTensorProperty;
55
+ static createProperty(config: AnyProperty): AveragePotentialProfileProperty | BandGapsProperty | BandStructureProperty | ChargeDensityProfileProperty | ConvergenceElectronicProperty | ConvergenceIonicProperty | DensityOfStatesProperty | DielectricTensorProperty | FileContentProperty | FinalStructureProperty | HubbardUProperty | HubbardVNNProperty | HubbardVProperty | IsRelaxedProperty | JupyterNotebookEndpointProperty | PhononDispersionsProperty | PhononDOSProperty | PotentialProfileProperty | ReactionEnergyProfileProperty | WavefunctionAmplitudeProperty | WorkflowProperty | TotalEnergyContributionsProperty | FermiEnergyProperty | HOMOEnergyProperty | IonizationPotentialElementalProperty | LUMOEnergyProperty | PressureProperty | ReactionEnergyBarrierProperty | SurfaceEnergyProperty | ThermalCorrectionToEnergyProperty | ThermalCorrectionToEnthalpyProperty | TotalEnergyProperty | TotalForcesProperty | ValenceBandOffsetProperty | ZeroPointEnergyProperty | AtomicForcesProperty | MagneticMomentsProperty | StressTensorProperty;
52
56
  static createMetaProperty(config: AnyMetaProperty): MetaProperty;
53
57
  static createProtoProperty(config: AnyProtoProperty): AtomicConstraintsProperty | BoundaryConditionsProperty;
54
58
  }
@@ -27,10 +27,14 @@ const WavefunctionAmplitudeProperty_1 = __importDefault(require("./properties/no
27
27
  const WorkflowProperty_1 = __importDefault(require("./properties/non-scalar/WorkflowProperty"));
28
28
  const TotalEnergyContributionsProperty_1 = __importDefault(require("./properties/object/TotalEnergyContributionsProperty"));
29
29
  const FermiEnergyProperty_1 = __importDefault(require("./properties/scalar/FermiEnergyProperty"));
30
+ const HOMOEnergyProperty_1 = __importDefault(require("./properties/scalar/HOMOEnergyProperty"));
30
31
  const IonizationPotentialElementalProperty_1 = __importDefault(require("./properties/scalar/IonizationPotentialElementalProperty"));
32
+ const LUMOEnergyProperty_1 = __importDefault(require("./properties/scalar/LUMOEnergyProperty"));
31
33
  const PressureProperty_1 = __importDefault(require("./properties/scalar/PressureProperty"));
32
34
  const ReactionEnergyBarrierProperty_1 = __importDefault(require("./properties/scalar/ReactionEnergyBarrierProperty"));
33
35
  const SurfaceEnergyProperty_1 = __importDefault(require("./properties/scalar/SurfaceEnergyProperty"));
36
+ const ThermalCorrectionToEnergyProperty_1 = __importDefault(require("./properties/scalar/ThermalCorrectionToEnergyProperty"));
37
+ const ThermalCorrectionToEnthalpyProperty_1 = __importDefault(require("./properties/scalar/ThermalCorrectionToEnthalpyProperty"));
34
38
  const TotalEnergyProperty_1 = __importDefault(require("./properties/scalar/TotalEnergyProperty"));
35
39
  const TotalForceProperty_1 = __importDefault(require("./properties/scalar/TotalForceProperty"));
36
40
  const ValenceBandOffsetProperty_1 = __importDefault(require("./properties/scalar/ValenceBandOffsetProperty"));
@@ -45,10 +49,14 @@ const PROPERTY_CLASS_MAP = {
45
49
  [PressureProperty_1.default.propertyName]: PressureProperty_1.default,
46
50
  [TotalForceProperty_1.default.propertyName]: TotalForceProperty_1.default,
47
51
  [TotalEnergyProperty_1.default.propertyName]: TotalEnergyProperty_1.default,
52
+ [HOMOEnergyProperty_1.default.propertyName]: HOMOEnergyProperty_1.default,
53
+ [LUMOEnergyProperty_1.default.propertyName]: LUMOEnergyProperty_1.default,
48
54
  [SurfaceEnergyProperty_1.default.propertyName]: SurfaceEnergyProperty_1.default,
49
55
  [ConvergenceElectronicProperty_1.default.propertyName]: ConvergenceElectronicProperty_1.default,
50
56
  [ConvergenceIonicProperty_1.default.propertyName]: ConvergenceIonicProperty_1.default,
51
57
  [FermiEnergyProperty_1.default.propertyName]: FermiEnergyProperty_1.default,
58
+ [ThermalCorrectionToEnergyProperty_1.default.propertyName]: ThermalCorrectionToEnergyProperty_1.default,
59
+ [ThermalCorrectionToEnthalpyProperty_1.default.propertyName]: ThermalCorrectionToEnthalpyProperty_1.default,
52
60
  [ZeroPointEnergyProperty_1.default.propertyName]: ZeroPointEnergyProperty_1.default,
53
61
  [TotalEnergyContributionsProperty_1.default.propertyName]: TotalEnergyContributionsProperty_1.default,
54
62
  [AtomicForcesProperty_1.default.propertyName]: AtomicForcesProperty_1.default,
@@ -0,0 +1,5 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { HOMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ export type HOMOEnergyPropertySchemaMixin = Omit<HOMOEnergyPropertySchema, "_id" | "slug" | "systemName" | "schemaVersion">;
4
+ export type HOMOEnergyPropertyInMemoryEntity = InMemoryEntity & HOMOEnergyPropertySchemaMixin;
5
+ export declare function hOMOEnergyPropertySchemaMixin(item: InMemoryEntity): void;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.hOMOEnergyPropertySchemaMixin = hOMOEnergyPropertySchemaMixin;
4
+ function hOMOEnergyPropertySchemaMixin(item) {
5
+ // @ts-expect-error
6
+ const properties = {
7
+ get name() {
8
+ return this.requiredProp("name");
9
+ },
10
+ get units() {
11
+ return this.requiredProp("units");
12
+ },
13
+ get value() {
14
+ return this.requiredProp("value");
15
+ },
16
+ };
17
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { LUMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ export type LUMOEnergyPropertySchemaMixin = Omit<LUMOEnergyPropertySchema, "_id" | "slug" | "systemName" | "schemaVersion">;
4
+ export type LUMOEnergyPropertyInMemoryEntity = InMemoryEntity & LUMOEnergyPropertySchemaMixin;
5
+ export declare function lUMOEnergyPropertySchemaMixin(item: InMemoryEntity): void;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.lUMOEnergyPropertySchemaMixin = lUMOEnergyPropertySchemaMixin;
4
+ function lUMOEnergyPropertySchemaMixin(item) {
5
+ // @ts-expect-error
6
+ const properties = {
7
+ get name() {
8
+ return this.requiredProp("name");
9
+ },
10
+ get units() {
11
+ return this.requiredProp("units");
12
+ },
13
+ get value() {
14
+ return this.requiredProp("value");
15
+ },
16
+ };
17
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { ThermalCorrectionToEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ export type ThermalCorrectionToEnergyPropertySchemaMixin = Omit<ThermalCorrectionToEnergyPropertySchema, "_id" | "slug" | "systemName" | "schemaVersion">;
4
+ export type ThermalCorrectionToEnergyPropertyInMemoryEntity = InMemoryEntity & ThermalCorrectionToEnergyPropertySchemaMixin;
5
+ export declare function thermalCorrectionToEnergyPropertySchemaMixin(item: InMemoryEntity): void;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.thermalCorrectionToEnergyPropertySchemaMixin = thermalCorrectionToEnergyPropertySchemaMixin;
4
+ function thermalCorrectionToEnergyPropertySchemaMixin(item) {
5
+ // @ts-expect-error
6
+ const properties = {
7
+ get name() {
8
+ return this.requiredProp("name");
9
+ },
10
+ get units() {
11
+ return this.requiredProp("units");
12
+ },
13
+ get value() {
14
+ return this.requiredProp("value");
15
+ },
16
+ };
17
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { ThermalCorrectionToEnthalpyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ export type ThermalCorrectionToEnthalpyPropertySchemaMixin = Omit<ThermalCorrectionToEnthalpyPropertySchema, "_id" | "slug" | "systemName" | "schemaVersion">;
4
+ export type ThermalCorrectionToEnthalpyPropertyInMemoryEntity = InMemoryEntity & ThermalCorrectionToEnthalpyPropertySchemaMixin;
5
+ export declare function thermalCorrectionToEnthalpyPropertySchemaMixin(item: InMemoryEntity): void;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.thermalCorrectionToEnthalpyPropertySchemaMixin = thermalCorrectionToEnthalpyPropertySchemaMixin;
4
+ function thermalCorrectionToEnthalpyPropertySchemaMixin(item) {
5
+ // @ts-expect-error
6
+ const properties = {
7
+ get name() {
8
+ return this.requiredProp("name");
9
+ },
10
+ get units() {
11
+ return this.requiredProp("units");
12
+ },
13
+ get value() {
14
+ return this.requiredProp("value");
15
+ },
16
+ };
17
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
18
+ }
@@ -19,9 +19,18 @@ function workflowPropertySchemaMixin(item) {
19
19
  get isUsingDataset() {
20
20
  return this.prop("isUsingDataset");
21
21
  },
22
+ get isMultiMaterial() {
23
+ return this.prop("isMultiMaterial");
24
+ },
22
25
  get workflows() {
23
26
  return this.prop("workflows");
24
27
  },
28
+ get application() {
29
+ return this.prop("application");
30
+ },
31
+ get tags() {
32
+ return this.prop("tags");
33
+ },
25
34
  get isDefault() {
26
35
  return this.prop("isDefault");
27
36
  },
@@ -10,6 +10,10 @@ export { default as PressureProperty } from "./properties/scalar/PressurePropert
10
10
  export { default as ReactionEnergyBarrierProperty } from "./properties/scalar/ReactionEnergyBarrierProperty";
11
11
  export { default as SurfaceEnergyProperty } from "./properties/scalar/SurfaceEnergyProperty";
12
12
  export { default as TotalEnergyProperty } from "./properties/scalar/TotalEnergyProperty";
13
+ export { default as HOMOEnergyProperty } from "./properties/scalar/HOMOEnergyProperty";
14
+ export { default as LUMOEnergyProperty } from "./properties/scalar/LUMOEnergyProperty";
15
+ export { default as ThermalCorrectionToEnergyProperty } from "./properties/scalar/ThermalCorrectionToEnergyProperty";
16
+ export { default as ThermalCorrectionToEnthalpyProperty } from "./properties/scalar/ThermalCorrectionToEnthalpyProperty";
13
17
  export { default as BandStructureProperty } from "./properties/non-scalar/BandStructureProperty";
14
18
  export { default as ChargeDensityProfileProperty } from "./properties/non-scalar/ChargeDensityProfileProperty";
15
19
  export { default as PotentialProfileProperty } from "./properties/non-scalar/PotentialProfileProperty";
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.metaPropertyHolderMixin = exports.propertyHolderMixin = exports.protoPropertyHolderMixin = exports.ReactionEnergyProfileProperty = exports.WavefunctionAmplitudeProperty = exports.PotentialProfileProperty = exports.ChargeDensityProfileProperty = exports.BandStructureProperty = exports.TotalEnergyProperty = exports.SurfaceEnergyProperty = exports.ReactionEnergyBarrierProperty = exports.PressureProperty = exports.IsRelaxedProperty = exports.BandGapsProperty = exports.FinalStructureProperty = exports.PseudopotentialMetaProperty = exports.MetaProperty = exports.Property = exports.PropertyType = exports.PropertyName = exports.PropertyFactory = void 0;
20
+ 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.ReactionEnergyBarrierProperty = exports.PressureProperty = exports.IsRelaxedProperty = exports.BandGapsProperty = exports.FinalStructureProperty = 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");
@@ -43,6 +43,14 @@ var SurfaceEnergyProperty_1 = require("./properties/scalar/SurfaceEnergyProperty
43
43
  Object.defineProperty(exports, "SurfaceEnergyProperty", { enumerable: true, get: function () { return __importDefault(SurfaceEnergyProperty_1).default; } });
44
44
  var TotalEnergyProperty_1 = require("./properties/scalar/TotalEnergyProperty");
45
45
  Object.defineProperty(exports, "TotalEnergyProperty", { enumerable: true, get: function () { return __importDefault(TotalEnergyProperty_1).default; } });
46
+ var HOMOEnergyProperty_1 = require("./properties/scalar/HOMOEnergyProperty");
47
+ Object.defineProperty(exports, "HOMOEnergyProperty", { enumerable: true, get: function () { return __importDefault(HOMOEnergyProperty_1).default; } });
48
+ var LUMOEnergyProperty_1 = require("./properties/scalar/LUMOEnergyProperty");
49
+ Object.defineProperty(exports, "LUMOEnergyProperty", { enumerable: true, get: function () { return __importDefault(LUMOEnergyProperty_1).default; } });
50
+ var ThermalCorrectionToEnergyProperty_1 = require("./properties/scalar/ThermalCorrectionToEnergyProperty");
51
+ Object.defineProperty(exports, "ThermalCorrectionToEnergyProperty", { enumerable: true, get: function () { return __importDefault(ThermalCorrectionToEnergyProperty_1).default; } });
52
+ var ThermalCorrectionToEnthalpyProperty_1 = require("./properties/scalar/ThermalCorrectionToEnthalpyProperty");
53
+ Object.defineProperty(exports, "ThermalCorrectionToEnthalpyProperty", { enumerable: true, get: function () { return __importDefault(ThermalCorrectionToEnthalpyProperty_1).default; } });
46
54
  var BandStructureProperty_1 = require("./properties/non-scalar/BandStructureProperty");
47
55
  Object.defineProperty(exports, "BandStructureProperty", { enumerable: true, get: function () { return __importDefault(BandStructureProperty_1).default; } });
48
56
  var ChargeDensityProfileProperty_1 = require("./properties/non-scalar/ChargeDensityProfileProperty");
@@ -20,7 +20,7 @@ export default class BandGapsProperty extends BandGapsProperty_base implements S
20
20
  eigenvalueValence?: number;
21
21
  spin?: number;
22
22
  type?: "direct" | "indirect" | undefined;
23
- units?: "kJ/mol" | "eV" | "J/mol" | "hartree" | "cm-1" | "Ry" | "eV/atom";
23
+ units?: "kcal/mol" | "kJ/mol" | "eV" | "J/mol" | "hartree" | "cm-1" | "Ry" | "eV/atom";
24
24
  value?: number | undefined;
25
25
  };
26
26
  slug: string;
@@ -33,7 +33,7 @@ export default class BandGapsProperty extends BandGapsProperty_base implements S
33
33
  eigenvalueValence?: number;
34
34
  spin?: number;
35
35
  type: "direct" | "indirect";
36
- units?: "kJ/mol" | "eV" | "J/mol" | "hartree" | "cm-1" | "Ry" | "eV/atom";
36
+ units?: "kcal/mol" | "kJ/mol" | "eV" | "J/mol" | "hartree" | "cm-1" | "Ry" | "eV/atom";
37
37
  value: number;
38
38
  }[];
39
39
  eigenvalues?: {
@@ -0,0 +1,15 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { HOMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ import { HOMOEnergyPropertySchemaMixin } from "../../generated/HOMOEnergyPropertySchemaMixin";
4
+ import Property from "../../Property";
5
+ import { PropertyName, PropertyType } from "../../settings";
6
+ type Schema = HOMOEnergyPropertySchema;
7
+ type Base = typeof Property<Schema> & Constructor<HOMOEnergyPropertySchemaMixin>;
8
+ declare const HOMOEnergyProperty_base: Base;
9
+ export default class HOMOEnergyProperty extends HOMOEnergyProperty_base implements Schema {
10
+ static readonly isRefined = true;
11
+ static readonly propertyName = PropertyName.homo_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 HOMOEnergyPropertySchemaMixin_1 = require("../../generated/HOMOEnergyPropertySchemaMixin");
7
+ const Property_1 = __importDefault(require("../../Property"));
8
+ const settings_1 = require("../../settings");
9
+ class HOMOEnergyProperty extends Property_1.default {
10
+ constructor(config) {
11
+ super({ ...config, name: HOMOEnergyProperty.propertyName });
12
+ }
13
+ }
14
+ HOMOEnergyProperty.isRefined = true;
15
+ HOMOEnergyProperty.propertyName = settings_1.PropertyName.homo_energy;
16
+ HOMOEnergyProperty.propertyType = settings_1.PropertyType.scalar;
17
+ exports.default = HOMOEnergyProperty;
18
+ (0, HOMOEnergyPropertySchemaMixin_1.hOMOEnergyPropertySchemaMixin)(HOMOEnergyProperty.prototype);
@@ -0,0 +1,15 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { LUMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ import { LUMOEnergyPropertySchemaMixin } from "../../generated/LUMOEnergyPropertySchemaMixin";
4
+ import Property from "../../Property";
5
+ import { PropertyName, PropertyType } from "../../settings";
6
+ type Schema = LUMOEnergyPropertySchema;
7
+ type Base = typeof Property<Schema> & Constructor<LUMOEnergyPropertySchemaMixin>;
8
+ declare const LUMOEnergyProperty_base: Base;
9
+ export default class LUMOEnergyProperty extends LUMOEnergyProperty_base implements Schema {
10
+ static readonly isRefined = true;
11
+ static readonly propertyName = PropertyName.lumo_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 LUMOEnergyPropertySchemaMixin_1 = require("../../generated/LUMOEnergyPropertySchemaMixin");
7
+ const Property_1 = __importDefault(require("../../Property"));
8
+ const settings_1 = require("../../settings");
9
+ class LUMOEnergyProperty extends Property_1.default {
10
+ constructor(config) {
11
+ super({ ...config, name: LUMOEnergyProperty.propertyName });
12
+ }
13
+ }
14
+ LUMOEnergyProperty.isRefined = true;
15
+ LUMOEnergyProperty.propertyName = settings_1.PropertyName.lumo_energy;
16
+ LUMOEnergyProperty.propertyType = settings_1.PropertyType.scalar;
17
+ exports.default = LUMOEnergyProperty;
18
+ (0, LUMOEnergyPropertySchemaMixin_1.lUMOEnergyPropertySchemaMixin)(LUMOEnergyProperty.prototype);
@@ -0,0 +1,15 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { ThermalCorrectionToEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ import { ThermalCorrectionToEnergyPropertySchemaMixin } from "../../generated/ThermalCorrectionToEnergyPropertySchemaMixin";
4
+ import Property from "../../Property";
5
+ import { PropertyName, PropertyType } from "../../settings";
6
+ type Schema = ThermalCorrectionToEnergyPropertySchema;
7
+ type Base = typeof Property<Schema> & Constructor<ThermalCorrectionToEnergyPropertySchemaMixin>;
8
+ declare const ThermalCorrectionToEnergyProperty_base: Base;
9
+ export default class ThermalCorrectionToEnergyProperty extends ThermalCorrectionToEnergyProperty_base implements Schema {
10
+ static readonly propertyType = PropertyType.scalar;
11
+ static readonly propertyName = PropertyName.thermal_correction_to_energy;
12
+ static readonly isRefined = true;
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 ThermalCorrectionToEnergyPropertySchemaMixin_1 = require("../../generated/ThermalCorrectionToEnergyPropertySchemaMixin");
7
+ const Property_1 = __importDefault(require("../../Property"));
8
+ const settings_1 = require("../../settings");
9
+ class ThermalCorrectionToEnergyProperty extends Property_1.default {
10
+ constructor(config) {
11
+ super({ ...config, name: ThermalCorrectionToEnergyProperty.propertyName });
12
+ }
13
+ }
14
+ ThermalCorrectionToEnergyProperty.propertyType = settings_1.PropertyType.scalar;
15
+ ThermalCorrectionToEnergyProperty.propertyName = settings_1.PropertyName.thermal_correction_to_energy;
16
+ ThermalCorrectionToEnergyProperty.isRefined = true;
17
+ exports.default = ThermalCorrectionToEnergyProperty;
18
+ (0, ThermalCorrectionToEnergyPropertySchemaMixin_1.thermalCorrectionToEnergyPropertySchemaMixin)(ThermalCorrectionToEnergyProperty.prototype);
@@ -0,0 +1,15 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { ThermalCorrectionToEnthalpyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+ import { ThermalCorrectionToEnthalpyPropertySchemaMixin } from "../../generated/ThermalCorrectionToEnthalpyPropertySchemaMixin";
4
+ import Property from "../../Property";
5
+ import { PropertyName, PropertyType } from "../../settings";
6
+ type Schema = ThermalCorrectionToEnthalpyPropertySchema;
7
+ type Base = typeof Property<Schema> & Constructor<ThermalCorrectionToEnthalpyPropertySchemaMixin>;
8
+ declare const ThermalCorrectionToEnthalpyProperty_base: Base;
9
+ export default class ThermalCorrectionToEnthalpyProperty extends ThermalCorrectionToEnthalpyProperty_base implements Schema {
10
+ static readonly propertyType = PropertyType.scalar;
11
+ static readonly propertyName = PropertyName.thermal_correction_to_enthalpy;
12
+ static readonly isRefined = true;
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 ThermalCorrectionToEnthalpyPropertySchemaMixin_1 = require("../../generated/ThermalCorrectionToEnthalpyPropertySchemaMixin");
7
+ const Property_1 = __importDefault(require("../../Property"));
8
+ const settings_1 = require("../../settings");
9
+ class ThermalCorrectionToEnthalpyProperty extends Property_1.default {
10
+ constructor(config) {
11
+ super({ ...config, name: ThermalCorrectionToEnthalpyProperty.propertyName });
12
+ }
13
+ }
14
+ ThermalCorrectionToEnthalpyProperty.propertyType = settings_1.PropertyType.scalar;
15
+ ThermalCorrectionToEnthalpyProperty.propertyName = settings_1.PropertyName.thermal_correction_to_enthalpy;
16
+ ThermalCorrectionToEnthalpyProperty.isRefined = true;
17
+ exports.default = ThermalCorrectionToEnthalpyProperty;
18
+ (0, ThermalCorrectionToEnthalpyPropertySchemaMixin_1.thermalCorrectionToEnthalpyPropertySchemaMixin)(ThermalCorrectionToEnthalpyProperty.prototype);
@@ -12,11 +12,15 @@ export declare enum PropertyName {
12
12
  pressure = "pressure",
13
13
  total_force = "total_force",
14
14
  total_energy = "total_energy",
15
+ homo_energy = "homo_energy",
16
+ lumo_energy = "lumo_energy",
15
17
  surface_energy = "surface_energy",
16
18
  convergence_electronic = "convergence_electronic",
17
19
  convergence_ionic = "convergence_ionic",
18
20
  fermi_energy = "fermi_energy",
19
21
  zero_point_energy = "zero_point_energy",
22
+ thermal_correction_to_energy = "thermal_correction_to_energy",
23
+ thermal_correction_to_enthalpy = "thermal_correction_to_enthalpy",
20
24
  total_energy_contributions = "total_energy_contributions",
21
25
  atomic_forces = "atomic_forces",
22
26
  atomic_constraints = "atomic_constraints",
@@ -20,11 +20,15 @@ var PropertyName;
20
20
  PropertyName["pressure"] = "pressure";
21
21
  PropertyName["total_force"] = "total_force";
22
22
  PropertyName["total_energy"] = "total_energy";
23
+ PropertyName["homo_energy"] = "homo_energy";
24
+ PropertyName["lumo_energy"] = "lumo_energy";
23
25
  PropertyName["surface_energy"] = "surface_energy";
24
26
  PropertyName["convergence_electronic"] = "convergence_electronic";
25
27
  PropertyName["convergence_ionic"] = "convergence_ionic";
26
28
  PropertyName["fermi_energy"] = "fermi_energy";
27
29
  PropertyName["zero_point_energy"] = "zero_point_energy";
30
+ PropertyName["thermal_correction_to_energy"] = "thermal_correction_to_energy";
31
+ PropertyName["thermal_correction_to_enthalpy"] = "thermal_correction_to_enthalpy";
28
32
  PropertyName["total_energy_contributions"] = "total_energy_contributions";
29
33
  PropertyName["atomic_forces"] = "atomic_forces";
30
34
  PropertyName["atomic_constraints"] = "atomic_constraints";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mat3ra/prode",
3
- "version": "2026.3.14-0",
3
+ "version": "2026.3.30-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": "2025.10.8-0",
55
- "@mat3ra/esse": "2026.1.23-0",
55
+ "@mat3ra/esse": "2026.3.29-0",
56
56
  "@mat3ra/made": "2025.10.7-0",
57
57
  "@mat3ra/tsconfig": "2024.6.3-0",
58
58
  "@typescript-eslint/eslint-plugin": "^5.9.1",
@@ -30,10 +30,14 @@ import WavefunctionAmplitudeProperty from "./properties/non-scalar/WavefunctionA
30
30
  import WorkflowProperty from "./properties/non-scalar/WorkflowProperty";
31
31
  import TotalEnergyContributionsProperty from "./properties/object/TotalEnergyContributionsProperty";
32
32
  import FermiEnergyProperty from "./properties/scalar/FermiEnergyProperty";
33
+ import HOMOEnergyProperty from "./properties/scalar/HOMOEnergyProperty";
33
34
  import IonizationPotentialElementalProperty from "./properties/scalar/IonizationPotentialElementalProperty";
35
+ import LUMOEnergyProperty from "./properties/scalar/LUMOEnergyProperty";
34
36
  import PressureProperty from "./properties/scalar/PressureProperty";
35
37
  import ReactionEnergyBarrierProperty from "./properties/scalar/ReactionEnergyBarrierProperty";
36
38
  import SurfaceEnergyProperty from "./properties/scalar/SurfaceEnergyProperty";
39
+ import ThermalCorrectionToEnergyProperty from "./properties/scalar/ThermalCorrectionToEnergyProperty";
40
+ import ThermalCorrectionToEnthalpyProperty from "./properties/scalar/ThermalCorrectionToEnthalpyProperty";
37
41
  import TotalEnergyProperty from "./properties/scalar/TotalEnergyProperty";
38
42
  import TotalForcesProperty from "./properties/scalar/TotalForceProperty";
39
43
  import ValenceBandOffsetProperty from "./properties/scalar/ValenceBandOffsetProperty";
@@ -55,10 +59,14 @@ type PropertyClassMap = {
55
59
  | Constructor<PressureProperty>
56
60
  | Constructor<TotalForcesProperty>
57
61
  | Constructor<TotalEnergyProperty>
62
+ | Constructor<HOMOEnergyProperty>
63
+ | Constructor<LUMOEnergyProperty>
58
64
  | Constructor<SurfaceEnergyProperty>
59
65
  | Constructor<ConvergenceElectronicProperty>
60
66
  | Constructor<ConvergenceIonicProperty>
61
67
  | Constructor<FermiEnergyProperty>
68
+ | Constructor<ThermalCorrectionToEnergyProperty>
69
+ | Constructor<ThermalCorrectionToEnthalpyProperty>
62
70
  | Constructor<ZeroPointEnergyProperty>
63
71
  | Constructor<TotalEnergyContributionsProperty>
64
72
  | Constructor<AtomicForcesProperty>
@@ -102,10 +110,14 @@ const PROPERTY_CLASS_MAP: PropertyClassMap = {
102
110
  [PressureProperty.propertyName]: PressureProperty,
103
111
  [TotalForcesProperty.propertyName]: TotalForcesProperty,
104
112
  [TotalEnergyProperty.propertyName]: TotalEnergyProperty,
113
+ [HOMOEnergyProperty.propertyName]: HOMOEnergyProperty,
114
+ [LUMOEnergyProperty.propertyName]: LUMOEnergyProperty,
105
115
  [SurfaceEnergyProperty.propertyName]: SurfaceEnergyProperty,
106
116
  [ConvergenceElectronicProperty.propertyName]: ConvergenceElectronicProperty,
107
117
  [ConvergenceIonicProperty.propertyName]: ConvergenceIonicProperty,
108
118
  [FermiEnergyProperty.propertyName]: FermiEnergyProperty,
119
+ [ThermalCorrectionToEnergyProperty.propertyName]: ThermalCorrectionToEnergyProperty,
120
+ [ThermalCorrectionToEnthalpyProperty.propertyName]: ThermalCorrectionToEnthalpyProperty,
109
121
  [ZeroPointEnergyProperty.propertyName]: ZeroPointEnergyProperty,
110
122
  [TotalEnergyContributionsProperty.propertyName]: TotalEnergyContributionsProperty,
111
123
  [AtomicForcesProperty.propertyName]: AtomicForcesProperty,
@@ -0,0 +1,26 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { HOMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ export type HOMOEnergyPropertySchemaMixin = Omit<
5
+ HOMOEnergyPropertySchema,
6
+ "_id" | "slug" | "systemName" | "schemaVersion"
7
+ >;
8
+
9
+ export type HOMOEnergyPropertyInMemoryEntity = InMemoryEntity & HOMOEnergyPropertySchemaMixin;
10
+
11
+ export function hOMOEnergyPropertySchemaMixin(item: InMemoryEntity) {
12
+ // @ts-expect-error
13
+ const properties: InMemoryEntity & HOMOEnergyPropertySchemaMixin = {
14
+ get name() {
15
+ return this.requiredProp<HOMOEnergyPropertySchema["name"]>("name");
16
+ },
17
+ get units() {
18
+ return this.requiredProp<HOMOEnergyPropertySchema["units"]>("units");
19
+ },
20
+ get value() {
21
+ return this.requiredProp<HOMOEnergyPropertySchema["value"]>("value");
22
+ },
23
+ };
24
+
25
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
26
+ }
@@ -0,0 +1,26 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { LUMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ export type LUMOEnergyPropertySchemaMixin = Omit<
5
+ LUMOEnergyPropertySchema,
6
+ "_id" | "slug" | "systemName" | "schemaVersion"
7
+ >;
8
+
9
+ export type LUMOEnergyPropertyInMemoryEntity = InMemoryEntity & LUMOEnergyPropertySchemaMixin;
10
+
11
+ export function lUMOEnergyPropertySchemaMixin(item: InMemoryEntity) {
12
+ // @ts-expect-error
13
+ const properties: InMemoryEntity & LUMOEnergyPropertySchemaMixin = {
14
+ get name() {
15
+ return this.requiredProp<LUMOEnergyPropertySchema["name"]>("name");
16
+ },
17
+ get units() {
18
+ return this.requiredProp<LUMOEnergyPropertySchema["units"]>("units");
19
+ },
20
+ get value() {
21
+ return this.requiredProp<LUMOEnergyPropertySchema["value"]>("value");
22
+ },
23
+ };
24
+
25
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
26
+ }
@@ -0,0 +1,27 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { ThermalCorrectionToEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ export type ThermalCorrectionToEnergyPropertySchemaMixin = Omit<
5
+ ThermalCorrectionToEnergyPropertySchema,
6
+ "_id" | "slug" | "systemName" | "schemaVersion"
7
+ >;
8
+
9
+ export type ThermalCorrectionToEnergyPropertyInMemoryEntity = InMemoryEntity &
10
+ ThermalCorrectionToEnergyPropertySchemaMixin;
11
+
12
+ export function thermalCorrectionToEnergyPropertySchemaMixin(item: InMemoryEntity) {
13
+ // @ts-expect-error
14
+ const properties: InMemoryEntity & ThermalCorrectionToEnergyPropertySchemaMixin = {
15
+ get name() {
16
+ return this.requiredProp<ThermalCorrectionToEnergyPropertySchema["name"]>("name");
17
+ },
18
+ get units() {
19
+ return this.requiredProp<ThermalCorrectionToEnergyPropertySchema["units"]>("units");
20
+ },
21
+ get value() {
22
+ return this.requiredProp<ThermalCorrectionToEnergyPropertySchema["value"]>("value");
23
+ },
24
+ };
25
+
26
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
27
+ }
@@ -0,0 +1,27 @@
1
+ import type { InMemoryEntity } from "@mat3ra/code/dist/js/entity";
2
+ import type { ThermalCorrectionToEnthalpyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ export type ThermalCorrectionToEnthalpyPropertySchemaMixin = Omit<
5
+ ThermalCorrectionToEnthalpyPropertySchema,
6
+ "_id" | "slug" | "systemName" | "schemaVersion"
7
+ >;
8
+
9
+ export type ThermalCorrectionToEnthalpyPropertyInMemoryEntity = InMemoryEntity &
10
+ ThermalCorrectionToEnthalpyPropertySchemaMixin;
11
+
12
+ export function thermalCorrectionToEnthalpyPropertySchemaMixin(item: InMemoryEntity) {
13
+ // @ts-expect-error
14
+ const properties: InMemoryEntity & ThermalCorrectionToEnthalpyPropertySchemaMixin = {
15
+ get name() {
16
+ return this.requiredProp<ThermalCorrectionToEnthalpyPropertySchema["name"]>("name");
17
+ },
18
+ get units() {
19
+ return this.requiredProp<ThermalCorrectionToEnthalpyPropertySchema["units"]>("units");
20
+ },
21
+ get value() {
22
+ return this.requiredProp<ThermalCorrectionToEnthalpyPropertySchema["value"]>("value");
23
+ },
24
+ };
25
+
26
+ Object.defineProperties(item, Object.getOwnPropertyDescriptors(properties));
27
+ }
@@ -26,9 +26,18 @@ export function workflowPropertySchemaMixin(item: InMemoryEntity) {
26
26
  get isUsingDataset() {
27
27
  return this.prop<WorkflowPropertySchema["isUsingDataset"]>("isUsingDataset");
28
28
  },
29
+ get isMultiMaterial() {
30
+ return this.prop<WorkflowPropertySchema["isMultiMaterial"]>("isMultiMaterial");
31
+ },
29
32
  get workflows() {
30
33
  return this.prop<WorkflowPropertySchema["workflows"]>("workflows");
31
34
  },
35
+ get application() {
36
+ return this.prop<WorkflowPropertySchema["application"]>("application");
37
+ },
38
+ get tags() {
39
+ return this.prop<WorkflowPropertySchema["tags"]>("tags");
40
+ },
32
41
  get isDefault() {
33
42
  return this.prop<WorkflowPropertySchema["isDefault"]>("isDefault");
34
43
  },
package/src/js/index.ts CHANGED
@@ -10,6 +10,10 @@ export { default as PressureProperty } from "./properties/scalar/PressurePropert
10
10
  export { default as ReactionEnergyBarrierProperty } from "./properties/scalar/ReactionEnergyBarrierProperty";
11
11
  export { default as SurfaceEnergyProperty } from "./properties/scalar/SurfaceEnergyProperty";
12
12
  export { default as TotalEnergyProperty } from "./properties/scalar/TotalEnergyProperty";
13
+ export { default as HOMOEnergyProperty } from "./properties/scalar/HOMOEnergyProperty";
14
+ export { default as LUMOEnergyProperty } from "./properties/scalar/LUMOEnergyProperty";
15
+ export { default as ThermalCorrectionToEnergyProperty } from "./properties/scalar/ThermalCorrectionToEnergyProperty";
16
+ export { default as ThermalCorrectionToEnthalpyProperty } from "./properties/scalar/ThermalCorrectionToEnthalpyProperty";
13
17
  export { default as BandStructureProperty } from "./properties/non-scalar/BandStructureProperty";
14
18
  export { default as ChargeDensityProfileProperty } from "./properties/non-scalar/ChargeDensityProfileProperty";
15
19
  export { default as PotentialProfileProperty } from "./properties/non-scalar/PotentialProfileProperty";
@@ -0,0 +1,28 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { HOMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ import {
5
+ HOMOEnergyPropertySchemaMixin,
6
+ // The generated helper lowercases only the first character of leading acronyms.
7
+ hOMOEnergyPropertySchemaMixin as homoEnergyPropertySchemaMixin,
8
+ } from "../../generated/HOMOEnergyPropertySchemaMixin";
9
+ import Property from "../../Property";
10
+ import { PropertyName, PropertyType } from "../../settings";
11
+
12
+ type Schema = HOMOEnergyPropertySchema;
13
+
14
+ type Base = typeof Property<Schema> & Constructor<HOMOEnergyPropertySchemaMixin>;
15
+
16
+ export default class HOMOEnergyProperty extends (Property as Base) implements Schema {
17
+ static readonly isRefined = true;
18
+
19
+ static readonly propertyName = PropertyName.homo_energy;
20
+
21
+ static readonly propertyType = PropertyType.scalar;
22
+
23
+ constructor(config: Omit<Schema, "name">) {
24
+ super({ ...config, name: HOMOEnergyProperty.propertyName });
25
+ }
26
+ }
27
+
28
+ homoEnergyPropertySchemaMixin(HOMOEnergyProperty.prototype);
@@ -0,0 +1,28 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { LUMOEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ import {
5
+ LUMOEnergyPropertySchemaMixin,
6
+ // The generated helper lowercases only the first character of leading acronyms.
7
+ lUMOEnergyPropertySchemaMixin as lumoEnergyPropertySchemaMixin,
8
+ } from "../../generated/LUMOEnergyPropertySchemaMixin";
9
+ import Property from "../../Property";
10
+ import { PropertyName, PropertyType } from "../../settings";
11
+
12
+ type Schema = LUMOEnergyPropertySchema;
13
+
14
+ type Base = typeof Property<Schema> & Constructor<LUMOEnergyPropertySchemaMixin>;
15
+
16
+ export default class LUMOEnergyProperty extends (Property as Base) implements Schema {
17
+ static readonly isRefined = true;
18
+
19
+ static readonly propertyName = PropertyName.lumo_energy;
20
+
21
+ static readonly propertyType = PropertyType.scalar;
22
+
23
+ constructor(config: Omit<Schema, "name">) {
24
+ super({ ...config, name: LUMOEnergyProperty.propertyName });
25
+ }
26
+ }
27
+
28
+ lumoEnergyPropertySchemaMixin(LUMOEnergyProperty.prototype);
@@ -0,0 +1,27 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { ThermalCorrectionToEnergyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ import {
5
+ ThermalCorrectionToEnergyPropertySchemaMixin,
6
+ thermalCorrectionToEnergyPropertySchemaMixin,
7
+ } from "../../generated/ThermalCorrectionToEnergyPropertySchemaMixin";
8
+ import Property from "../../Property";
9
+ import { PropertyName, PropertyType } from "../../settings";
10
+
11
+ type Schema = ThermalCorrectionToEnergyPropertySchema;
12
+
13
+ type Base = typeof Property<Schema> & Constructor<ThermalCorrectionToEnergyPropertySchemaMixin>;
14
+
15
+ export default class ThermalCorrectionToEnergyProperty extends (Property as Base) implements Schema {
16
+ static readonly propertyType = PropertyType.scalar;
17
+
18
+ static readonly propertyName = PropertyName.thermal_correction_to_energy;
19
+
20
+ static readonly isRefined = true;
21
+
22
+ constructor(config: Omit<Schema, "name">) {
23
+ super({ ...config, name: ThermalCorrectionToEnergyProperty.propertyName });
24
+ }
25
+ }
26
+
27
+ thermalCorrectionToEnergyPropertySchemaMixin(ThermalCorrectionToEnergyProperty.prototype);
@@ -0,0 +1,27 @@
1
+ import type { Constructor } from "@mat3ra/code/dist/js/utils/types";
2
+ import type { ThermalCorrectionToEnthalpyPropertySchema } from "@mat3ra/esse/dist/js/types";
3
+
4
+ import {
5
+ ThermalCorrectionToEnthalpyPropertySchemaMixin,
6
+ thermalCorrectionToEnthalpyPropertySchemaMixin,
7
+ } from "../../generated/ThermalCorrectionToEnthalpyPropertySchemaMixin";
8
+ import Property from "../../Property";
9
+ import { PropertyName, PropertyType } from "../../settings";
10
+
11
+ type Schema = ThermalCorrectionToEnthalpyPropertySchema;
12
+
13
+ type Base = typeof Property<Schema> & Constructor<ThermalCorrectionToEnthalpyPropertySchemaMixin>;
14
+
15
+ export default class ThermalCorrectionToEnthalpyProperty extends (Property as Base) implements Schema {
16
+ static readonly propertyType = PropertyType.scalar;
17
+
18
+ static readonly propertyName = PropertyName.thermal_correction_to_enthalpy;
19
+
20
+ static readonly isRefined = true;
21
+
22
+ constructor(config: Omit<Schema, "name">) {
23
+ super({ ...config, name: ThermalCorrectionToEnthalpyProperty.propertyName });
24
+ }
25
+ }
26
+
27
+ thermalCorrectionToEnthalpyPropertySchemaMixin(ThermalCorrectionToEnthalpyProperty.prototype);
@@ -16,11 +16,15 @@ export enum PropertyName {
16
16
  pressure = "pressure",
17
17
  total_force = "total_force",
18
18
  total_energy = "total_energy",
19
+ homo_energy = "homo_energy",
20
+ lumo_energy = "lumo_energy",
19
21
  surface_energy = "surface_energy",
20
22
  convergence_electronic = "convergence_electronic",
21
23
  convergence_ionic = "convergence_ionic",
22
24
  fermi_energy = "fermi_energy",
23
25
  zero_point_energy = "zero_point_energy",
26
+ thermal_correction_to_energy = "thermal_correction_to_energy",
27
+ thermal_correction_to_enthalpy = "thermal_correction_to_enthalpy",
24
28
  total_energy_contributions = "total_energy_contributions",
25
29
  atomic_forces = "atomic_forces",
26
30
  atomic_constraints = "atomic_constraints",