-
Notifications
You must be signed in to change notification settings - Fork 5
/
Construction.xsd
4631 lines (4613 loc) · 247 KB
/
Construction.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:diggs="http://diggsml.org/schemas/2.6"
xmlns:diggs_geo="http://diggsml.org/schemas/2.6/geotechnical"
xmlns:eml="http://www.energistics.org/energyml/data/commonv2"
xmlns:witsml="http://www.energistics.org/energyml/data/witsmlv2"
xmlns:g3.3="http://www.opengis.net/gml/3.3/ce" xmlns:glr="http://www.opengis.net/gml/3.3/lr"
xmlns:glrov="http://www.opengis.net/gml/3.3/lrov"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
targetNamespace="http://diggsml.org/schemas/2.6" version="2.6" elementFormDefault="qualified"
vc:maxVersion="1.1" vc:minVersion="1.0">
<import namespace="http://www.opengis.net/gml/3.2" schemaLocation="gml3.2Profile_diggs.xsd"/>
<import namespace="http://diggsml.org/schemas/2.6/geotechnical" schemaLocation="Diggs_geo.xsd"/>
<import namespace="http://www.energistics.org/energyml/data/commonv2"
schemaLocation="witsml/2.0/data/common/v2.1/xsd_schemas/EmlAllObjects.xsd"/>
<import namespace="http://www.energistics.org/energyml/data/witsmlv2"
schemaLocation="witsml/2.0/data/witsml/v2.0/xsd_schemas/WitsmlAllObjects.xsd"/>
<element abstract="true" name="AbstractProgramDesign" type="diggs:AbstractProgramDesignType"/>
<complexType abstract="false" name="AbstractProgramDesignPropertyType">
<sequence>
<element ref="diggs:AbstractProgramDesign"/>
</sequence>
</complexType>
<complexType abstract="true" name="AbstractProgramDesignType">
<complexContent>
<extension base="diggs:AbstractFeatureType"/>
</complexContent>
</complexType>
<element abstract="true" name="AbstractProgramSpecificaton"
type="diggs:AbstractProgramSpecificationType"/>
<complexType abstract="false" name="AbstractProgramSpecificationPropertyType">
<sequence>
<element ref="diggs:AbstractProgramSpecificaton"/>
</sequence>
</complexType>
<complexType abstract="true" name="AbstractProgramSpecificationType">
<complexContent>
<extension base="diggs:AbstractFeatureType"/>
</complexContent>
</complexType>
<element abstract="true" name="AbstractMaterialTestProcedure"
substitutionGroup="diggs:AbstractTestProcedure"
type="diggs:AbstractMaterialTestlProcedureType">
<annotation>
<documentation>Base type for all test procedures performed only on manufactured samples
-eg. those that are created by aggregation of other samples or materials and where
the sample has no location relevance. Material test procedures must reference or
describe the samples and/or specimens upon which the test is performed. This
category was developed for test procedures developed for characterizing grout
samples but could be used for other types of samples where the results of the
procedure relate to the characteristics of the sample only, and does not relate to
the properties of a geographic feature of interest</documentation>
</annotation>
</element>
<complexType name="AbstractMaterialTestlProcedureType" abstract="true">
<complexContent>
<extension base="diggs:AbstractTestProcedureType">
<sequence>
<element minOccurs="0" name="testEvent"
type="diggs:LaboratoryTestEventPropertyType"/>
<choice>
<element maxOccurs="unbounded" minOccurs="1" ref="diggs:sampleRef"/>
<element maxOccurs="unbounded" minOccurs="1" name="specimen"
type="diggs:SpecimenPropertyType"/>
</choice>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="AbstractMaterialTestProcedurePropertyType">
<sequence>
<element ref="diggs:AbstractMaterialTestProcedure"/>
</sequence>
<attributeGroup ref="gml:AssociationAttributeGroup"/>
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
</complexType>
<element name="MaterialTest" substitutionGroup="diggs:AbstractMeasurement"
type="diggs:MaterialTestType"/>
<element name="MaterialTestResult" substitutionGroup="diggs:AbstractObject"
type="diggs:MaterialTestResultType"/>
<complexType name="MaterialTestResultType">
<complexContent>
<extension base="diggs:AbstractObjectType">
<sequence>
<element minOccurs="1" ref="diggs:results"/>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="MaterialTestResultPropertyType">
<sequence>
<element minOccurs="1" ref="diggs:MaterialTestResult"/>
</sequence>
</complexType>
<complexType name="MaterialTestType">
<complexContent>
<extension base="diggs:AbstractMeasurementType">
<sequence>
<element minOccurs="0" name="samplingTime"
type="diggs:TimeIntervalOrInstantPropertyType">
<annotation>
<documentation>Describes the time that the result applies to the
property of the investigation target. This is often the time of
interaction by a sampling activity or measurement procedure with a
real-world feature. </documentation>
</annotation>
</element>
<element minOccurs="0" name="resultTime"
type="diggs:TimeIntervalOrInstantPropertyType">
<annotation>
<documentation>Describes the time when the result became available,
typically when the procedure associated with the observation was
completed. For some observations this is identical to the
samplingTime. However, there are important cases where they differ.
Example: Where a measurement is made on a specimen in a
laboratory,the samplingTime should record the time the specimen was
retrieved from its host, while the resultTime should record the time
the laboratory procedure was applied. Example: Where monitoring
observation results are post-processed, the resultTime is the
post-processing time, while the samplingTime preserves the time of
initial interaction with the world. </documentation>
</annotation>
</element>
<element minOccurs="0" name="validTime"
type="diggs:TimeIntervalOrInstantPropertyType">
<annotation>
<documentation>Describes the time period during which the result is
intended to be used.</documentation>
</annotation>
</element>
<element name="outcome" type="diggs:MaterialTestResultPropertyType">
<annotation>
<documentation>A property that contains the information about what
properties are being measured, the results of the measurement, and
the associated locations that the measurement results relate
to.</documentation>
</annotation>
</element>
<element maxOccurs="unbounded" minOccurs="1" name="procedure"
type="diggs:TestProcedurePropertyType"/>
</sequence>
</extension>
</complexContent>
</complexType>
<element name="Admixture" type="diggs:GroutComponentCharacteristicsType">
<annotation>
<documentation>An object containing properties of the admixture component of a grout
mix, including the supplier, specific gravity, type, volume, and weight of the
component used.</documentation>
</annotation>
</element>
<complexType name="AdmixturePropertyType">
<sequence>
<element ref="diggs:Admixture">
<annotation>
<documentation>An object that describes the type, volume, and weight of
admixture used in the mix.</documentation>
</annotation>
</element>
</sequence>
</complexType>
<element name="Binder" type="diggs:GroutComponentCharacteristicsType">
<annotation>
<documentation>An object containing properties of the binder component of a grout mix,
including the supplier, specific gravity, type, volume, and weight of the component
used. Binder here refers to binding components of a grout mix exclusive of cement,
such as fly ash or lime.</documentation>
</annotation>
</element>
<complexType name="BinderPropertyType">
<sequence>
<element ref="diggs:Binder">
<annotation>
<documentation>An object that describes the type, volume, and weight of binder
used in the mix.</documentation>
</annotation>
</element>
</sequence>
</complexType>
<element name="BleedTest" type="diggs:BleedTestType"
substitutionGroup="diggs:AbstractMaterialTestProcedure">
<annotation>
<documentation>A test to measure the degree to which solid particles from a grout mix
separates from the fluid, resulting in a layer of clear water at the surface of the
grout..</documentation>
</annotation>
</element>
<complexType name="BleedTestType">
<complexContent>
<extension base="diggs:AbstractMaterialTestlProcedureType"/>
</complexContent>
</complexType>
<element name="Cement" type="diggs:GroutComponentCharacteristicsType">
<annotation>
<documentation>An object containing properties of the cement component of a grout mix,
including the supplier, specific gravity, type, volume, and weight of the component
used.</documentation>
</annotation>
</element>
<complexType name="CementPropertyType">
<sequence>
<element ref="diggs:Cement"/>
</sequence>
</complexType>
<element name="Chemical" type="diggs:GroutComponentCharacteristicsType">
<annotation>
<documentation>An object that describes the type, volume, and weight of chemical used in
the mix.</documentation>
</annotation>
</element>
<complexType name="ChemicalPropertyType">
<sequence>
<element ref="diggs:Chemical"/>
</sequence>
</complexType>
<element name="DesignGroutMix" substitutionGroup="diggs:AbstractProgramDesign"
type="diggs:DesignGroutMixType">
<annotation>
<documentation>An object that contains properites describing the characteristics of a
batch of grout. This object optionally can reference a DesignGroutMix object defined
within the GroutingProgram feature</documentation>
</annotation>
</element>
<complexType name="DesignGroutMixType">
<complexContent>
<extension base="diggs:AbstractProgramDesignType">
<sequence>
<element minOccurs="0" ref="diggs:groutSpecificationRef">
<annotation>
<appinfo>diggs:GroutSpecification</appinfo>
<documentation>Pointer to the GroutSpecification object that this grout
mix is targeted to.</documentation>
</annotation>
</element>
<element minOccurs="0" name="placementDescription" type="diggs:DiggsStringType">
<annotation>
<documentation>Description of general location of grout mix on project
site.</documentation>
</annotation>
</element>
<choice>
<element minOccurs="1" name="trialGroutBatchRef"
type="diggs:FeatureReferenceType">
<annotation>
<appinfo>diggs:TrialGroutBatch</appinfo>
<documentation>Pointer to the trial grout batch that represents this
grout design.</documentation>
</annotation>
</element>
<sequence>
<element minOccurs="0" name="admixture"
type="diggs:AdmixturePropertyType" maxOccurs="unbounded">
<annotation>
<documentation>Property containing information on admixtures
used in mix </documentation>
</annotation>
</element>
<element minOccurs="0" name="binder" type="diggs:BinderPropertyType"
maxOccurs="unbounded">
<annotation>
<documentation>Property containing information on binders used
in mix; includes fly ash, lime, etc., but excluding cement,
which is recorded in its own component property
</documentation>
</annotation>
</element>
<element minOccurs="0" name="cement" type="diggs:CementPropertyType"
maxOccurs="unbounded">
<annotation>
<documentation>Property containing information on cement used in
the grout mix </documentation>
</annotation>
</element>
<element minOccurs="0" name="chemical" type="diggs:ChemicalPropertyType"
maxOccurs="unbounded">
<annotation>
<documentation>Property containing information on cement used in
the grout mix </documentation>
</annotation>
</element>
<element minOccurs="0" name="filler" type="diggs:FillerPropertyType"
maxOccurs="unbounded">
<annotation>
<documentation>Property containing information on fillers used
in mix. Aggregate is a type of filler. </documentation>
</annotation>
</element>
<element minOccurs="0" name="theoreticalYield" type="eml:VolumeMeasure">
<annotation>
<documentation>Theoretical volume of a batch of grout produced
by following the design mix formula.</documentation>
</annotation>
</element>
<element minOccurs="0" name="typeMix" type="gml:CodeType">
<annotation>
<documentation>Type of grout mix; preferably from a controlled
list, eg. cement, chemical.</documentation>
<documentation>Should this be an enum if only a few common
choices?</documentation>
</annotation>
</element>
<element minOccurs="0" name="volumeWater" type="eml:VolumeMeasureExt">
<annotation>
<documentation>Volume of water used.</documentation>
</annotation>
</element>
<element minOccurs="0" name="waterCementRatio"
type="eml:MassPerMassMeasure">
<annotation>
<documentation>Weight of water to weight of cement used for this
grout </documentation>
</annotation>
</element>
<element minOccurs="0" name="wtCementPerGalH2O" type="eml:ForceMeasure">
<annotation>
<documentation>Weight of cement used per gallon of
water.</documentation>
</annotation>
</element>
</sequence>
</choice>
<element minOccurs="0" name="bleedDesign" type="eml:VolumePerVolumeMeasure">
<annotation>
<documentation>Design value for grout bleed</documentation>
</annotation>
</element>
<element minOccurs="0" name="filtrateVolumeDesign" type="eml:VolumeMeasure">
<annotation>
<documentation>Design filtrate volume value from pressure filtration
test.</documentation>
</annotation>
</element>
<element minOccurs="0" name="gelTimeDesign" type="eml:TimeMeasure">
<annotation>
<documentation>Design value for grout gel time.</documentation>
</annotation>
</element>
<element minOccurs="0" name="marshFunnelTimeDesign" type="eml:TimeMeasure">
<annotation>
<documentation>Design value for grout shrinkage.</documentation>
</annotation>
</element>
<element minOccurs="0" name="mudBalanceDensityDesign"
type="diggs:DensityOrUnitWeightMeasureType">
<annotation>
<documentation>Design value for grout unit weight.</documentation>
</annotation>
</element>
<element minOccurs="0" name="pressureFiltrationValueDesign"
type="diggs:ReciprocalSquareRootTimeMeasureType">
<annotation>
<documentation>Design pressure filtration value from pressure filtration
test.</documentation>
</annotation>
</element>
<element minOccurs="0" name="shrinkageDesign" type="eml:VolumePerVolumeMeasure">
<annotation>
<documentation>Design value for grout shrinkage.</documentation>
</annotation>
</element>
<element minOccurs="0" name="slumpDesign" type="eml:LengthMeasure">
<annotation>
<documentation>Design value for grout slump.</documentation>
</annotation>
</element>
<element minOccurs="0" name="specificGravityMixDesign"
type="diggs:SpecificGravityMeasureType">
<annotation>
<documentation>Design value for grout specific gravity.</documentation>
</annotation>
</element>
<element minOccurs="0" name="strengthDesign" type="eml:PressureMeasure">
<annotation>
<documentation>Design value for grout unconfined compressive strength.
</documentation>
</annotation>
</element>
<element minOccurs="0" name="syneresisDesign"
type="diggs:VolumeOrMassLossMeasure">
<annotation>
<documentation>Design value for grout syneresis.</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="DesignGroutMixPropertyType">
<sequence>
<element ref="diggs:DesignGroutMix"/>
</sequence>
</complexType>
<complexType name="ProgramDesignPropertyType">
<sequence>
<element ref="diggs:AbstractProgramDesign"/>
</sequence>
</complexType>
<complexType name="ProgramSpecificationPropertyType">
<sequence>
<element ref="diggs:AbstractProgramSpecificaton"/>
</sequence>
</complexType>
<complexType name="GroutingProgramDesignPropertyType">
<sequence>
<element ref="diggs:AbstractProgramDesign"/>
</sequence>
</complexType>
<complexType name="GroutingProgramSpecificationPropertyType">
<sequence>
<element ref="diggs:AbstractProgramSpecificaton"/>
</sequence>
</complexType>
<element name="GroutGradingSpecification" type="diggs:GroutGradingSpecificationType"/>
<complexType name="GroutGradingSpecificationType">
<complexContent>
<extension base="diggs_geo:SieveAnalysisType"> </extension>
</complexContent>
</complexType>
<complexType name="GroutGradingSpecificationPropertyType">
<sequence>
<element ref="diggs:GroutGradingSpecification"/>
</sequence>
</complexType>
<element name="GroutingPerformanceSpecification"
type="diggs:GroutingPerformanceSpecificationType"
substitutionGroup="diggs:AbstractProgramSpecificaton"/>
<complexType name="GroutingPerformanceSpecificationType">
<complexContent>
<extension base="diggs:AbstractProgramSpecificationType">
<sequence>
<element minOccurs="0" name="groutedSoilPermeabilityAverage"
type="eml:PermeabilityRockMeasure">
<annotation>
<documentation>Minimum average permeability allowable for all post-grout
tests.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilPermeability90Percent"
type="eml:PermeabilityRockMeasure">
<annotation>
<documentation>The highest permeability limit that 90% of in-situ and/or
sample tests must fall at or below.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilPermeabilityMaximum"
type="eml:PermeabilityRockMeasure">
<annotation>
<documentation>Maximum allowable permeablilty measured from a sample or
in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilUnconfinedCompressiveStrengthAverage"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum average strength allowed for all grouted samples
or measured in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilUnconfinedCompressiveStrength90Percent"
type="eml:PressureMeasure">
<annotation>
<documentation>The minimum strength that 90% of grouted samples or
measurements in-situ must fall at or above.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilUnconfinedCompressiveStrengthMinimum"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum allowable strength of grouted samples or
measurements in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilConfinedCompressiveStrengthAverage"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum average strength allowed for all grouted samples
or measured in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilConfinedCompressiveStrength90Percent"
type="eml:PressureMeasure">
<annotation>
<documentation>The minimum strength that 90% of grouted samples or
measurements in-situ must fall at or above.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilConfinedCompressiveStrengthMinimum"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum allowable strength of grouted samples or
measurements in-situ</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilShearStrengthAverage"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum average strength allowed for all grouted samples
or measured in-situ</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilShearStrength90Percent"
type="eml:PressureMeasure">
<annotation>
<documentation>The minimum strength that 90% of grouted samples or
measurements in-situ must fall at or above. </documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilShearStrengthMinimum"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum allowable strength of grouted samples or
measurements in-situ</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilCompressibilityAverage"
type="eml:ReciprocalPressureMeasureExt">
<annotation>
<documentation>Maximum average compressibility allowed for all grouted
samples or measured in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedCompressibility90Percent"
type="eml:ReciprocalPressureMeasureExt">
<annotation>
<documentation>The maximum compressibility that 90% of grouted samples
or measurements in-situ must fall at or below.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilCompressibilityMaximum"
type="eml:ReciprocalPressureMeasureExt">
<annotation>
<documentation>Maximum allowable compressiblity of grouted samples or
measurements in-situ</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSPTAverage"
type="eml:DimensionlessMeasure">
<annotation>
<documentation>Minimum average SPT N value allowed for all measurements
in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSPT90Percent"
type="eml:DimensionlessMeasure">
<annotation>
<documentation>The minimum SPT N value that 90% of measurements in-situ
must meet or exceed.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSPTMinimum"
type="eml:DimensionlessMeasure">
<annotation>
<documentation>Minimum allowable SPT N value allowed for all
measurements in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilCPTTipAverage"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum average CPT tip value allowed where measured
in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilCPTTip90Percent"
type="eml:PressureMeasure">
<annotation>
<documentation>The minimum CPT tip value that 90% of measurements
in-situ must meet or exceed.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilCPTTipMinimum"
type="eml:PressureMeasure">
<annotation>
<documentation>Minimum allowable CPT tip value measured
in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilDensityAverage"
type="diggs:DensityOrUnitWeightMeasureType">
<annotation>
<documentation>Minimum average density allowed for all grouted samples
or measured in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilDensity90Percent"
type="diggs:DensityOrUnitWeightMeasureType">
<annotation>
<documentation>The minimum density that 90% of grouted samples or
measurements in-situ must fall at or above.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilDensityMinimum"
type="diggs:DensityOrUnitWeightMeasureType">
<annotation>
<documentation>Minimum allowable density of grouted samples or
measurements in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSWaveVelocityAverage"
type="diggs:LengthPerTimeMeasureType">
<annotation>
<documentation>Minimum average shear wave velocity value allowed where
measured in-situ.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSWaveVelocity90Percent"
type="diggs:LengthPerTimeMeasureType">
<annotation>
<documentation>The minimum shear wave velocity that 90% of measurements
in-situ must meet or exceed.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutedSoilSWaveVelocityMinimum"
type="diggs:LengthPerTimeMeasureType">
<annotation>
<documentation>Minimum allowable shear wave velocity measured
in-situ.</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<element name="GroutingActivitySpecification" type="diggs:GroutingActivitySpecificationType"
substitutionGroup="diggs:AbstractProgramSpecificaton"/>
<complexType name="GroutingActivitySpecificationType">
<complexContent>
<extension base="diggs:AbstractProgramSpecificationType">
<sequence>
<element minOccurs="0" name="constructionSpecification"
type="diggs:GroutConstructionSpecificationPropertyType" maxOccurs="1">
<annotation>
<documentation>Property type containing specifications for the grouting
activity. A grouting activity can have more than one
constructionSpecification that would be relevant to one or more
boreholes or soundings.</documentation>
</annotation>
</element>
<element minOccurs="0" name="terminationCriteria"
type="diggs:TerminationCriteriaPropertyType" maxOccurs="1">
<annotation>
<documentation>Property type containing specifications for conditions
that require termination of grout injection</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<element name="TerminationCriteria" type="diggs:TerminationCriteriaType"
substitutionGroup="diggs:AbstractObject"/>
<complexType name="TerminationCriteriaPropertyType">
<sequence>
<element ref="diggs:TerminationCriteria"/>
</sequence>
</complexType>
<complexType name="TerminationCriteriaType">
<complexContent>
<extension base="diggs:AbstractObjectType">
<sequence>
<element minOccurs="0" name="apparentLugeonValue"
type="diggs:LugeonValueMeasureType">
<annotation>
<documentation>The apparent Lugeon value upon which injection should
terminate.</documentation>
</annotation>
</element>
<element minOccurs="0" name="crossCommunication" type="boolean">
<annotation>
<documentation>Value is true if cross-communication of grout (eg. grout
appearing in an adjacent hole) should be a criteria for injection
termination, false if not.</documentation>
</annotation>
</element>
<element minOccurs="0" name="gInValue" type="eml:MomentOfForceMeasure">
<annotation>
<documentation>Grouting Intensity Number - the pressure x volume limit
used for grout termination</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutAtSurface" type="boolean">
<annotation>
<documentation>Grout appears at grout surface, indicative of grout loss.
True if this should be criteria for injection
termination.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutFlowAtConstantPressure"
type="eml:VolumePerTimeMeasure">
<annotation>
<documentation>Amount of grout flow under constant pressure that should
trigger termination.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutVolumeLimit" type="eml:VolumeMeasure">
<annotation>
<documentation>The total amount grout by volume that should trigger
termination.</documentation>
</annotation>
</element>
<element minOccurs="0" name="lateralMovement" maxOccurs="unbounded"
type="diggs:MovementMeasureType">
<annotation>
<documentation>Amount of lateral movement that triggers injection
termination. Attribute 'displacedFeature' identifies feature being
monitored for movement.</documentation>
</annotation>
</element>
<element minOccurs="0" name="movement" maxOccurs="unbounded"
type="diggs:MovementMeasureType">
<annotation>
<documentation>Amount of total movement that triggers injection
termination. Attribute 'displacedFeature' identifies feature being
monitored for movement.</documentation>
</annotation>
</element>
<element minOccurs="0" name="pressureLimit"
type="diggs:GroutPressureMeasureType" maxOccurs="unbounded">
<annotation>
<documentation>The pressure where injection termination should occur.
Required attribute 'type' indicates what type of pressure is being
measured - eg. gauge, effective, transducer) and optional attribute
'sensorLocation' is a string type indicating where sensor is located
(eg. pump, grout head, etc.).</documentation>
</annotation>
</element>
<element minOccurs="0" name="rotation" maxOccurs="unbounded"
type="diggs:RotationMeasureType">
<annotation>
<documentation>Amount of rotation that triggers injection termination.
Attribute 'displacedFeature' identifies feature being monitored for
movement.</documentation>
</annotation>
</element>
<element minOccurs="0" name="tilt" maxOccurs="unbounded"
type="diggs:RotationMeasureType">
<annotation>
<documentation>Amount of tilt that triggers injection termination.
Attribute 'displacedFeature' identifies feature being monitored for
movement.</documentation>
</annotation>
</element>
<element minOccurs="0" name="verticalMovement" maxOccurs="unbounded"
type="diggs:MovementMeasureType">
<annotation>
<documentation>Amount of vertical movement that triggers injection
termination. Attribute 'displacedFeature' identifies feature being
monitored for movement.</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="MovementMeasureType">
<complexContent>
<extension base="eml:LengthMeasure">
<attribute name="displacedFeature" type="diggs:TerminationFeatureExtEnumType"/>
</extension>
</complexContent>
</complexType>
<complexType name="RotationMeasureType">
<complexContent>
<extension base="eml:PlaneAngleMeasure">
<attribute name="displacedFeature" type="diggs:TerminationFeatureExtEnumType"/>
</extension>
</complexContent>
</complexType>
<complexType name="LugeonValueMeasureType">
<simpleContent>
<extension base="eml:AbstractMeasure">
<attribute name="uom" use="required" type="diggs:fixedLugeonValueUOM"/>
</extension>
</simpleContent>
</complexType>
<simpleType name="fixedLugeonValueUOM">
<restriction base="string">
<enumeration value="Lu"/>
</restriction>
</simpleType>
<element name="GroutConstructionSpecification" type="diggs:GroutConstructionSpecificationType"
substitutionGroup="diggs:AbstractObject"/>
<complexType name="GroutConstructionSpecificationPropertyType" mixed="false">
<sequence>
<element ref="diggs:GroutConstructionSpecification"/>
</sequence>
</complexType>
<complexType name="GroutConstructionSpecificationType">
<complexContent>
<extension base="diggs:AbstractObjectType">
<sequence>
<element name="maxDesignPressureForRockByVerticalDepth"
type="eml:ForcePerVolumeMeasure" minOccurs="0">
<annotation>
<documentation>The maximum design pressure for grouting in rock,
recorded as pressure per unit of vertical depth (eg. psi/ft)
</documentation>
</annotation>
</element>
<element name="maxDesignPressureForSoilByVerticalDepth"
type="eml:ForcePerVolumeMeasure" minOccurs="0">
<annotation>
<documentation>The maximum design pressure for grouting in soil,
recorded as pressure per unit of vertical depth (eg. psi/ft)
</documentation>
</annotation>
</element>
<choice>
<sequence>
<element maxOccurs="unbounded" minOccurs="0"
name="depthDependentGroutConstructionCriteria"
type="diggs:DepthDependentGroutConstructionCriteriaPropertyType"/>
</sequence>
<sequence>
<element maxOccurs="1" minOccurs="0" name="injectionEquipment"
type="diggs:GroutInjectionEquipmentPropertyType">
<annotation>
<documentation>Injection equipment specified.</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="mixer"
type="diggs:GroutMixerPropertyType">
<annotation>
<documentation>Mixer equipment specified</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="plant"
type="diggs:GroutPlantPropertyType">
<annotation>
<documentation>Grout plant specified</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="pump"
type="diggs:GroutPumpPropertyType">
<annotation>
<documentation>Grout pump specified</documentation>
</annotation>
</element>
<element minOccurs="0" name="injectionMethod" maxOccurs="1"
type="gml:CodeType">
<annotation>
<documentation>The method used to inject grout into the sampling
feature (eg. TAM, lances, out of bottom of casing, etc.).
Intended to come from a controlled list of
terms.</documentation>
</annotation>
</element>
<element minOccurs="0" name="reinjectionCriteria" maxOccurs="unbounded"
type="gml:CodeType">
<annotation>
<documentation>Description of conditions whereby hole/stage may
be required to be regrouted</documentation>
</annotation>
</element>
<choice minOccurs="0">
<sequence>
<element minOccurs="1" name="digitalRecordingRequired"
type="boolean" fixed="true">
<annotation>
<documentation>Set to true here, grouting parameters are
required to be recorded digitally.</documentation>
</annotation>
</element>
<element maxOccurs="unbounded" minOccurs="0"
name="recordingParameter" type="gml:CodeType">
<annotation>
<documentation>Grouting parameter to be recorded
digitally (eg. flow, pressure). Intended to come
from a controlled list of terms. </documentation>
</annotation>
</element>
</sequence>
<sequence>
<element minOccurs="1" name="digitalRecordingNotRequired"
type="boolean" fixed="true">
<annotation>
<documentation>Set to true here, grouting parameters are
NOT required to be recorded
digitally.</documentation>
</annotation>
</element>
</sequence>
</choice>
<element minOccurs="0" name="groutingPressureMaximum"
type="diggs:GroutPressureMeasureType" maxOccurs="1">
<annotation>
<documentation>Maximum grouting pressure
specified.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutingPressureMinimum"
type="diggs:GroutPressureMeasureType" maxOccurs="1">
<annotation>
<documentation>Minimum grouting pressure
specified.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutVolumeMaximum"
type="eml:VolumeMeasure">
<annotation>
<documentation>Maximum grout volume specified.</documentation>
</annotation>
</element>
<element minOccurs="0" name="groutVolumeMinimum"
type="eml:VolumeMeasure">
<annotation>
<documentation>Minimum grout volume specified</documentation>
</annotation>
</element>
<element minOccurs="0" name="injectionRateMaximum"
type="eml:VolumePerTimeMeasure">
<annotation>
<documentation>Maximum specified rate of grout
injection.</documentation>
</annotation>
</element>
<element minOccurs="0" name="injectionRateMinimum"
type="eml:VolumePerTimeMeasure">
<annotation>
<documentation>Minimum specified rate of grout
injection</documentation>
</annotation>
</element>
<element minOccurs="0" name="pressureControlLogic"
type="diggs:pressureControlLogicEnumType">
<annotation>
<documentation>Property defining how grout injection is to be
controlled, either by constant flow or constant pressure.
From an enumerated list.</documentation>
</annotation>
</element>
<element minOccurs="0" name="stageLengthMaximum"
type="eml:LengthMeasure">
<annotation>
<documentation>Maximum specified stage length</documentation>
</annotation>
</element>
<element minOccurs="0" name="stageLengthMinimum"
type="eml:LengthMeasure">
<annotation>
<documentation>Minimum specified stage length</documentation>
</annotation>
</element>
</sequence>
</choice>
</sequence>
</extension>
</complexContent>
</complexType>
<simpleType name="pressureControlLogicEnumType">
<restriction base="string">
<enumeration value="constant flow"/>
<enumeration value="constant pressure"/>
</restriction>
</simpleType>
<element name="DepthDependentGroutConstructionCriteria"
type="diggs:DepthDependentGroutConstructionCriteriaType"/>
<complexType name="DepthDependentGroutConstructionCriteriaPropertyType">
<sequence>
<element ref="diggs:DepthDependentGroutConstructionCriteria"/>
</sequence>
</complexType>
<complexType name="DepthDependentGroutConstructionCriteriaType">
<complexContent>
<extension base="gml:AbstractMetadataPropertyType">
<sequence>
<element form="qualified" name="minimumDepthBelowLS" type="eml:LengthMeasure">
<annotation>
<documentation>The minimum vertical depth below land surface for which
associated construction criteria are applicable.</documentation>
</annotation>
</element>
<element form="qualified" name="maximumDepthBelowLS" type="eml:LengthMeasure">
<annotation>
<documentation>The maximum vertical depth below land surface for which
associated construction criteria are applicable.</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="injectionEquipment"
type="diggs:GroutInjectionEquipmentPropertyType">
<annotation>
<documentation>Injection equipment specified.</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="mixer"
type="diggs:GroutMixerPropertyType">
<annotation>
<documentation>Mixer equipment specified</documentation>
</annotation>
</element>
<element maxOccurs="1" minOccurs="0" name="plant"
type="diggs:GroutPlantPropertyType">
<annotation>