@oimlsmart/primmel-packages 0.18.0 → 0.20.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.
- package/oiml-r129/evaluation/certificate-template.prl +16 -0
- package/oiml-r129/execution/test-report-skeleton.prl +236 -0
- package/oiml-r144/evaluation/certificate-template.prl +22 -0
- package/oiml-r144/execution/test-report-skeleton.prl +254 -0
- package/oiml-r60/.primmel-allowlist.prl +6 -0
- package/oiml-r60/evaluation/certificate-template.prl +40 -0
- package/oiml-r60/execution/test-report-skeleton.prl +399 -0
- package/oiml-r91/evaluation/certificate-template.prl +17 -0
- package/oiml-r91/execution/test-report-skeleton.prl +426 -0
- package/oiml-twin-cert/evaluation/certificate-template.prl +111 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# OIML R 129 — Certificate Template
|
|
2
|
+
# Number format and dimension labels for OIML certificates.
|
|
3
|
+
#
|
|
4
|
+
# TODO.model-content/03: the certificate's characteristic list is NO LONGER
|
|
5
|
+
# hand-maintained here — it is generated from the verified promise set in
|
|
6
|
+
# model/promises.prl (each promise's `certificate` print projection;
|
|
7
|
+
# browser/src/services/certificate.service.ts certificateCharacteristics()).
|
|
8
|
+
#
|
|
9
|
+
# Number format per the OIML-CS certificate convention, e.g.
|
|
10
|
+
# R129/2020-A-NL1-24.01 (scheme A, issuing authority NL1, year 2024, seq 01).
|
|
11
|
+
certificate_template certificate {
|
|
12
|
+
number_format "{shortName}/{edition}-{scheme}-{authority}-{year2}.{seq}"
|
|
13
|
+
dimension_labels {
|
|
14
|
+
pattern "{measurement_principle}"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
# OIML R 129 — test report skeleton (kernel 1.14.0's test_report_skeleton,
|
|
2
|
+
# TODO.roadmap/40): the R 129-4 type evaluation report structure — sections
|
|
3
|
+
# and the form inventory (C140 resolves the entries against the forms
|
|
4
|
+
# register; required/applicability carry the inclusion rules).
|
|
5
|
+
test_report_skeleton r129-3/test-report {
|
|
6
|
+
title "OIML R 129 Type Evaluation Test Report"
|
|
7
|
+
description "The complete test report for an OIML R 129 multi-dimensional measuring instrument type evaluation: administrative information (R 129-3, 0.2–0.6 and R 129-4, 1.4), metrological tests (2.2–2.7), disturbance and climatic tests (2.8–2.12), effect tests (2.13–2.14), examinations and object tests (2.15–2.27), the summary of results (1.1) and the R 129-4 type evaluation checklist."
|
|
8
|
+
section 1 {
|
|
9
|
+
title "Administrative information"
|
|
10
|
+
description "Identification, general information, equipment, configuration, sample selection and adjustments (R 129-3, 0.2–0.6 and R 129-4, 1.4)"
|
|
11
|
+
form r129-3/sec-3.1 {
|
|
12
|
+
file "identification"
|
|
13
|
+
title "Identification"
|
|
14
|
+
required always
|
|
15
|
+
}
|
|
16
|
+
form r129-3/sec-3.2 {
|
|
17
|
+
file "general-info"
|
|
18
|
+
title "General information"
|
|
19
|
+
required always
|
|
20
|
+
}
|
|
21
|
+
form r129-3/sec-3.3 {
|
|
22
|
+
file "equipment-info"
|
|
23
|
+
title "Equipment used"
|
|
24
|
+
required always
|
|
25
|
+
}
|
|
26
|
+
form r129-3/sec-3.4 {
|
|
27
|
+
file "configuration"
|
|
28
|
+
title "Configuration of the instrument"
|
|
29
|
+
required always
|
|
30
|
+
}
|
|
31
|
+
form r129-3/sec-3.5 {
|
|
32
|
+
file "sample-selection"
|
|
33
|
+
title "Sample selection"
|
|
34
|
+
required always
|
|
35
|
+
}
|
|
36
|
+
form r129-3/sec-3.6 {
|
|
37
|
+
file "adjustments-modifications"
|
|
38
|
+
title "Adjustments and modifications"
|
|
39
|
+
required always
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
section 2 {
|
|
43
|
+
title "Metrological tests"
|
|
44
|
+
description "Warm-up, repeatability, static temperatures, damp heat and supply-voltage tests (R 129-3, 1.2–1.7)"
|
|
45
|
+
form r129-3/sec-2.2 {
|
|
46
|
+
file "warm-up-time"
|
|
47
|
+
title "Warm-up time test"
|
|
48
|
+
conformance_test /conf/metrological-tests/warm-up-time
|
|
49
|
+
requirements { /req/metrological/mpe /req/technical/warm-up }
|
|
50
|
+
required always
|
|
51
|
+
}
|
|
52
|
+
form r129-3/sec-2.3 {
|
|
53
|
+
file "repeatability"
|
|
54
|
+
title "Repeatability test"
|
|
55
|
+
conformance_test /conf/metrological-tests/repeatability
|
|
56
|
+
requirements { /req/metrological/mpe /req/metrological/calculated-quantities }
|
|
57
|
+
required always
|
|
58
|
+
}
|
|
59
|
+
form r129-3/sec-2.4 {
|
|
60
|
+
file "static-temperatures"
|
|
61
|
+
title "Static temperatures test"
|
|
62
|
+
conformance_test /conf/metrological-tests/static-temperatures
|
|
63
|
+
requirements { /req/metrological/mpe /req/electronic/rated-operating-conditions }
|
|
64
|
+
required always
|
|
65
|
+
}
|
|
66
|
+
form r129-3/sec-2.5.1 {
|
|
67
|
+
file "damp-heat-steady"
|
|
68
|
+
title "Damp heat, steady state test"
|
|
69
|
+
conformance_test /conf/metrological-tests/damp-heat-steady
|
|
70
|
+
requirements { /req/metrological/mpe /req/electronic/rated-operating-conditions }
|
|
71
|
+
required always
|
|
72
|
+
}
|
|
73
|
+
form r129-3/sec-2.6 {
|
|
74
|
+
file "voltage-variation"
|
|
75
|
+
title "AC mains voltage variation test"
|
|
76
|
+
conformance_test /conf/metrological-tests/ac-voltage-variation
|
|
77
|
+
requirements { /req/metrological/mpe /req/electronic/rated-operating-conditions }
|
|
78
|
+
required conditional
|
|
79
|
+
applicability {
|
|
80
|
+
power_supply: [ac-mains]
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
form r129-3/sec-2.7 {
|
|
84
|
+
file "low-voltage-battery"
|
|
85
|
+
title "Low voltage of battery test"
|
|
86
|
+
conformance_test /conf/metrological-tests/low-voltage-battery
|
|
87
|
+
requirements { /req/metrological/mpe /req/electronic/rated-operating-conditions }
|
|
88
|
+
required conditional
|
|
89
|
+
applicability {
|
|
90
|
+
power_supply: [battery]
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
section 3 {
|
|
95
|
+
title "Disturbance and climatic tests"
|
|
96
|
+
description "Voltage dips, bursts, ESD, surges, RF immunity and cyclic damp heat (R 129-3, 1.8–1.12)"
|
|
97
|
+
form r129-3/sec-2.8 {
|
|
98
|
+
file "voltage-dips"
|
|
99
|
+
title "Voltage dips and short interruptions test"
|
|
100
|
+
conformance_test /conf/disturbance-tests/voltage-dips
|
|
101
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
102
|
+
required conditional
|
|
103
|
+
applicability {
|
|
104
|
+
power_supply: [ac-mains]
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
form r129-3/sec-2.9 {
|
|
108
|
+
file "bursts"
|
|
109
|
+
title "Electrical fast transient / burst test"
|
|
110
|
+
conformance_test /conf/disturbance-tests/bursts
|
|
111
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
112
|
+
required conditional
|
|
113
|
+
applicability {
|
|
114
|
+
power_supply: [ac-mains]
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
form r129-3/sec-2.10 {
|
|
118
|
+
file "esd"
|
|
119
|
+
title "Electrostatic discharge test"
|
|
120
|
+
conformance_test /conf/disturbance-tests/esd
|
|
121
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
122
|
+
required always
|
|
123
|
+
}
|
|
124
|
+
form r129-3/sec-2.11 {
|
|
125
|
+
file "surge"
|
|
126
|
+
title "Surge immunity test"
|
|
127
|
+
conformance_test /conf/disturbance-tests/surges
|
|
128
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
129
|
+
required conditional
|
|
130
|
+
applicability {
|
|
131
|
+
power_supply: [ac-mains]
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
form r129-3/sec-2.12.1 {
|
|
135
|
+
file "rf-immunity-radiated"
|
|
136
|
+
title "Radiated RF electromagnetic field immunity test"
|
|
137
|
+
conformance_test /conf/disturbance-tests/rf-immunity-radiated
|
|
138
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
139
|
+
required always
|
|
140
|
+
}
|
|
141
|
+
form r129-3/sec-2.12.2 {
|
|
142
|
+
file "rf-immunity-conducted"
|
|
143
|
+
title "Conducted RF disturbance immunity test"
|
|
144
|
+
conformance_test /conf/disturbance-tests/rf-immunity-conducted
|
|
145
|
+
requirements { /req/electronic/disturbance-resistance /req/electronic/no-significant-faults }
|
|
146
|
+
required always
|
|
147
|
+
}
|
|
148
|
+
form r129-3/sec-2.5.2 {
|
|
149
|
+
file "damp-heat-cyclic"
|
|
150
|
+
title "Damp heat, cyclic test"
|
|
151
|
+
conformance_test /conf/disturbance-tests/damp-heat-cyclic
|
|
152
|
+
requirements { /req/metrological/mpe /req/electronic/rated-operating-conditions }
|
|
153
|
+
required always
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
section 4 {
|
|
157
|
+
title "Effect tests"
|
|
158
|
+
description "Ambient light and acoustic effects (R 129-3, 1.13–1.14)"
|
|
159
|
+
form r129-3/sec-2.13 {
|
|
160
|
+
file "ambient-light"
|
|
161
|
+
title "Ambient light test"
|
|
162
|
+
conformance_test /conf/effect-tests/ambient-light
|
|
163
|
+
requirements { /req/electronic/light-acoustic-effects }
|
|
164
|
+
required conditional
|
|
165
|
+
applicability {
|
|
166
|
+
measurement_principle: [optical]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
form r129-3/sec-2.14 {
|
|
170
|
+
file "acoustics"
|
|
171
|
+
title "Acoustics test"
|
|
172
|
+
conformance_test /conf/effect-tests/acoustics
|
|
173
|
+
requirements { /req/electronic/light-acoustic-effects }
|
|
174
|
+
required conditional
|
|
175
|
+
applicability {
|
|
176
|
+
measurement_principle: [acoustic]
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
section 5 {
|
|
181
|
+
title "Examinations and object tests"
|
|
182
|
+
description "Construction examination and object characteristic tests (R 129-3, 1.15–1.27)"
|
|
183
|
+
form r129-3/sec-2.27 {
|
|
184
|
+
file "construction-examination"
|
|
185
|
+
title "Construction examination"
|
|
186
|
+
conformance_test /conf/examinations/construction-examination
|
|
187
|
+
requirements { /req/technical/suitability-construction /req/technical/suitability-use /req/technical/suitability-verification }
|
|
188
|
+
required always
|
|
189
|
+
}
|
|
190
|
+
form r129-3/sec-2.15 {
|
|
191
|
+
file "object-shape"
|
|
192
|
+
title "Object shape test"
|
|
193
|
+
conformance_test /conf/examinations/object-characteristics
|
|
194
|
+
requirements { /req/object-limitations/object-shape }
|
|
195
|
+
required always
|
|
196
|
+
}
|
|
197
|
+
form r129-3/sec-2.16 {
|
|
198
|
+
file "surface-characteristics"
|
|
199
|
+
title "Surface characteristics tests"
|
|
200
|
+
conformance_test /conf/examinations/object-characteristics
|
|
201
|
+
requirements { /req/object-limitations/surface-colour-uniform /req/object-limitations/surface-colour-non-uniform /req/object-limitations/surface-reflectivity /req/object-limitations/transparency /req/object-limitations/surface-roughness /req/object-limitations/surface-protrusions }
|
|
202
|
+
required always
|
|
203
|
+
}
|
|
204
|
+
form r129-3/sec-2.25 {
|
|
205
|
+
file "orientation-position"
|
|
206
|
+
title "Orientation and position test"
|
|
207
|
+
conformance_test /conf/examinations/object-characteristics
|
|
208
|
+
requirements { /req/object-limitations/orientation-position }
|
|
209
|
+
required always
|
|
210
|
+
}
|
|
211
|
+
form r129-3/sec-2.26 {
|
|
212
|
+
file "speed-movement"
|
|
213
|
+
title "Speed of movement test"
|
|
214
|
+
conformance_test /conf/examinations/object-characteristics
|
|
215
|
+
requirements { /req/object-limitations/speed-movement }
|
|
216
|
+
required conditional
|
|
217
|
+
applicability {
|
|
218
|
+
instrument_category: [automatic]
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
section 6 {
|
|
223
|
+
title "Summary and checklist"
|
|
224
|
+
description "Summary of results (R 129-3, 1.1) and the type evaluation checklist (R 129-4, 2)"
|
|
225
|
+
form r129-3/sec-2.1 {
|
|
226
|
+
file "summary-results"
|
|
227
|
+
title "Summary of results"
|
|
228
|
+
required always
|
|
229
|
+
}
|
|
230
|
+
form r129-4/sec-11 {
|
|
231
|
+
file "checklist"
|
|
232
|
+
title "Type evaluation checklist"
|
|
233
|
+
required always
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# OIML R 144 — Certificate Template
|
|
2
|
+
# Number format and dimension labels for OIML certificates.
|
|
3
|
+
#
|
|
4
|
+
# TODO.model-content/03: the certificate's characteristic list is NO LONGER
|
|
5
|
+
# hand-maintained here — it is generated from the verified promise set in
|
|
6
|
+
# model/promises.prl (each promise's `certificate` print projection;
|
|
7
|
+
# browser/src/services/certificate.service.ts certificateCharacteristics()).
|
|
8
|
+
#
|
|
9
|
+
# Number format per the OIML-CS certificate convention, e.g.
|
|
10
|
+
# R144/2013-A-EX1-26.01 (scheme A, issuing authority EX1, year 2026, seq 01).
|
|
11
|
+
#
|
|
12
|
+
# dimension_labels.separator: the join for SET-valued dimensions
|
|
13
|
+
# (cardinality: set) — per-value labels join with it (e.g.
|
|
14
|
+
# CO+NO-combined). Overridable per placeholder via the
|
|
15
|
+
# {dimension:separator} pattern syntax.
|
|
16
|
+
certificate_template certificate {
|
|
17
|
+
number_format "{shortName}/{edition}-{scheme}-{authority}-{year2}.{seq}"
|
|
18
|
+
dimension_labels {
|
|
19
|
+
pattern "{measurand_components}-{measuring_principle}"
|
|
20
|
+
separator "+"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
# OIML R 144 — test report skeleton (kernel 1.14.0's test_report_skeleton,
|
|
2
|
+
# TODO.roadmap/40): the R 144 type evaluation report structure — sections
|
|
3
|
+
# and the form inventory (C140 resolves the entries against the forms
|
|
4
|
+
# register; required/applicability carry the inclusion rules).
|
|
5
|
+
test_report_skeleton r144-3/test-report {
|
|
6
|
+
title "OIML R 144 Type Evaluation Test Report"
|
|
7
|
+
description "The complete test report for an OIML R 144 gas analytical system type evaluation, structured according to R 144-3: administrative information (3.1–3.6), visual and technical examination (3.7), conclusion of the tests (3.8), general conclusion (3.9) and responsible persons (3.10)."
|
|
8
|
+
section 3.1 {
|
|
9
|
+
title "Administrative"
|
|
10
|
+
description "Laboratory, location, manufacturer, applicant and type identification (R 144-3, 3.1–3.6)"
|
|
11
|
+
form r144-3/sec-3.1 {
|
|
12
|
+
file "03-01-laboratory-info"
|
|
13
|
+
title "Testing Laboratory"
|
|
14
|
+
required always
|
|
15
|
+
}
|
|
16
|
+
form r144-3/sec-3.2 {
|
|
17
|
+
file "03-02-test-location"
|
|
18
|
+
title "Test Location"
|
|
19
|
+
required always
|
|
20
|
+
}
|
|
21
|
+
form r144-3/sec-3.3 {
|
|
22
|
+
file "03-03-manufacturer-info"
|
|
23
|
+
title "Manufacturer"
|
|
24
|
+
required always
|
|
25
|
+
}
|
|
26
|
+
form r144-3/sec-3.4 {
|
|
27
|
+
file "03-04-applicant-info"
|
|
28
|
+
title "Applicant"
|
|
29
|
+
required always
|
|
30
|
+
}
|
|
31
|
+
form r144-3/sec-3.5 {
|
|
32
|
+
file "03-05-type-identification"
|
|
33
|
+
title "Identification of the Type Tested"
|
|
34
|
+
required always
|
|
35
|
+
}
|
|
36
|
+
form r144-3/sec-3.6 {
|
|
37
|
+
file "03-06-type-composition"
|
|
38
|
+
title "Composition of the Type Tested"
|
|
39
|
+
required always
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
section 3.2 {
|
|
43
|
+
title "Examinations"
|
|
44
|
+
description "Documentation review (R 144-1, 7.1.1) and visual/technical examination (R 144-3, 3.7)"
|
|
45
|
+
form r144-3/test-documentation-examination {
|
|
46
|
+
file "documentation-examination"
|
|
47
|
+
title "Documentation Examination"
|
|
48
|
+
conformance_test /conf/examinations/documentation
|
|
49
|
+
requirements { /req/technical/type-evaluation-documentation /req/technical/operating-manual }
|
|
50
|
+
required always
|
|
51
|
+
}
|
|
52
|
+
form r144-3/sec-3.7 {
|
|
53
|
+
file "03-07-visual-examination"
|
|
54
|
+
title "Visual and Technical Examination"
|
|
55
|
+
conformance_test /conf/examinations/visual-examination
|
|
56
|
+
required always
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
section 3.3 {
|
|
60
|
+
title "Performance Tests"
|
|
61
|
+
description "Metrological performance, influence quantity and disturbance tests (R 144-2, 1.2–1.22) feeding the R 144-3, 3.8 conclusion table"
|
|
62
|
+
form r144-3/test-error-determination {
|
|
63
|
+
file "error-determination"
|
|
64
|
+
title "Error Determination (Intrinsic Error)"
|
|
65
|
+
conformance_test /conf/performance-tests/error-determination
|
|
66
|
+
requirements { /req/metrological/mpe-intrinsic /req/metrological/measuring-range }
|
|
67
|
+
required always
|
|
68
|
+
}
|
|
69
|
+
form r144-3/test-repeatability {
|
|
70
|
+
file "repeatability-test"
|
|
71
|
+
title "Repeatability Test"
|
|
72
|
+
conformance_test /conf/performance-tests/repeatability-test
|
|
73
|
+
requirements { /req/metrological/repeatability }
|
|
74
|
+
required always
|
|
75
|
+
}
|
|
76
|
+
form r144-3/test-drift {
|
|
77
|
+
file "drift-test"
|
|
78
|
+
title "Stability with Time (Drift Test)"
|
|
79
|
+
conformance_test /conf/performance-tests/drift-test
|
|
80
|
+
requirements { /req/metrological/drift }
|
|
81
|
+
required conditional
|
|
82
|
+
applicability {
|
|
83
|
+
adjustment_means: [semi-automatic, automatic]
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
form r144-3/test-cross-sensitivity {
|
|
87
|
+
file "cross-sensitivity-test"
|
|
88
|
+
title "Cross Sensitivity Test"
|
|
89
|
+
conformance_test /conf/performance-tests/cross-sensitivity-test
|
|
90
|
+
requirements { /req/metrological/cross-sensitivity }
|
|
91
|
+
required always
|
|
92
|
+
}
|
|
93
|
+
form r144-3/test-dry-heat {
|
|
94
|
+
file "dry-heat-test"
|
|
95
|
+
title "Dry Heat Test"
|
|
96
|
+
conformance_test /conf/performance-tests/dry-heat
|
|
97
|
+
requirements { /req/metrological/rated-conditions /req/metrological/mpe-operating }
|
|
98
|
+
required always
|
|
99
|
+
}
|
|
100
|
+
form r144-3/test-cold {
|
|
101
|
+
file "cold-test"
|
|
102
|
+
title "Cold Test"
|
|
103
|
+
conformance_test /conf/performance-tests/cold
|
|
104
|
+
requirements { /req/metrological/rated-conditions /req/metrological/mpe-operating }
|
|
105
|
+
required always
|
|
106
|
+
}
|
|
107
|
+
form r144-3/test-damp-heat {
|
|
108
|
+
file "damp-heat-test"
|
|
109
|
+
title "Damp Heat Test (Steady State)"
|
|
110
|
+
conformance_test /conf/performance-tests/damp-heat
|
|
111
|
+
requirements { /req/metrological/rated-conditions /req/metrological/mpe-operating }
|
|
112
|
+
required always
|
|
113
|
+
}
|
|
114
|
+
form r144-3/test-ambient-pressure {
|
|
115
|
+
file "ambient-pressure-test"
|
|
116
|
+
title "Ambient Pressure Test"
|
|
117
|
+
conformance_test /conf/performance-tests/ambient-pressure
|
|
118
|
+
requirements { /req/metrological/rated-conditions /req/metrological/mpe-operating }
|
|
119
|
+
required always
|
|
120
|
+
}
|
|
121
|
+
form r144-3/test-power-supply {
|
|
122
|
+
file "power-supply-test"
|
|
123
|
+
title "Power Supply Variation Test"
|
|
124
|
+
conformance_test /conf/performance-tests/power-supply
|
|
125
|
+
requirements { /req/metrological/rated-conditions /req/metrological/mpe-operating }
|
|
126
|
+
required always
|
|
127
|
+
}
|
|
128
|
+
form r144-3/test-vibration {
|
|
129
|
+
file "vibration-test"
|
|
130
|
+
title "Mechanical Vibration Test"
|
|
131
|
+
conformance_test /conf/performance-tests/vibration-test
|
|
132
|
+
requirements { /req/metrological/vibration }
|
|
133
|
+
required always
|
|
134
|
+
}
|
|
135
|
+
form r144-3/test-shock {
|
|
136
|
+
file "shock-test"
|
|
137
|
+
title "Mechanical Shock Test"
|
|
138
|
+
conformance_test /conf/performance-tests/shock-test
|
|
139
|
+
requirements { /req/metrological/disturbances }
|
|
140
|
+
required always
|
|
141
|
+
}
|
|
142
|
+
form r144-3/test-power-reduction {
|
|
143
|
+
file "power-reduction-test"
|
|
144
|
+
title "Short Time Power Reduction Test"
|
|
145
|
+
conformance_test /conf/performance-tests/power-reduction
|
|
146
|
+
requirements { /req/metrological/disturbances }
|
|
147
|
+
required always
|
|
148
|
+
}
|
|
149
|
+
form r144-3/test-bursts-mains {
|
|
150
|
+
file "bursts-mains-test"
|
|
151
|
+
title "Electrical Burst Test (AC/DC Mains)"
|
|
152
|
+
conformance_test /conf/performance-tests/burst-mains
|
|
153
|
+
requirements { /req/metrological/disturbances }
|
|
154
|
+
required always
|
|
155
|
+
}
|
|
156
|
+
form r144-3/test-bursts-signal {
|
|
157
|
+
file "bursts-signal-test"
|
|
158
|
+
title "Electrical Burst Test (Signal, Data and Control Lines)"
|
|
159
|
+
conformance_test /conf/performance-tests/burst-signal
|
|
160
|
+
requirements { /req/metrological/disturbances }
|
|
161
|
+
required conditional
|
|
162
|
+
applicability {
|
|
163
|
+
capabilities: [data-interface]
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
form r144-3/test-surge {
|
|
167
|
+
file "surge-test"
|
|
168
|
+
title "Surge Test (Signal, Data and Control Lines)"
|
|
169
|
+
conformance_test /conf/performance-tests/surge
|
|
170
|
+
requirements { /req/metrological/disturbances }
|
|
171
|
+
required conditional
|
|
172
|
+
applicability {
|
|
173
|
+
capabilities: [data-interface]
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
form r144-3/test-esd {
|
|
177
|
+
file "esd-test"
|
|
178
|
+
title "Electrostatic Discharge Test"
|
|
179
|
+
conformance_test /conf/performance-tests/esd
|
|
180
|
+
requirements { /req/metrological/disturbances }
|
|
181
|
+
required always
|
|
182
|
+
}
|
|
183
|
+
form r144-3/test-rf-emf {
|
|
184
|
+
file "rf-emf-test"
|
|
185
|
+
title "Radiated RF Electromagnetic Field Test"
|
|
186
|
+
conformance_test /conf/performance-tests/rf-emf
|
|
187
|
+
requirements { /req/metrological/disturbances }
|
|
188
|
+
required always
|
|
189
|
+
}
|
|
190
|
+
form r144-3/test-low-battery {
|
|
191
|
+
file "low-battery-test"
|
|
192
|
+
title "Low Battery Voltage Test"
|
|
193
|
+
conformance_test /conf/performance-tests/low-battery
|
|
194
|
+
requirements { /req/metrological/rated-conditions }
|
|
195
|
+
required conditional
|
|
196
|
+
applicability {
|
|
197
|
+
power_supply: [battery, ac-and-battery]
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
form r144-3/test-warm-up-time {
|
|
201
|
+
file "warm-up-time-test"
|
|
202
|
+
title "Warm-up Time Test"
|
|
203
|
+
conformance_test /conf/performance-tests/warm-up-test
|
|
204
|
+
requirements { /req/metrological/warm-up-time }
|
|
205
|
+
required always
|
|
206
|
+
}
|
|
207
|
+
form r144-3/test-response-time {
|
|
208
|
+
file "response-time-test"
|
|
209
|
+
title "Response Time Test"
|
|
210
|
+
conformance_test /conf/performance-tests/response-time-test
|
|
211
|
+
requirements { /req/metrological/response-time }
|
|
212
|
+
required always
|
|
213
|
+
}
|
|
214
|
+
form r144-3/test-flow-spillover {
|
|
215
|
+
file "flow-spillover-test"
|
|
216
|
+
title "Spillover of Gas Flow Rates Test"
|
|
217
|
+
conformance_test /conf/performance-tests/flow-spillover
|
|
218
|
+
requirements { /req/technical/gas-flow-monitoring /req/technical/gas-flow-meter }
|
|
219
|
+
required conditional
|
|
220
|
+
applicability {
|
|
221
|
+
sampling_approach: [extractive]
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
form r144-3/test-leakproofness {
|
|
225
|
+
file "leakproofness-test"
|
|
226
|
+
title "Leakproofness Test"
|
|
227
|
+
conformance_test /conf/performance-tests/leakproofness
|
|
228
|
+
requirements { /req/technical/air-tightness }
|
|
229
|
+
required conditional
|
|
230
|
+
applicability {
|
|
231
|
+
sampling_approach: [extractive]
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
section 3.4 {
|
|
236
|
+
title "Conclusions"
|
|
237
|
+
description "Conclusion of the tests (3.8), general conclusion (3.9), responsible persons (3.10)"
|
|
238
|
+
form r144-3/sec-3.8 {
|
|
239
|
+
file "03-08-test-conclusions"
|
|
240
|
+
title "Conclusion of the Tests"
|
|
241
|
+
required always
|
|
242
|
+
}
|
|
243
|
+
form r144-3/sec-3.9 {
|
|
244
|
+
file "03-09-general-conclusion"
|
|
245
|
+
title "General Conclusion"
|
|
246
|
+
required always
|
|
247
|
+
}
|
|
248
|
+
form r144-3/sec-3.10 {
|
|
249
|
+
file "03-10-responsible-persons"
|
|
250
|
+
title "Person(s) Responsible for the Testing"
|
|
251
|
+
required always
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
@@ -48,3 +48,9 @@ allowlist_entry {
|
|
|
48
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
49
|
audit_ref "TODO.roadmap/40"
|
|
50
50
|
}
|
|
51
|
+
allowlist_entry {
|
|
52
|
+
rule C136
|
|
53
|
+
match "certificate_template certificate: dimension_labels placeholder \"{n_lc_thousands}\" is not a declared classification dimension (certificate-template-references)"
|
|
54
|
+
reason "Renderer-synthetic label placeholder: generateClassificationLabel computes n_lc_thousands = floor(n_lc / 1000) into the pattern context (the thousands-scale certificate designation, e.g. \"C3\" over n_lc = 3000); no classification dimension exists to declare — the value derives from the n_lc parameter at render time, never drift."
|
|
55
|
+
audit_ref "TODO.roadmap/40"
|
|
56
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# OIML R 60 — Certificate Template
|
|
2
|
+
# Number format and dimension labels for OIML certificates.
|
|
3
|
+
#
|
|
4
|
+
# TODO.roadmap/08: the certificate's characteristic list is NO LONGER
|
|
5
|
+
# hand-maintained here — it is generated from the verified promise set in
|
|
6
|
+
# model/promises.prl (each promise's `certificate` print projection;
|
|
7
|
+
# browser/src/services/certificate.service.ts certificateCharacteristics()).
|
|
8
|
+
# The byte-equal render over the seeded flows is proven by
|
|
9
|
+
# src/__tests__/certificate-promises-snapshot.test.ts against
|
|
10
|
+
# analysis/certificate-render-baseline-oiml-r60.json.
|
|
11
|
+
#
|
|
12
|
+
# R 60-4 Annex B (normative): the certificate shall be supplemented with
|
|
13
|
+
# Model designation, E_max, accuracy class, n_LC, v_min, p_LC; Table B.1
|
|
14
|
+
# technical data may be provided on additional pages.
|
|
15
|
+
#
|
|
16
|
+
# TODO.adoption/11 — the anr_section labels the certificate's Additional
|
|
17
|
+
# National Requirements section: the per-country coverage recorded at
|
|
18
|
+
# issuance (Certificate.anr_coverage, snapshotted from the evaluation
|
|
19
|
+
# report's anr_compliance). The section ALWAYS renders when the
|
|
20
|
+
# application targeted ANR countries: covered countries name their
|
|
21
|
+
# evidence, bypassed ones carry the recorded reason — never a silent gap
|
|
22
|
+
# (PD-05 §5.4.2/§5.6.3).
|
|
23
|
+
#
|
|
24
|
+
# The dimension_labels pattern's {n_lc_thousands} placeholder is
|
|
25
|
+
# RENDERER-SYNTHETIC (floor(n_lc / 1000), certificate.service.ts
|
|
26
|
+
# generateClassificationLabel) — not a declared classification dimension;
|
|
27
|
+
# C136 fires on it, a KNOWN allowlist entry (never drift).
|
|
28
|
+
certificate_template certificate {
|
|
29
|
+
number_format "{shortName}/{edition}-{scheme}-{authority}-{year2}.{seq}"
|
|
30
|
+
dimension_labels {
|
|
31
|
+
pattern "{accuracy_class}{n_lc_thousands}"
|
|
32
|
+
}
|
|
33
|
+
anr_section {
|
|
34
|
+
title "Additional National Requirements"
|
|
35
|
+
covered_label "Evaluated"
|
|
36
|
+
not_evaluated_label "Not evaluated in this evaluation"
|
|
37
|
+
pending_label "Pending evaluation"
|
|
38
|
+
none_targeted_note "No additional national requirements were targeted by the application."
|
|
39
|
+
}
|
|
40
|
+
}
|