qesuite 1.0.25 → 1.0.26
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/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
- package/versions/1_0_26.md +1 -0
package/dist/index.js
CHANGED
|
@@ -3428,8 +3428,8 @@ function G1(data, tolerance, referenceValue) {
|
|
|
3428
3428
|
bias: Bias,
|
|
3429
3429
|
t: T,
|
|
3430
3430
|
p: P,
|
|
3431
|
-
Var_Rpt: K / Cg,
|
|
3432
|
-
Var_RptBias: K / Cgk
|
|
3431
|
+
Var_Rpt: K / Cg / 100,
|
|
3432
|
+
Var_RptBias: K / Cgk / 100
|
|
3433
3433
|
};
|
|
3434
3434
|
}
|
|
3435
3435
|
function GageEvaluation(VarianceComponents2, tolerance) {
|
package/dist/index.mjs
CHANGED
|
@@ -3341,8 +3341,8 @@ function G1(data, tolerance, referenceValue) {
|
|
|
3341
3341
|
bias: Bias,
|
|
3342
3342
|
t: T,
|
|
3343
3343
|
p: P,
|
|
3344
|
-
Var_Rpt: K / Cg,
|
|
3345
|
-
Var_RptBias: K / Cgk
|
|
3344
|
+
Var_Rpt: K / Cg / 100,
|
|
3345
|
+
Var_RptBias: K / Cgk / 100
|
|
3346
3346
|
};
|
|
3347
3347
|
}
|
|
3348
3348
|
function GageEvaluation(VarianceComponents2, tolerance) {
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Changed G1().Var \_Rpt && \_RptBias to output as decimals not percents so formulas are now divided by 100 to make it easier to format as percents in other software.
|