Click or drag to resize
CVVUQC Method
Qualit control on deviation of data from norm in a VV

Available since Oasis montaj version: 5.0.0
License: Available to anyone with an Oasis Montaj license.  

Namespace: Geosoft.Desktop.GXNet
Assembly: geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll)
Notes
This function tests data in input VV against two separate criteria. Each element of the output VV will have one of the following indicators: Indicator Meaning --------- -------- 0 Input data passed both tests 1 The input data and is greater than the nominal value plus maximum tolerance/deviation (Criterion #1) 2 The input data over a specified distance is greater than the nominal value plus allowed tolerance (Criterion #2) 3 The input data failed on above two tests -1 The input data and is less than the nominal value minus maximum tolerance (Criterion #1) -2 The input data over a specified distance is less than the nominal value minus allowed tolerance (Criterion #2) -3 The input data failed on above two tests
Syntax
public static void QC(
	CVV oVV1,
	CVV oVV2,
	CVV oVV3,
	double d4,
	double d5,
	double d6,
	double d7,
	int i8
)

Parameters

oVV1
Type: GeoEngine.Core.GXNetCVV
input VV on which to apply quality control Required in GS_DOUBLE or GS_FLOAT
oVV2
Type: GeoEngine.Core.GXNetCVV
distance VV (NULL if criterion #2 does not apply). In GS_DOUBLE or GS_FLOAT
oVV3
Type: GeoEngine.Core.GXNetCVV
output flag VV with result 0,1,2,3,-1,-2,-3. Required in GS_BYTE
d4
Type: SystemDouble
nominal reading (required, must not be GS_R8DM)
d5
Type: SystemDouble
maximum tolerance/deviation applied to a single reading (criterion #1). GS_R8DM if criterion #1 does not apply. Otherwise, must be positive value including 0.0
d6
Type: SystemDouble
allowed tolerance/deviation over a given distance (next parameter) (criterion #2). GS_R8DM if criterion #2 does not apply. Otherwise, must be positive value including 0.0
d7
Type: SystemDouble
the specified distance. GS_R8DM if criterion #2 does not apply. Otherwise, must be positive value excluding 0.0
i8
Type: SystemInt32
See QC_CRITERIONConstant
See Also