@oimlsmart/primmel-packages 0.15.0 → 0.17.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.
@@ -30,3 +30,39 @@ allowlist_entry {
30
30
  reason "Routing markers, not process ids: compile_test_report_pass / compile_test_report_fail name the verdict branches of test-report compilation."
31
31
  audit_ref "TODO.roadmap/40"
32
32
  }
33
+ allowlist_entry {
34
+ rule C134
35
+ match "evaluation_dimensions evaluation: field measurementPrinciple: the field name \"measurementPrinciple\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
36
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the enum facet carries the dimension resolution (measurement_principle)."
37
+ audit_ref "TODO.roadmap/40"
38
+ }
39
+ allowlist_entry {
40
+ rule C134
41
+ match "evaluation_dimensions evaluation: field instrumentCategory: the field name \"instrumentCategory\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
42
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the enum facet carries the dimension resolution (instrument_category)."
43
+ audit_ref "TODO.roadmap/40"
44
+ }
45
+ allowlist_entry {
46
+ rule C134
47
+ match "evaluation_dimensions evaluation: field powerSupply: the field name \"powerSupply\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
48
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the enum facet carries the dimension resolution (power_supply)."
49
+ audit_ref "TODO.roadmap/40"
50
+ }
51
+ allowlist_entry {
52
+ rule C134
53
+ match "evaluation_dimensions evaluation: field objectCapability: the field name \"objectCapability\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
54
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the enum facet carries the dimension resolution (object_capability)."
55
+ audit_ref "TODO.roadmap/40"
56
+ }
57
+ allowlist_entry {
58
+ rule C134
59
+ match "evaluation_dimensions evaluation: field scaleInterval: the field name \"scaleInterval\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
60
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the typed string field carries the declared scale interval d (no dimension to reference)."
61
+ audit_ref "TODO.roadmap/40"
62
+ }
63
+ allowlist_entry {
64
+ rule C134
65
+ match "evaluation_dimensions evaluation: field temperatureRange: the field name \"temperatureRange\" resolves to neither an is_dimension attribute_definition nor a classification dimension — the legacy camelCase convention (evaluation-dimension-references)"
66
+ reason "Legacy camelCase field id (pre-snake_case app config), kept stable for the classification form's stored answers; the typed string field carries the declared temperature range (no dimension to reference)."
67
+ audit_ref "TODO.roadmap/40"
68
+ }
@@ -0,0 +1,23 @@
1
+ # OIML R 129 — Calculation Context
2
+ # Variable bindings for the calculation engine. Each field names a
3
+ # computation input and where it is sourced from.
4
+ #
5
+ # Consumed by computation-context.service.ts to build the evaluation
6
+ # context for form calculations.
7
+ #
8
+ # Dimensions resolve from classification.<dimension_id>, parameters from
9
+ # parameters.<attribute_id> (delegation Sample -> Model -> Family,
10
+ # INV-10). indication / reference_dimension are runtime-bound form
11
+ # inputs.
12
+ calculation_context evaluation {
13
+ field measurement_principle { source classification.measurement_principle }
14
+ field instrument_category { source classification.instrument_category }
15
+ field power_supply { source classification.power_supply }
16
+ field object_capability { source classification.object_capability }
17
+ field d { source parameters.scale_interval }
18
+ field min_dimension { source parameters.min_dimension }
19
+ field max_dimension { source parameters.max_dimension }
20
+ field conversion_factor { source parameters.conversion_factor }
21
+ field mpe { source computed expression "1.0 * d" }
22
+ field fault_limit { source computed expression "1.0 * d" }
23
+ }
@@ -0,0 +1,57 @@
1
+ # OIML R 129 — Evaluation Dimensions
2
+ # Classification field schema for the evaluation context (application
3
+ # dimensions). Enum fields reference the classification dimensions of
4
+ # model/instrument.prl; the two string fields carry declared quantities
5
+ # captured on the application (scale interval d, temperature range).
6
+ #
7
+ # LEGACY NAMING: the field ids are camelCase (measurementPrinciple,
8
+ # instrumentCategory, powerSupply, objectCapability, scaleInterval,
9
+ # temperatureRange) — pre-snake_case app config, kept stable for the
10
+ # classification form's stored answers (C134 warns: a field id that is
11
+ # neither an is_dimension attribute nor a dimension id is a KNOWN
12
+ # allowlist entry here, not drift).
13
+ evaluation_dimensions evaluation {
14
+ label "Type of Testing"
15
+ field measurementPrinciple {
16
+ label "Measurement Principle"
17
+ enum measurement_principle
18
+ required true
19
+ editable false
20
+ setting MUST
21
+ }
22
+ field instrumentCategory {
23
+ label "Instrument Category"
24
+ enum instrument_category
25
+ required true
26
+ editable false
27
+ setting MUST
28
+ }
29
+ field powerSupply {
30
+ label "Power Supply"
31
+ enum power_supply
32
+ required true
33
+ editable false
34
+ setting MUST
35
+ }
36
+ field objectCapability {
37
+ label "Object Capability"
38
+ enum object_capability
39
+ required false
40
+ editable true
41
+ setting RECOMMEND
42
+ }
43
+ field scaleInterval {
44
+ label "Scale interval (d)"
45
+ type string
46
+ required true
47
+ editable true
48
+ setting MUST
49
+ }
50
+ field temperatureRange {
51
+ label "Temperature range"
52
+ type string
53
+ required false
54
+ editable true
55
+ setting MAY
56
+ }
57
+ }
@@ -0,0 +1,37 @@
1
+ # OIML R 129 — the application declaration (TODO.application/02): the
2
+ # applicant-facing register — the application-documentation checklist
3
+ # (R 129-2:2020, 1.2: the technical documentation and the measurement
4
+ # data details + calculation methods; the software documentation at
5
+ # 1.2.2). R 129 declares no applicant declaration form today —
6
+ # the wizard renders the derived attribute grid as the honest
7
+ # fallback. The checklist derives from this register, never from
8
+ # literals (browser/src/services/application.service.ts).
9
+ application_declaration application {
10
+ document technical-documentation {
11
+ name "Technical documentation"
12
+ description "The technical documentation of the instrument — drawings, specifications, photographs and descriptions sufficient to understand its construction and method of operation (R 129-2, 1.2)."
13
+ obligation shall
14
+ source {
15
+ doc "urn:oiml:pub:r:129-2:2020"
16
+ clause "1.2"
17
+ }
18
+ }
19
+ document measurement-data {
20
+ name "Measurement data details and calculation methods"
21
+ description "The details of the measurement data and the calculation methods the instrument applies (R 129-2, 1.2)."
22
+ obligation shall
23
+ source {
24
+ doc "urn:oiml:pub:r:129-2:2020"
25
+ clause "1.2"
26
+ }
27
+ }
28
+ document software-documentation {
29
+ name "Software documentation"
30
+ description "Documentation of the legally relevant software, sufficient for a reasonable evaluation (R 129-2, 1.2.2 and 1.1.2)."
31
+ obligation may
32
+ source {
33
+ doc "urn:oiml:pub:r:129-2:2020"
34
+ clause "1.2.2"
35
+ }
36
+ }
37
+ }
@@ -36,3 +36,21 @@ allowlist_entry {
36
36
  reason "Routing markers, not process ids: accept_mtl_report / require_independent_tl name the manufacturer-test-lab acceptability branches (Scheme A)."
37
37
  audit_ref "TODO.roadmap/40"
38
38
  }
39
+ allowlist_entry {
40
+ rule C133
41
+ match "calculation_context evaluation: field mpe: expression identifier \"measured_value\" is not a field of this context — a runtime-bound input (declare it as a field or bind it at runtime) (calculation-context-references)"
42
+ reason "measured_value is the runtime-bound form input (the CGM reference value at the test point) the evaluation context binds at run time — the mpe expression's free identifier is deliberate (the register header documents it); never drift."
43
+ audit_ref "TODO.roadmap/40"
44
+ }
45
+ allowlist_entry {
46
+ rule C133
47
+ match "calculation_context evaluation: field mpe_verification: expression identifier \"measured_value\" is not a field of this context — a runtime-bound input (declare it as a field or bind it at runtime) (calculation-context-references)"
48
+ reason "measured_value is the runtime-bound form input (the CGM reference value at the test point) the evaluation context binds at run time — the mpe_verification expression's free identifier is deliberate (the register header documents it); never drift."
49
+ audit_ref "TODO.roadmap/40"
50
+ }
51
+ allowlist_entry {
52
+ rule C133
53
+ match "calculation_context evaluation: field repeatability_limit: expression identifier \"measured_value\" is not a field of this context — a runtime-bound input (declare it as a field or bind it at runtime) (calculation-context-references)"
54
+ reason "measured_value is the runtime-bound form input (the CGM reference value at the test point) the evaluation context binds at run time — the repeatability_limit expression's free identifier is deliberate (the register header documents it); never drift."
55
+ audit_ref "TODO.roadmap/40"
56
+ }
@@ -0,0 +1,32 @@
1
+ # OIML R 144 — Calculation Context
2
+ # Variable bindings for the calculation engine. Each field names a
3
+ # computation input and where it is sourced from.
4
+ #
5
+ # Consumed by computation-context.service.ts to build the evaluation
6
+ # context for form calculations.
7
+ #
8
+ # Dimensions resolve from classification.<dimension_id>, parameters from
9
+ # parameters.<attribute_id> (delegation Sample -> Model -> Group ->
10
+ # Family, INV-10). measured_value / x_ref are runtime-bound form inputs
11
+ # (the CGM reference value at the test point) — C133 warns on the free
12
+ # identifiers, KNOWN allowlist entries (runtime-bound, never drift).
13
+ calculation_context evaluation {
14
+ field measurand_components { source classification.measurand_components }
15
+ field measuring_principle { source classification.measuring_principle }
16
+ field sampling_approach { source classification.sampling_approach }
17
+ field adjustment_means { source classification.adjustment_means }
18
+ field power_supply { source classification.power_supply }
19
+ field co_range_min { source parameters.co_range_min }
20
+ field co_range_max { source parameters.co_range_max }
21
+ field no_range_min { source parameters.no_range_min }
22
+ field no_range_max { source parameters.no_range_max }
23
+ field no2_range_min { source parameters.no2_range_min }
24
+ field no2_range_max { source parameters.no2_range_max }
25
+ field response_time { source parameters.response_time }
26
+ field warm_up_time { source parameters.warm_up_time }
27
+ field t_min { source parameters.t_min }
28
+ field t_max { source parameters.t_max }
29
+ field mpe { source computed expression "max(2, 0.05 * abs(measured_value))" }
30
+ field mpe_verification { source computed expression "max(5, 0.10 * abs(measured_value))" }
31
+ field repeatability_limit { source computed expression "max(2, 0.05 * abs(measured_value)) / 3" }
32
+ }
@@ -0,0 +1,47 @@
1
+ # OIML R 144 — Evaluation Dimensions
2
+ # Classification field schema for the evaluation context. The
3
+ # measurand_components field is the per-channel axis (`multiple true` —
4
+ # the instrument measures several gas components, one channel each); the
5
+ # channel declaration itself lives on the instrument register
6
+ # (model/instrument.prl `per_channel measurand_components`, the kernel's
7
+ # Instrument.perChannel — the single home, deliberately NOT a facet of
8
+ # this construct).
9
+ evaluation_dimensions evaluation {
10
+ label "Type of Testing"
11
+ field measurand_components {
12
+ label "Measurand Components"
13
+ enum measurand_components
14
+ required true
15
+ editable false
16
+ setting MUST
17
+ multiple true
18
+ }
19
+ field measuring_principle {
20
+ label "Measuring Principle"
21
+ enum measuring_principle
22
+ required true
23
+ editable false
24
+ setting MUST
25
+ }
26
+ field sampling_approach {
27
+ label "Sampling Approach"
28
+ enum sampling_approach
29
+ required true
30
+ editable false
31
+ setting MUST
32
+ }
33
+ field adjustment_means {
34
+ label "Adjustment Means"
35
+ enum adjustment_means
36
+ required true
37
+ editable true
38
+ setting RECOMMEND
39
+ }
40
+ field power_supply {
41
+ label "Power Supply"
42
+ enum power_supply
43
+ required false
44
+ editable true
45
+ setting MAY
46
+ }
47
+ }
@@ -0,0 +1,78 @@
1
+ # OIML R 144 — the application declaration (TODO.application/02): the
2
+ # applicant-facing register — the application-documentation checklist
3
+ # (R 144-1:2013, 7.1.1 items a–g — the general principle of
4
+ # measurement, the essential components list, the component
5
+ # descriptions + drawings + diagrams, the general software
6
+ # information, the calculation formula description, the operating
7
+ # manual, and the manufacturer testing details and results). R 144
8
+ # declares no applicant declaration form today — the wizard renders
9
+ # the derived attribute grid as the honest fallback. The checklist
10
+ # derives from this register, never from literals
11
+ # (browser/src/services/application.service.ts). Obligations follow
12
+ # the Recommendation's own "shall / if appropriate" modality
13
+ # (parse-enforced: shall | should | may).
14
+ application_declaration application {
15
+ document measurement-principle {
16
+ name "Description of the general principle of measurement"
17
+ description "A description of the gas analytical system's general principle of measurement (R 144-1, 7.1.1 a)."
18
+ obligation shall
19
+ source {
20
+ doc "urn:oiml:pub:r:144-1:2013"
21
+ clause "7.1.1"
22
+ }
23
+ }
24
+ document essential-components-list {
25
+ name "Essential components list"
26
+ description "A list of the system's essential components with their characteristics (R 144-1, 7.1.1 b)."
27
+ obligation shall
28
+ source {
29
+ doc "urn:oiml:pub:r:144-1:2013"
30
+ clause "7.1.1"
31
+ }
32
+ }
33
+ document components-drawings {
34
+ name "Component descriptions, drawings and diagrams"
35
+ description "A description of the essential components with drawings and diagrams (R 144-1, 7.1.1 c)."
36
+ obligation shall
37
+ source {
38
+ doc "urn:oiml:pub:r:144-1:2013"
39
+ clause "7.1.1"
40
+ }
41
+ }
42
+ document software-information {
43
+ name "General software information"
44
+ description "General information on the software used as part of the gas analytical system (R 144-1, 7.1.1 d)."
45
+ obligation shall
46
+ source {
47
+ doc "urn:oiml:pub:r:144-1:2013"
48
+ clause "7.1.1"
49
+ }
50
+ }
51
+ document calculation-formula {
52
+ name "Calculation formula description"
53
+ description "A description of the formula applied for the calculation of mass emission components (R 144-1, 7.1.1 e)."
54
+ obligation shall
55
+ source {
56
+ doc "urn:oiml:pub:r:144-1:2013"
57
+ clause "7.1.1"
58
+ }
59
+ }
60
+ document operating-manual {
61
+ name "Operating manual"
62
+ description "The operating manual to be provided to the user (R 144-1, 7.1.1 f)."
63
+ obligation shall
64
+ source {
65
+ doc "urn:oiml:pub:r:144-1:2013"
66
+ clause "7.1.1"
67
+ }
68
+ }
69
+ document manufacturer-testing {
70
+ name "Manufacturer testing details and results"
71
+ description "Details and results of any testing which may have been carried out by the manufacturer (R 144-1, 7.1.1 g)."
72
+ obligation may
73
+ source {
74
+ doc "urn:oiml:pub:r:144-1:2013"
75
+ clause "7.1.1"
76
+ }
77
+ }
78
+ }
@@ -1,6 +1,7 @@
1
1
  instrument GasAnalyticalSystem {
2
2
  extends MeasuringInstrumentModel
3
3
  measurand_kind volume-fraction
4
+ per_channel measurand_components
4
5
  definition "Assembly to carry out specified gas analytical measurements (ISO 7504:2001). In this Recommendation, a system that continuously measures the volume fraction of CO (carbon monoxide), NO (nitrogen monoxide), NO2 (nitrogen dioxide), or the sum of nitrogen oxides (NOx), or measures only CO or only NO and NO2, or NOx, by analyzing the gas samples taken directly from the smokestack or gas pipe in industry."
5
6
  note "A GasAnalyticalSystem MODEL is what gets type-evaluated and approved; physical units are MeasuringInstrumentSample instances of that Model (INV-10 delegation: Sample -> Model -> Family). The system includes a means for sampling and sample preparation (extractive sampling), a gas analyzer (R 144-1, 2.4 — the core measuring unit), zero/span adjustment means, data accumulation/processing/storage, control means, interfaces, and gas/electric communication lines."
6
7
  ref derives-from "urn:oiml:pub:r:144-1:2013#clause-2.1"
@@ -42,3 +42,9 @@ allowlist_entry {
42
42
  reason "The edges cover exactly the humidity classes R 60 prescribes a damp-heat test for (CH cyclic, SH steady-state); NH / unclassed instruments deliberately match NO edge (no humidity test applies), and unlike r129/r144's skip_* arms this gateway authors no no-op target for a default to point at."
43
43
  audit_ref "TODO.roadmap/40"
44
44
  }
45
+ allowlist_entry {
46
+ rule C133
47
+ match "calculation_context evaluation: field v_min: expression identifier \"f\" is not a field of this context — a runtime-bound input (declare it as a field or bind it at runtime) (calculation-context-references)"
48
+ reason "`f` is the runtime-bound form input (conversion_factor_f) the evaluation context binds at run time — the v_min expression's free identifier is deliberate (the register header documents it); never drift."
49
+ audit_ref "TODO.roadmap/40"
50
+ }
@@ -0,0 +1,22 @@
1
+ # OIML R 60 — Calculation Context
2
+ # Variable bindings for the calculation engine. Each field names a
3
+ # computation input and where it is sourced from.
4
+ #
5
+ # Consumed by computation-context.service.ts to build the evaluation
6
+ # context for form calculations.
7
+ #
8
+ # Variable names are keyed to attribute ids (model/attributes.prl) and
9
+ # sources point to the subject chain of entities/instrument.yaml —
10
+ # dimensions resolve from classification.<dimension_id>, parameters from
11
+ # parameters.<attribute_id> (delegation Sample -> Model -> Group ->
12
+ # Family, INV-10). `f` remains a runtime-bound form input
13
+ # (conversion_factor_f), as before — C133 warns on the free identifier,
14
+ # a KNOWN allowlist entry (runtime-bound, never drift).
15
+ calculation_context evaluation {
16
+ field accuracy_class { source classification.accuracy_class }
17
+ field p_lc { source parameters.p_lc }
18
+ field e_max { source parameters.e_max }
19
+ field e_min { source parameters.e_min }
20
+ field n_lc { source parameters.n_lc }
21
+ field v_min { source computed expression "(e_max - e_min) / (n_lc * f)" }
22
+ }
@@ -0,0 +1,56 @@
1
+ # OIML R 60 — Evaluation Dimensions
2
+ # Classification field schema for the evaluation context. These fields
3
+ # populate the dimension selector on the classification form and seed
4
+ # the calculation context.
5
+ #
6
+ # Field names are the four is_dimension attribute ids of
7
+ # model/attributes.prl (technology, accuracy_class, humidity_symbol,
8
+ # load_type); each field's `enum` references the classification
9
+ # dimension of model/instrument.prl that supplies its value space.
10
+ # Numeric parameter inputs formerly declared here (n_LC, p_LC,
11
+ # temperatureRange) are no longer form fields — their values resolve
12
+ # from the subject chain parameter maps (parameters.n_lc,
13
+ # parameters.p_lc, parameters.t_min / parameters.t_max); see
14
+ # evaluation/calculation-context.prl.
15
+ #
16
+ # Each field declares:
17
+ # - name — dimension attribute id (is_dimension: true)
18
+ # - label — UI label
19
+ # - type — integer | number | string | text | boolean | date
20
+ # (parse-enforced)
21
+ # - enum — references a dimension from model/instrument.prl
22
+ # - required — whether the user must set this field
23
+ # - editable — whether the field is locked once set
24
+ # - setting — MUST | SHALL | RECOMMEND | SHOULD | MAY | OPTIONAL
25
+ # (parse-enforced; MMEL importance)
26
+ evaluation_dimensions evaluation {
27
+ label "Type of Testing"
28
+ field technology {
29
+ label "Technology"
30
+ enum technology
31
+ required true
32
+ editable false
33
+ setting MUST
34
+ }
35
+ field accuracy_class {
36
+ label "Accuracy Class"
37
+ enum accuracy_class
38
+ required true
39
+ editable false
40
+ setting MUST
41
+ }
42
+ field humidity_symbol {
43
+ label "Humidity Symbol"
44
+ enum humidity_class
45
+ required true
46
+ editable false
47
+ setting MUST
48
+ }
49
+ field load_type {
50
+ label "Load Type"
51
+ enum load_type
52
+ required false
53
+ editable true
54
+ setting MAY
55
+ }
56
+ }
@@ -0,0 +1,78 @@
1
+ # OIML R 60 — the application declaration (TODO.application/02): the
2
+ # applicant-facing register — the instrument-declaration form the
3
+ # applicant signs (declaration_form → the PRL-authored r60-3/sec-4.5
4
+ # form; C132 resolves it against the form register) and the
5
+ # application-documentation checklist (R 60-2:2021, 2.5 items a–g —
6
+ # measurement principle, mechanical drawings, electric/electronic
7
+ # diagrams, installation requirements, operating instructions,
8
+ # compliance evidence, software documentation). The application wizard
9
+ # derives its checklist + form pointer from this register, never from
10
+ # literals (browser/src/services/application.service.ts). Obligations
11
+ # follow the Recommendation's own "shall / if appropriate" modality
12
+ # (parse-enforced: shall | should | may).
13
+ application_declaration application {
14
+ declaration_form r60-3/sec-4.5
15
+ document measurement-principle {
16
+ name "Description of the general principle of measurement"
17
+ description "A description of the load cell's general principle of measurement (R 60-2, 2.5 a)."
18
+ obligation shall
19
+ source {
20
+ doc "urn:oiml:pub:r:60-2:2021"
21
+ clause "2.5"
22
+ }
23
+ }
24
+ document mechanical-drawings {
25
+ name "Mechanical drawings"
26
+ description "Mechanical drawings, including documents on the load transmission(s) as per R 60-2 Annex E (R 60-2, 2.5 b)."
27
+ obligation shall
28
+ source {
29
+ doc "urn:oiml:pub:r:60-2:2021"
30
+ clause "2.5"
31
+ }
32
+ }
33
+ document electrical-diagrams {
34
+ name "Electric/electronic diagrams"
35
+ description "Electric and electronic diagrams of the load cell (R 60-2, 2.5 c)."
36
+ obligation shall
37
+ source {
38
+ doc "urn:oiml:pub:r:60-2:2021"
39
+ clause "2.5"
40
+ }
41
+ }
42
+ document installation-requirements {
43
+ name "Installation requirements"
44
+ description "Physical and electrical installation requirements, if appropriate (R 60-2, 2.5 d)."
45
+ obligation may
46
+ source {
47
+ doc "urn:oiml:pub:r:60-2:2021"
48
+ clause "2.5"
49
+ }
50
+ }
51
+ document operating-instructions {
52
+ name "Operating instructions"
53
+ description "Operating instructions to be provided to the user, if appropriate (R 60-2, 2.5 e)."
54
+ obligation may
55
+ source {
56
+ doc "urn:oiml:pub:r:60-2:2021"
57
+ clause "2.5"
58
+ }
59
+ }
60
+ document compliance-evidence {
61
+ name "Compliance evidence"
62
+ description "Documents or other evidence supporting and demonstrating the manufacturer's belief that the design and characteristics of the load cell comply with the requirements of the Recommendation (R 60-2, 2.5 f)."
63
+ obligation shall
64
+ source {
65
+ doc "urn:oiml:pub:r:60-2:2021"
66
+ clause "2.5"
67
+ }
68
+ }
69
+ document software-documentation {
70
+ name "Software documentation"
71
+ description "Documentation relative to software, if appropriate (R 60-2, 2.5 g)."
72
+ obligation may
73
+ source {
74
+ doc "urn:oiml:pub:r:60-2:2021"
75
+ clause "2.5"
76
+ }
77
+ }
78
+ }
@@ -0,0 +1,14 @@
1
+ # OIML R 91 — Calculation Context (TODO.roadmap/19)
2
+ # Variable bindings for the calculation engine: where each computation
3
+ # input is sourced from (subject-chain paths — classification.<dimension>
4
+ # or parameters.<attribute>, delegated Sample → Model → Group → Family,
5
+ # INV-10).
6
+ #
7
+ # metrological_class: the A/B moving class keys the moving MPE lookup
8
+ # (lookupMPE(reference_speed, metrological_class, 1.0)).
9
+ # fault_limit: the group-scope fault limit of R 91-1, 6.18.1
10
+ # (abs(fault) <= group.parameters.fault_limit).
11
+ calculation_context evaluation {
12
+ field metrological_class { source classification.metrological_class }
13
+ field fault_limit { source parameters.fault_limit }
14
+ }
@@ -0,0 +1,73 @@
1
+ # OIML R 91 — Evaluation Dimensions (TODO.roadmap/19)
2
+ # Classification field schema for the evaluation context: the dimension
3
+ # selector and the calculation-context seed. Field names are the
4
+ # classification-dimension ids of model/instrument.prl (the five category
5
+ # axes of R 91-1, clause 5, the A/B moving class of 6.15.1, and the OIML
6
+ # D 11 environment classes of 6.17.1–6.17.3 that condition test
7
+ # severities).
8
+ evaluation_dimensions evaluation {
9
+ label "Type of Testing"
10
+ field mode_of_use {
11
+ label "Mode of use"
12
+ enum mode_of_use
13
+ required true
14
+ editable false
15
+ setting MUST
16
+ }
17
+ field working_principle {
18
+ label "Working principle"
19
+ enum working_principle
20
+ required true
21
+ editable false
22
+ setting MUST
23
+ }
24
+ field installation_principle {
25
+ label "Principle of installation"
26
+ enum installation_principle
27
+ required true
28
+ editable false
29
+ setting MUST
30
+ }
31
+ field triggering {
32
+ label "Triggering and camera"
33
+ enum triggering
34
+ required true
35
+ editable false
36
+ setting MUST
37
+ }
38
+ field cosine_compensation {
39
+ label "Cosine error compensation"
40
+ enum cosine_compensation
41
+ required true
42
+ editable false
43
+ setting MUST
44
+ }
45
+ field metrological_class {
46
+ label "Class of moving speed meter (A/B — mandatory for moving measurements, R 91-1, 6.15.1)"
47
+ enum metrological_class
48
+ required false
49
+ editable true
50
+ setting MAY
51
+ }
52
+ field climatic_environment_class {
53
+ label "Climatic environment class"
54
+ enum climatic_environment_class
55
+ required true
56
+ editable false
57
+ setting MUST
58
+ }
59
+ field mechanical_environment_class {
60
+ label "Mechanical environment class"
61
+ enum mechanical_environment_class
62
+ required true
63
+ editable false
64
+ setting MUST
65
+ }
66
+ field electromagnetic_environment_class {
67
+ label "Electromagnetic environment class"
68
+ enum electromagnetic_environment_class
69
+ required true
70
+ editable false
71
+ setting MUST
72
+ }
73
+ }
@@ -0,0 +1,168 @@
1
+ # OIML R 91 — the application declaration (TODO.application/02): the
2
+ # applicant-facing register — the application-documentation checklist
3
+ # (R 91-1:2025, 8.1.1 items a–q: the metrological characteristics, the
4
+ # technical/electronic specifications, the functional description, the
5
+ # checking facilities, drawings/diagrams/photos, interfaces,
6
+ # installation requirements, self-checking mechanisms, the security
7
+ # sealing plan, software + data security, the panel layout, software
8
+ # information, the operating manual, compliance evidence, the D 31
9
+ # software documentation, an evidence-file sample, and the measuring
10
+ # principles). R 91 declares no applicant declaration form today —
11
+ # the wizard renders the derived attribute grid as the honest
12
+ # fallback. The checklist derives from this register, never from
13
+ # literals (browser/src/services/application.service.ts).
14
+ application_declaration application {
15
+ document metrological-characteristics {
16
+ name "Metrological characteristics"
17
+ description "The metrological characteristics of the speed meter, including a statement about durability (R 91-1, 8.1.1 a)."
18
+ obligation shall
19
+ source {
20
+ doc "urn:oiml:pub:r:91-1:2025"
21
+ clause "8.1.1"
22
+ }
23
+ }
24
+ document technical-specifications {
25
+ name "Technical and electronic specifications"
26
+ description "The technical and electronic specifications of the speed meter (R 91-1, 8.1.1 b)."
27
+ obligation shall
28
+ source {
29
+ doc "urn:oiml:pub:r:91-1:2025"
30
+ clause "8.1.1"
31
+ }
32
+ }
33
+ document functional-description {
34
+ name "Functional description"
35
+ description "Functional description of the speed meter including its subassemblies and components (R 91-1, 8.1.1 c)."
36
+ obligation shall
37
+ source {
38
+ doc "urn:oiml:pub:r:91-1:2025"
39
+ clause "8.1.1"
40
+ }
41
+ }
42
+ document checking-facilities {
43
+ name "Checking facilities description"
44
+ description "Description of the checking facilities (R 91-1, 8.1.1 d; see 6.9 and 7.5)."
45
+ obligation shall
46
+ source {
47
+ doc "urn:oiml:pub:r:91-1:2025"
48
+ clause "8.1.1"
49
+ }
50
+ }
51
+ document drawings-diagrams-photos {
52
+ name "Drawings, diagrams and photos"
53
+ description "Drawings, diagrams and photos of the speed meter explaining its construction and operation (R 91-1, 8.1.1 e)."
54
+ obligation shall
55
+ source {
56
+ doc "urn:oiml:pub:r:91-1:2025"
57
+ clause "8.1.1"
58
+ }
59
+ }
60
+ document interfaces-list {
61
+ name "List of interfaces"
62
+ description "A list of interfaces specifying types, intended use and immunity to external influences (R 91-1, 8.1.1 f)."
63
+ obligation shall
64
+ source {
65
+ doc "urn:oiml:pub:r:91-1:2025"
66
+ clause "8.1.1"
67
+ }
68
+ }
69
+ document installation-requirements {
70
+ name "Installation requirements and instructions"
71
+ description "The installation requirements and instructions (R 91-1, 8.1.1 g)."
72
+ obligation shall
73
+ source {
74
+ doc "urn:oiml:pub:r:91-1:2025"
75
+ clause "8.1.1"
76
+ }
77
+ }
78
+ document self-checking-mechanisms {
79
+ name "Self-checking mechanisms"
80
+ description "Description and application of the self-checking mechanisms (R 91-1, 8.1.1 h)."
81
+ obligation shall
82
+ source {
83
+ doc "urn:oiml:pub:r:91-1:2025"
84
+ clause "8.1.1"
85
+ }
86
+ }
87
+ document sealing-plan {
88
+ name "Security sealing plan"
89
+ description "The security sealing plan, including drawings or photos (R 91-1, 8.1.1 i)."
90
+ obligation shall
91
+ source {
92
+ doc "urn:oiml:pub:r:91-1:2025"
93
+ clause "8.1.1"
94
+ }
95
+ }
96
+ document software-security {
97
+ name "Security measures for software and data"
98
+ description "Security measures for the protection of software, settings and measurement data (R 91-1, 8.1.1 j)."
99
+ obligation shall
100
+ source {
101
+ doc "urn:oiml:pub:r:91-1:2025"
102
+ clause "8.1.1"
103
+ }
104
+ }
105
+ document panel-layout {
106
+ name "Panel layout"
107
+ description "The panel layout (user interface) (R 91-1, 8.1.1 k)."
108
+ obligation shall
109
+ source {
110
+ doc "urn:oiml:pub:r:91-1:2025"
111
+ clause "8.1.1"
112
+ }
113
+ }
114
+ document software-information {
115
+ name "General software information"
116
+ description "General information on the software, covering in particular the requirements in R 91-1, 7.10 (R 91-1, 8.1.1 l)."
117
+ obligation shall
118
+ source {
119
+ doc "urn:oiml:pub:r:91-1:2025"
120
+ clause "8.1.1"
121
+ }
122
+ }
123
+ document operating-manual {
124
+ name "Operating instructions and manual"
125
+ description "The operating instructions and operating manual to be provided to the user (R 91-1, 8.1.1 m)."
126
+ obligation shall
127
+ source {
128
+ doc "urn:oiml:pub:r:91-1:2025"
129
+ clause "8.1.1"
130
+ }
131
+ }
132
+ document compliance-evidence {
133
+ name "Compliance evidence"
134
+ description "Documents or other evidence supporting the assumption that the design and characteristics of the measuring instrument comply with the requirements of the Recommendation (R 91-1, 8.1.1 n)."
135
+ obligation shall
136
+ source {
137
+ doc "urn:oiml:pub:r:91-1:2025"
138
+ clause "8.1.1"
139
+ }
140
+ }
141
+ document d31-documentation {
142
+ name "Software documentation (D 31)"
143
+ description "The documentation requested in OIML D 31, 7.1 (R 91-1, 8.1.1 o)."
144
+ obligation shall
145
+ source {
146
+ doc "urn:oiml:pub:r:91-1:2025"
147
+ clause "8.1.1"
148
+ }
149
+ }
150
+ document evidence-file-sample {
151
+ name "Sample of a recorded event (evidence file)"
152
+ description "A sample of a recorded event (evidence file) (R 91-1, 8.1.1 p)."
153
+ obligation shall
154
+ source {
155
+ doc "urn:oiml:pub:r:91-1:2025"
156
+ clause "8.1.1"
157
+ }
158
+ }
159
+ document measuring-principles {
160
+ name "Description of measuring principles"
161
+ description "Description of the measuring principles or algorithms and how speed values for indication are obtained, including the mathematical operation used to obtain integer speed values from high-resolution values (R 91-1, 8.1.1 q)."
162
+ obligation shall
163
+ source {
164
+ doc "urn:oiml:pub:r:91-1:2025"
165
+ clause "8.1.1"
166
+ }
167
+ }
168
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oimlsmart/primmel-packages",
3
- "version": "0.15.0",
3
+ "version": "0.17.0",
4
4
  "description": "The OIML SMART platform's authoritative model content: every Recommendation, the OIML-CS scheme, the CASCO foundations, the shared modules, and the product/program reference packages as Primmel (.prl) packages — the single source of truth the platform's data trees regenerate from. Consumed by the smart monorepo (oimlsmart/smart) at a pinned version (TODO.repos/02).",
5
5
  "type": "module",
6
6
  "repository": {
@@ -1,40 +0,0 @@
1
- # GENERATED package payload (task 31b) — content with no PRL construct; composed back by regenerate-data + build-primmel-cache. Do not edit by hand.
2
- application:
3
- documentation:
4
- - id: technical-documentation
5
- name:
6
- - spelling: eng-Latn
7
- value: Technical documentation
8
- description:
9
- - spelling: eng-Latn
10
- value: >-
11
- The technical documentation of the instrument — drawings, specifications, photographs and descriptions
12
- sufficient to understand its construction and method of operation (R 129-2, 1.2).
13
- obligation: shall
14
- source:
15
- doc: urn:oiml:pub:r:129-2:2020
16
- clause: '1.2'
17
- - id: measurement-data
18
- name:
19
- - spelling: eng-Latn
20
- value: Measurement data details and calculation methods
21
- description:
22
- - spelling: eng-Latn
23
- value: The details of the measurement data and the calculation methods the instrument applies (R 129-2, 1.2).
24
- obligation: shall
25
- source:
26
- doc: urn:oiml:pub:r:129-2:2020
27
- clause: '1.2'
28
- - id: software-documentation
29
- name:
30
- - spelling: eng-Latn
31
- value: Software documentation
32
- description:
33
- - spelling: eng-Latn
34
- value: >-
35
- Documentation of the legally relevant software, sufficient for a reasonable evaluation (R 129-2, 1.2.2 and
36
- 1.1.2).
37
- obligation: may
38
- source:
39
- doc: urn:oiml:pub:r:129-2:2020
40
- clause: 1.2.2
@@ -1,80 +0,0 @@
1
- # GENERATED package payload (task 31b) — content with no PRL construct; composed back by regenerate-data + build-primmel-cache. Do not edit by hand.
2
- application:
3
- documentation:
4
- - id: measurement-principle
5
- name:
6
- - spelling: eng-Latn
7
- value: Description of the general principle of measurement
8
- description:
9
- - spelling: eng-Latn
10
- value: A description of the gas analytical system's general principle of measurement (R 144-1, 7.1.1 a).
11
- obligation: shall
12
- source:
13
- doc: urn:oiml:pub:r:144-1:2013
14
- clause: 7.1.1
15
- - id: essential-components-list
16
- name:
17
- - spelling: eng-Latn
18
- value: Essential components list
19
- description:
20
- - spelling: eng-Latn
21
- value: A list of the system's essential components with their characteristics (R 144-1, 7.1.1 b).
22
- obligation: shall
23
- source:
24
- doc: urn:oiml:pub:r:144-1:2013
25
- clause: 7.1.1
26
- - id: components-drawings
27
- name:
28
- - spelling: eng-Latn
29
- value: Component descriptions, drawings and diagrams
30
- description:
31
- - spelling: eng-Latn
32
- value: A description of the essential components with drawings and diagrams (R 144-1, 7.1.1 c).
33
- obligation: shall
34
- source:
35
- doc: urn:oiml:pub:r:144-1:2013
36
- clause: 7.1.1
37
- - id: software-information
38
- name:
39
- - spelling: eng-Latn
40
- value: General software information
41
- description:
42
- - spelling: eng-Latn
43
- value: General information on the software used as part of the gas analytical system (R 144-1, 7.1.1 d).
44
- obligation: shall
45
- source:
46
- doc: urn:oiml:pub:r:144-1:2013
47
- clause: 7.1.1
48
- - id: calculation-formula
49
- name:
50
- - spelling: eng-Latn
51
- value: Calculation formula description
52
- description:
53
- - spelling: eng-Latn
54
- value: A description of the formula applied for the calculation of mass emission components (R 144-1, 7.1.1 e).
55
- obligation: shall
56
- source:
57
- doc: urn:oiml:pub:r:144-1:2013
58
- clause: 7.1.1
59
- - id: operating-manual
60
- name:
61
- - spelling: eng-Latn
62
- value: Operating manual
63
- description:
64
- - spelling: eng-Latn
65
- value: The operating manual to be provided to the user (R 144-1, 7.1.1 f).
66
- obligation: shall
67
- source:
68
- doc: urn:oiml:pub:r:144-1:2013
69
- clause: 7.1.1
70
- - id: manufacturer-testing
71
- name:
72
- - spelling: eng-Latn
73
- value: Manufacturer testing details and results
74
- description:
75
- - spelling: eng-Latn
76
- value: Details and results of any testing which may have been carried out by the manufacturer (R 144-1, 7.1.1 g).
77
- obligation: may
78
- source:
79
- doc: urn:oiml:pub:r:144-1:2013
80
- clause: 7.1.1
@@ -1,83 +0,0 @@
1
- # GENERATED package payload (task 31b) — content with no PRL construct; composed back by regenerate-data + build-primmel-cache. Do not edit by hand.
2
- application:
3
- declaration_form: r60-3/sec-4.5
4
- documentation:
5
- - id: measurement-principle
6
- name:
7
- - spelling: eng-Latn
8
- value: Description of the general principle of measurement
9
- description:
10
- - spelling: eng-Latn
11
- value: A description of the load cell's general principle of measurement (R 60-2, 2.5 a).
12
- obligation: shall
13
- source:
14
- doc: urn:oiml:pub:r:60-2:2021
15
- clause: '2.5'
16
- - id: mechanical-drawings
17
- name:
18
- - spelling: eng-Latn
19
- value: Mechanical drawings
20
- description:
21
- - spelling: eng-Latn
22
- value: Mechanical drawings, including documents on the load transmission(s) as per R 60-2 Annex E (R 60-2, 2.5 b).
23
- obligation: shall
24
- source:
25
- doc: urn:oiml:pub:r:60-2:2021
26
- clause: '2.5'
27
- - id: electrical-diagrams
28
- name:
29
- - spelling: eng-Latn
30
- value: Electric/electronic diagrams
31
- description:
32
- - spelling: eng-Latn
33
- value: Electric and electronic diagrams of the load cell (R 60-2, 2.5 c).
34
- obligation: shall
35
- source:
36
- doc: urn:oiml:pub:r:60-2:2021
37
- clause: '2.5'
38
- - id: installation-requirements
39
- name:
40
- - spelling: eng-Latn
41
- value: Installation requirements
42
- description:
43
- - spelling: eng-Latn
44
- value: Physical and electrical installation requirements, if appropriate (R 60-2, 2.5 d).
45
- obligation: may
46
- source:
47
- doc: urn:oiml:pub:r:60-2:2021
48
- clause: '2.5'
49
- - id: operating-instructions
50
- name:
51
- - spelling: eng-Latn
52
- value: Operating instructions
53
- description:
54
- - spelling: eng-Latn
55
- value: Operating instructions to be provided to the user, if appropriate (R 60-2, 2.5 e).
56
- obligation: may
57
- source:
58
- doc: urn:oiml:pub:r:60-2:2021
59
- clause: '2.5'
60
- - id: compliance-evidence
61
- name:
62
- - spelling: eng-Latn
63
- value: Compliance evidence
64
- description:
65
- - spelling: eng-Latn
66
- value: >-
67
- Documents or other evidence supporting and demonstrating the manufacturer's belief that the design and
68
- characteristics of the load cell comply with the requirements of the Recommendation (R 60-2, 2.5 f).
69
- obligation: shall
70
- source:
71
- doc: urn:oiml:pub:r:60-2:2021
72
- clause: '2.5'
73
- - id: software-documentation
74
- name:
75
- - spelling: eng-Latn
76
- value: Software documentation
77
- description:
78
- - spelling: eng-Latn
79
- value: Documentation relative to software, if appropriate (R 60-2, 2.5 g).
80
- obligation: may
81
- source:
82
- doc: urn:oiml:pub:r:60-2:2021
83
- clause: '2.5'
@@ -1,201 +0,0 @@
1
- # GENERATED package payload (task 31b) — content with no PRL construct; composed back by regenerate-data + build-primmel-cache. Do not edit by hand.
2
- application:
3
- documentation:
4
- - id: metrological-characteristics
5
- name:
6
- - spelling: eng-Latn
7
- value: Metrological characteristics
8
- description:
9
- - spelling: eng-Latn
10
- value: >-
11
- The metrological characteristics of the speed meter, including a statement about durability (R 91-1, 8.1.1
12
- a).
13
- obligation: shall
14
- source:
15
- doc: urn:oiml:pub:r:91-1:2025
16
- clause: 8.1.1
17
- - id: technical-specifications
18
- name:
19
- - spelling: eng-Latn
20
- value: Technical and electronic specifications
21
- description:
22
- - spelling: eng-Latn
23
- value: The technical and electronic specifications of the speed meter (R 91-1, 8.1.1 b).
24
- obligation: shall
25
- source:
26
- doc: urn:oiml:pub:r:91-1:2025
27
- clause: 8.1.1
28
- - id: functional-description
29
- name:
30
- - spelling: eng-Latn
31
- value: Functional description
32
- description:
33
- - spelling: eng-Latn
34
- value: Functional description of the speed meter including its subassemblies and components (R 91-1, 8.1.1 c).
35
- obligation: shall
36
- source:
37
- doc: urn:oiml:pub:r:91-1:2025
38
- clause: 8.1.1
39
- - id: checking-facilities
40
- name:
41
- - spelling: eng-Latn
42
- value: Checking facilities description
43
- description:
44
- - spelling: eng-Latn
45
- value: Description of the checking facilities (R 91-1, 8.1.1 d; see 6.9 and 7.5).
46
- obligation: shall
47
- source:
48
- doc: urn:oiml:pub:r:91-1:2025
49
- clause: 8.1.1
50
- - id: drawings-diagrams-photos
51
- name:
52
- - spelling: eng-Latn
53
- value: Drawings, diagrams and photos
54
- description:
55
- - spelling: eng-Latn
56
- value: >-
57
- Drawings, diagrams and photos of the speed meter explaining its construction and operation (R 91-1, 8.1.1
58
- e).
59
- obligation: shall
60
- source:
61
- doc: urn:oiml:pub:r:91-1:2025
62
- clause: 8.1.1
63
- - id: interfaces-list
64
- name:
65
- - spelling: eng-Latn
66
- value: List of interfaces
67
- description:
68
- - spelling: eng-Latn
69
- value: A list of interfaces specifying types, intended use and immunity to external influences (R 91-1, 8.1.1 f).
70
- obligation: shall
71
- source:
72
- doc: urn:oiml:pub:r:91-1:2025
73
- clause: 8.1.1
74
- - id: installation-requirements
75
- name:
76
- - spelling: eng-Latn
77
- value: Installation requirements and instructions
78
- description:
79
- - spelling: eng-Latn
80
- value: The installation requirements and instructions (R 91-1, 8.1.1 g).
81
- obligation: shall
82
- source:
83
- doc: urn:oiml:pub:r:91-1:2025
84
- clause: 8.1.1
85
- - id: self-checking-mechanisms
86
- name:
87
- - spelling: eng-Latn
88
- value: Self-checking mechanisms
89
- description:
90
- - spelling: eng-Latn
91
- value: Description and application of the self-checking mechanisms (R 91-1, 8.1.1 h).
92
- obligation: shall
93
- source:
94
- doc: urn:oiml:pub:r:91-1:2025
95
- clause: 8.1.1
96
- - id: sealing-plan
97
- name:
98
- - spelling: eng-Latn
99
- value: Security sealing plan
100
- description:
101
- - spelling: eng-Latn
102
- value: The security sealing plan, including drawings or photos (R 91-1, 8.1.1 i).
103
- obligation: shall
104
- source:
105
- doc: urn:oiml:pub:r:91-1:2025
106
- clause: 8.1.1
107
- - id: software-security
108
- name:
109
- - spelling: eng-Latn
110
- value: Security measures for software and data
111
- description:
112
- - spelling: eng-Latn
113
- value: Security measures for the protection of software, settings and measurement data (R 91-1, 8.1.1 j).
114
- obligation: shall
115
- source:
116
- doc: urn:oiml:pub:r:91-1:2025
117
- clause: 8.1.1
118
- - id: panel-layout
119
- name:
120
- - spelling: eng-Latn
121
- value: Panel layout
122
- description:
123
- - spelling: eng-Latn
124
- value: The panel layout (user interface) (R 91-1, 8.1.1 k).
125
- obligation: shall
126
- source:
127
- doc: urn:oiml:pub:r:91-1:2025
128
- clause: 8.1.1
129
- - id: software-information
130
- name:
131
- - spelling: eng-Latn
132
- value: General software information
133
- description:
134
- - spelling: eng-Latn
135
- value: >-
136
- General information on the software, covering in particular the requirements in R 91-1, 7.10 (R 91-1, 8.1.1
137
- l).
138
- obligation: shall
139
- source:
140
- doc: urn:oiml:pub:r:91-1:2025
141
- clause: 8.1.1
142
- - id: operating-manual
143
- name:
144
- - spelling: eng-Latn
145
- value: Operating instructions and manual
146
- description:
147
- - spelling: eng-Latn
148
- value: The operating instructions and operating manual to be provided to the user (R 91-1, 8.1.1 m).
149
- obligation: shall
150
- source:
151
- doc: urn:oiml:pub:r:91-1:2025
152
- clause: 8.1.1
153
- - id: compliance-evidence
154
- name:
155
- - spelling: eng-Latn
156
- value: Compliance evidence
157
- description:
158
- - spelling: eng-Latn
159
- value: >-
160
- Documents or other evidence supporting the assumption that the design and characteristics of the measuring
161
- instrument comply with the requirements of the Recommendation (R 91-1, 8.1.1 n).
162
- obligation: shall
163
- source:
164
- doc: urn:oiml:pub:r:91-1:2025
165
- clause: 8.1.1
166
- - id: d31-documentation
167
- name:
168
- - spelling: eng-Latn
169
- value: Software documentation (D 31)
170
- description:
171
- - spelling: eng-Latn
172
- value: The documentation requested in OIML D 31, 7.1 (R 91-1, 8.1.1 o).
173
- obligation: shall
174
- source:
175
- doc: urn:oiml:pub:r:91-1:2025
176
- clause: 8.1.1
177
- - id: evidence-file-sample
178
- name:
179
- - spelling: eng-Latn
180
- value: Sample of a recorded event (evidence file)
181
- description:
182
- - spelling: eng-Latn
183
- value: A sample of a recorded event (evidence file) (R 91-1, 8.1.1 p).
184
- obligation: shall
185
- source:
186
- doc: urn:oiml:pub:r:91-1:2025
187
- clause: 8.1.1
188
- - id: measuring-principles
189
- name:
190
- - spelling: eng-Latn
191
- value: Description of measuring principles
192
- description:
193
- - spelling: eng-Latn
194
- value: >-
195
- Description of the measuring principles or algorithms and how speed values for indication are obtained,
196
- including the mathematical operation used to obtain integer speed values from high-resolution values (R
197
- 91-1, 8.1.1 q).
198
- obligation: shall
199
- source:
200
- doc: urn:oiml:pub:r:91-1:2025
201
- clause: 8.1.1