Validation Entities

For the validation set four related entities are required.

Product

This is the main product. In the database up to NMDv2 this corresponds to the “OuderProduct” or the “TotaalProduct”. In the NMDv3 onwards, this corresponds to the EnvironmentalDeclaration/ConstructionProduct.

EnvironmentalProfile

For te NMDv2 this corresponds to the ProfielSet.

Scaling

For NMDv2 the scaling values where included in the ProfielSet.

Dimension

For the NMDv2 the Dimensions where included in the ProfielSet.

digraph validation_set { fontname = "Helvetica" fontsize = 18 splines = true rankdir = "TB" newrank = true ranksep = 1 colorscheme = "reds" size = 400 node [ colorscheme = "rdpu9" fontname = "Helvetica" fontsize = 8 shape = "box" labelloc = "c" width = 2.5 color = 9 fillcolor = 3 style = "filled,solid"; ] edge [ fontname = "Helvetica" fontsize = 8 arrowhead = normal arrowtail = none headport = "_" tailport = "_" arrowhead = none; labeldistance = 1.5; labelangle = -45; ] label = <<B>Validation Set entity relations</B>> labelloc = "t" Product -> EnvironmentalProfile [ taillabel = 1; headlabel = "1..n"; ] EnvironmentalProfile -> Scaling [ taillabel = 1; headlabel = "0..1"; ] Scaling -> Dimension [ taillabel = 1; headlabel = "1..n" ] }

Schematic overview validation set

The fields of these entities are described in the following sections:

Example

After walking through the section above, the final result for a product should be similar to the following:

{
  "registration_number": "nmd_12345",
  "title": "Testproduct",
  "categorie": "category-1",
  "unit": "kWh",
  "environmental_profiles": [
    {
      "title": "Testprofielset",
      "amount": 2.5,
      "scaling": {
        "formula": "v3_linear",
        "parameters": [1.1, 0, 0.1],
        "dimensions": [
          {
            "minimum": 0.5,
            "maximum": 2.0,
            "inspected_value": 1.0,
          }
        ],
        "scaled_mki_set": [
          {
            "input_values": [0.5],
            "mki": 0.5,
            "mki_net": 0.4,
          },
          {
            "input_values": [0.75],
            "mki": 0.75,
            "mki_net": 0.6
          },
          {
            "input_values": [1.0],
            "mki": 1.0,
            "mki_net": 0.85
          },
          {
            "input_values": [1.5],
            "mki": 1.5,
            "mki_net": 1.4
          },
          {
            "input_values": [2.0],
            "mki": 2.0,
            "mki_net": 1.8
          }
        ]
      },
      "mki": 1.23,
      "mki_net": 1.12
    }
  ],
  "mki": 1.23,
  "mki_net": 1.12
}