-
Notifications
You must be signed in to change notification settings - Fork 5
/
diggs_geo_ns.xsd
2837 lines (2837 loc) · 130 KB
/
diggs_geo_ns.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 targetNamespace="http://diggsml.org/schemas/2.6/geotechnical" elementFormDefault="qualified" version="2.6" vc:minVersion="1.0" vc:maxVersion="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" 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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning">
<import namespace="http://diggsml.org/schemas/2.6" schemaLocation="Diggs.xsd"></import>
<import namespace="http://www.opengis.net/gml/3.2" schemaLocation="gml3.2Profile_diggs.xsd"></import>
<import namespace="http://www.energistics.org/energyml/data/commonv2" schemaLocation="witsml/2.0/data/common/v2.1/xsd_schemas/EmlAllObjects.xsd"></import>
<import namespace="http://www.energistics.org/energyml/data/witsmlv2" schemaLocation="witsml/2.0/data/witsml/v2.0/xsd_schemas/WitsmlAllObjects.xsd"></import>
<element name="AtterbergLimitsTest" type="diggs_geo:AtterbergLimitsTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing an Atterberg Limits test procedure. The Atterberg limits are a basic measure of the nature of a fine-grained
soil. Depending on the water content of the soil, it may appear in four states:
solid, semi-solid, plastic and liquid. In each state the consistency and behavior of
a soil is different and thus so are its engineering properties. Thus, the boundary
between each state can be defined based on a change in the soil's behavior. The
Atterberg limits can be used to distinguish between silt and clay, and it can
distinguish between different types of silts and clays.</documentation>
<documentation source="name">Atterberg Limits Test</documentation>
</annotation>
</element>
<element name="CasagrandeTrial" type="diggs_geo:CasagrandeTrialType" substitutionGroup="diggs:AbstractProcedureTrial">
<annotation>
<documentation>An object containing properites for a Casagrande liquid limit trial as part of an Atterberg test procedure.</documentation>
</annotation>
</element>
<element name="CBRIncrement" type="diggs_geo:CBRIncrementType">
<annotation>
<documentation>An object containing properties of a single increment within a California Bearing Ratio test procedure.</documentation>
</annotation>
</element>
<element abstract="false" name="CompressionIncrement" substitutionGroup="diggs:AbstractProcedureTrial" type="diggs_geo:CompressionIncrementType">
<annotation>
<documentation>An object containing properties of a single compression increment within an unconfined compressive strength test procedure.</documentation>
</annotation>
</element>
<element name="DirectShearConsolidationLoadingIncrement" type="diggs_geo:DirectShearConsolidationTrialType">
<annotation>
<documentation>An object containing properties of a consolidation loading increment of a direct shear test procedure.</documentation>
</annotation>
</element>
<element abstract="false" name="DirectShearTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:DirectShearTestType">
<annotation>
<documentation>An object describing a direct shear test procedure. The direct shear test, also known as a shearbox test, is used for
determination of the consolidated drained (or undrained) shear strength of soils.
The test is performed by deforming a specimen at a controlled rate on or near a
single shear plane.</documentation>
</annotation>
</element>
<element abstract="false" name="DirectShearTestIncrement" substitutionGroup="diggs:AbstractObject" type="diggs_geo:DirectShearTestIncrementType">
<annotation>
<documentation>An object containing properties of a single trial within a direct shear test procedure.</documentation>
</annotation>
</element>
<element abstract="false" name="DissipationTimeSeriesResult" substitutionGroup="gml:AbstractCoverage" type="diggs_geo:DissipationTimeSeriesResultType">
<annotation>
<documentation>An object containing a dissipation test time series.</documentation>
</annotation>
</element>
<element name="DrivenPenetrationTest" type="diggs_geo:DrivenPenetrationTestType" abstract="false" substitutionGroup="diggs:AbstractInsituTestProcedure">
<annotation>
<documentation>An object describing a driven penetration test procedure. The Driven Penetration Test includes all methods that involve driving a
rod (with or without a sampler) by impact hammer. The most common test of this type
inclue the Standard Penetration Test and the Becker Hammer Test.</documentation>
</annotation>
</element>
<element name="DriveSet" type="diggs_geo:DriveSetType" abstract="false" substitutionGroup="diggs:AbstractComponentObjectBase">
<annotation>
<documentation>An object containing properties that capturea blow counts for tests where samplers
or instruments are driven by impact methods.</documentation>
</annotation>
</element>
<element name="DsConConsolidationIncrement" type="diggs_geo:DSConConsoiidationIncrementType">
<annotation>
<documentation>An object containing properties of a single consolidation increment within loading increment of a direct shear test procedure.</documentation>
</annotation>
</element>
<element name="DynamicProbeTest" type="diggs_geo:DynamicProbeTestType" abstract="false" substitutionGroup="diggs:AbstractInsituTestProcedure">
<annotation>
<documentation>An object describing a driven penetration test procedure. The Driven Penetration Test includes all methods that involve driving a
rod (with or without a sampler) by impact hammer. The most common test of this type
inclue the Standard Penetration Test and the Becker Hammer Test.</documentation>
</annotation>
</element>
<element abstract="false" name="EnvironmentalScreeningTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:EnvironmentalScreeningTestType">
<annotation>
<documentation>An object to be used for describing metadata properties of any type of field environmental screening tests, such as a photo ionization or flame ionization tests for gas screening or XRF testing for metals. No specific properties are identified, use otherTestProperty to populate metadata</documentation>
</annotation>
</element>
<element name="FallConeTrial" type="diggs_geo:FallConeTrialType" substitutionGroup="diggs:AbstractProcedureTrial">
<annotation>
<documentation>An object containing properites for a Fall Cone liquid limit trial as part of an Atterberg test procedure.</documentation>
</annotation>
</element>
<element name="FlatPlateDilatometerTest" substitutionGroup="diggs:AbstractInsituTestProcedure" type="diggs_geo:FlatPlateDilatometerTestType">
<annotation>
<documentation>An object describing a flat plate dilatometer test procedure. This test consists of forcing the dilatometer blade into the soil, with
the membrane facing the horizontal direction, to a desired test penetration,
measuring the thrust to accomplish this penetration and then using gas pressure to
expand a circular steel membrane located on one side of the blade. The operator
measures and records the pressure required to produce expansion of the membrane into
the soil at two preset deflections. The operator then deflates the membrane,
possibly recording an optional third measurement, advances the blade the desired
penetration increment and repeats the test.</documentation>
</annotation>
</element>
<element name="Grading" type="diggs_geo:GradingType" abstract="false" substitutionGroup="diggs:AbstractObject">
<annotation>
<documentation>An object that contains properties thatcapture percentage of particle sizes within specific grade intervals.</documentation>
</annotation>
</element>
<element name="gradingData" type="diggs_geo:GradingPropertyType"></element>
<element name="HeatingCycleParameters" type="diggs_geo:HeatingCycleParametersType" abstract="false" substitutionGroup="diggs:AbstractObject">
<annotation>
<documentation>An object that contains properties that describes heating cycle parameters as part of a water content test procedures.</documentation>
</annotation>
</element>
<element name="Hydrometer" type="diggs_geo:HydrometerType">
<annotation>
<documentation>An object containing properties that define the hydrometer portion of a particle size test procedure.</documentation>
</annotation>
</element>
<element name="InsituCBRTest" type="diggs_geo:InsituCBRTestType" abstract="false" substitutionGroup="diggs:AbstractInsituTestProcedure">
<annotation>
<documentation>An object describing an in-situ California bearing ratio test procedure. The California bearing ratio (CBR) is a penetration test for evaluation
of the mechanical strength of road subgrades and basecourses. The test is performed
by measuring the pressure required to penetrate a soil sample with a plunger of
standard area. The measured pressure is then divided by the pressure required to
achieve an equal penetration on a standard crushed rock material.</documentation>
</annotation>
</element>
<element name="InsituVaneTest" abstract="false" substitutionGroup="diggs:AbstractInsituTestProcedure" type="diggs_geo:InsituVaneTestType">
<annotation>
<documentation>An object describing an in-situ vahe shear test procedure. This test gives the in place shearing resistance of
soft, saturated clays.</documentation>
</annotation>
</element>
<element name="LabCBRTest" type="diggs_geo:LabCBRTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object that describes a loboaratory California Bearing Ratio test procedure. The California bearing ratio (CBR) is a penetration test for evaluation
of the mechanical strength of road subgrades and basecourses. The test is performed
by measuring the pressure required to penetrate a soil sample with a plunger of
standard area. The measured pressure is then divided by the pressure required to
achieve an equal penetration on a standard crushed rock material.</documentation>
</annotation>
</element>
<element name="LabCBRTestTrial" type="diggs_geo:LabCBRTestTrialType" abstract="false" substitutionGroup="diggs:AbstractObject">
<annotation>
<documentation>An object containing properties of a single increment within a lab California Bearing Ratio test procedure.</documentation>
</annotation>
</element>
<element name="LabChemicalTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:LabChemicalTestType">
<annotation>
<documentation>An object describing the test procedure for determining a chemical component.</documentation>
</annotation>
</element>
<element name="LabCompactionTest" type="diggs_geo:LabCompactionTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing a laboratory compaction test procedure. The Compaction Test is a laboratory method of experimentally determining
the optimal moisture content at which a given soil type will become most dense and
achieve its maximum dry density.</documentation>
</annotation>
</element>
<element name="LabCompactionTestTrial" type="diggs_geo:LabCompactionTestTrialType" abstract="false" substitutionGroup="diggs:AbstractObject">
<annotation>
<documentation>An object containing properties of a single trial increment within a laobratory compaction test procedure.</documentation>
</annotation>
</element>
<element name="LabDensityTest" type="diggs_geo:LabDensityTestType" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing the properties of a laboratory density test procedure. Thisest produces density values, mass per
volume.</documentation>
</annotation>
</element>
<element abstract="false" name="LabPermeabilityTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:LabPermeabilityTestType">
<annotation>
<documentation>An object describing the properties of a laboratory permeability test procedure. The objective of the permeability test is to determine the coefficient of
permeability of the soil. Several different laboratory testing methods can be
performed to more accurately determine permeability, including constant-head and
falling-head types.</documentation>
</annotation>
</element>
<element name="LabPermeationTrial">
<annotation>
<documentation>An object containing properties of an individual permeation trial as part of a laoboratory permeability test procedure.</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="diggs_geo:LabPermeationTrialType">
<sequence>
<element minOccurs="0" name="averageInflowVolume" type="eml:VolumeMeasure">
<annotation>
<documentation>Average inflow during the entire permeation trial;
average of incremental inflow measurements.</documentation>
</annotation>
</element>
<element minOccurs="0" name="averageHeadLoss" type="eml:LengthMeasure">
<annotation>
<documentation>Average head loss during the entire permeation trial;
generally calculated as the average of the head loss at start of
trial and head loss at end of trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="averageOutflowVolume" type="eml:VolumeMeasure">
<annotation>
<documentation>Average inflow during the entire permeation trial;
average of incremental outflow measurements.</documentation>
</annotation>
</element>
<element minOccurs="0" name="deltaHg1" type="eml:LengthMeasure">
<annotation>
<documentation>Peak-to-peak height of mercury between the headwater
and tailwater tubes at start of trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="deltaHg2" type="eml:LengthMeasure">
<annotation>
<documentation>The difference in elevation of mercury in the
headwater and tailwater tubes of the manometer at end of
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="deltaHgC" type="eml:LengthMeasure">
<annotation>
<documentation>The difference in elevation of mercury in the
headwater and tailwater tubes of the manometer with equal
pressures applied to both tubes. This value is positive if the
inside diameter of the headwater tube is larger than the inside
of the tailwater tube, and negative if the opposite is true.</documentation>
</annotation>
</element>
<element minOccurs="0" name="deltaHgTail" type="eml:LengthMeasure">
<annotation>
<documentation>The change in elevation of the mercury levels in the
tailwater tube during the permeation trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="finalHydraulicGradient" type="double">
<annotation>
<documentation>Hydraulic gradient at end of permeation trial. This
property should be empty or equal to initialHydraulicGradient
for constant head method.</documentation>
</annotation>
</element>
<element minOccurs="0" name="gHg" type="double">
<annotation>
<documentation>The ratio of the density of mercury to the density of
water (specific gravity of mercury) at the trial temperature.</documentation>
</annotation>
</element>
<element minOccurs="0" name="headLossStartOfTrial" type="eml:LengthMeasure">
<annotation>
<documentation>Head difference of water on manometers at start of
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="initialHydraulicGradient" type="double">
<annotation>
<documentation>Hydraulic gradient at start of permeation
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="headLossEndOfTrial" type="eml:LengthMeasure">
<annotation>
<documentation>Head difference of water on manometers at end of
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="hydraulicConductivity" type="eml:VolumeMeasure">
<annotation>
<documentation>Hydraulic conductivity or coefficient of permeability
computed for this trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="hydraulicConductivity20C" type="eml:VolumeMeasure">
<annotation>
<documentation>Hydraulic conductivity computed for this trial,
corrected to 20 degrees C.</documentation>
</annotation>
</element>
<element minOccurs="0" name="tempStartOfTrial" type="eml:ThermodynamicTemperatureMeasure">
<annotation>
<documentation>Test temperature at the start of the
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="tempEndOfTrial" type="eml:ThermodynamicTemperatureMeasure">
<annotation>
<documentation>Test temperature at the end of the
trial.</documentation>
</annotation>
</element>
<element minOccurs="0" ref="diggs:timeInterval">
<annotation>
<documentation>Time at the beginning and end of the trial and/or
duration of the trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="totalFlowVolume" type="eml:VolumeMeasure">
<annotation>
<documentation>Total quantity of flow during the permeation trial
(average of all inflow and outflow
measurements).</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
</element>
<element abstract="false" name="LabResistivityTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:LabResistivityTestType">
<annotation>
<documentation>An object describing the properties of a laboratory resistivity test procedure. This test determines the resistivity of a soil as measured in the laboratory.</documentation>
</annotation>
</element>
<element abstract="false" name="LabVaneTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:LabVaneTestType">
<annotation>
<documentation>An object describing the properties of a laboratory vane test procedure. The laboratory vane shear test consists of inserting a four-bladed vane
in the end of an intact tube sample or remolded sample and rotating it at a constant
rate to determine the torque required to cause a cylindrical surface to be sheared
by the vane. This torque is then converted to a unit shearing resistance of the
cylindrical surface area. The torque is mea- sured by a calibrated torque spring or
torque transducer that is attached directly to the vane.</documentation>
</annotation>
</element>
<element name="LossOnIgnitionTest" type="diggs_geo:LossOnIgnitionTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing the properties of a laboratory loss-on-ignition test procedure for determining carbon content.</documentation>
</annotation>
</element>
<element name="MaterialGradationTest" type="diggs_geo:MaterialGradationTestType" abstract="false" substitutionGroup="diggs:AbstractMaterialTestProcedure">
<annotation>
<documentation>An object describing the properties of a laboratory particle size test procedure performed on the coarse fraction (greater than silt size) of a material sample - primarily used for recording gradation of a grout mix aggregate.</documentation>
</annotation>
</element>
<element name="PanData" type="diggs_geo:PanDataType">
<annotation>
<documentation>An object containing properties for material left in the pan (passing all sieves) or
finest size fraction</documentation>
</annotation>
</element>
<element name="parameters" substitutionGroup="gml:rangeParameters" type="diggs_geo:PpdPropertyInfoPropertyType">
<annotation>
<documentation>An object that contains Diggs property parameters.</documentation>
</annotation>
</element>
<element name="ParticleSizeTest" type="diggs_geo:ParticleSizeTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing the properties of a laboratory particle size test procedure. This test produces the distribution of particle sizes in soils as
determined by sieve analysis and/or hydrometer analysis.</documentation>
</annotation>
</element>
<element name="PlasticLimitTrial" type="diggs_geo:PlasticLimitTrialType" substitutionGroup="diggs:AbstractProcedureTrial">
<annotation>
<documentation>An object containing properties of a plastic limit trial as part of an Atterberg test procedure.</documentation>
</annotation>
</element>
<element name="PocketPenetrometerTest" type="diggs_geo:PocketPenetrometerTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing a Pocket Penetrometer Test procedure. The pocket penetrometer is a basic measure of the strength of a
soil, which is dependent upon the water content of the soil, along with the type and consistency of the soil.</documentation>
</annotation>
</element>
<element name="PointLoadTest" type="diggs_geo:PointLoadTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>The Point Load Test produces the Point Load Test Index (Is50), which can be correlated with the uniaxial compressive strength (UCS) of rock.</documentation>
</annotation>
</element>
<element name="PorePressureDissipationProperty" substitutionGroup="gml:AbstractValue" type="diggs_geo:PorePressureDissipationPropertyType"></element>
<element name="PorePressureDissipationTest" type="diggs_geo:PorePressureDissipationTestType" abstract="false" substitutionGroup="diggs:AbstractInsituTestProcedure">
<annotation>
<documentation>The Pore Pressure Dissipation Test occurs as part of a static cone penetration test, where the probe stops advancing and easured excess pore pressures are recorded over time. It is used to measure equilibrium pore pressure and to estimate in situ horizontal coefficient of
consolidation (ch) and in situ horizontal coefficient of permeability (kh)</documentation>
</annotation>
</element>
<element name="PorePressureElement" type="diggs_geo:PorePressureElementType">
<annotation>
<documentation>An object that contains properties to capture pore pressure sensor
metadata.</documentation>
</annotation>
</element>
<element name="PpdPropertyParameters" type="diggs_geo:PpdPropertyParametersType" substitutionGroup="gml:CompositeValue">
<annotation>
<documentation>An object that contains the properties property of a measurement result.</documentation>
</annotation>
</element>
<element name="ppdresults" substitutionGroup="gml:rangeSet" type="diggs_geo:ResultsPropertyType">
<annotation>
<documentation>A property that holds a PpdResultSet object</documentation>
</annotation>
</element>
<element name="PpdResultSet" substitutionGroup="gml:DataBlock" type="diggs_geo:PpdResultSetType">
<annotation>
<documentation>An object that contains properites describing the parameters and data values of a measurement result.</documentation>
</annotation>
</element>
<element name="properties" substitutionGroup="gml:valueComponents" type="diggs_geo:PpdPropertiesType">
<annotation>
<documentation>A property that contains a sequence of Property objects defining the results of a test or monitoring activity.</documentation>
</annotation>
</element>
<element name="RedoxTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:RedoxTestType">
<annotation>
<documentation>A redox test measures a sample's overall reducing or oxidizing capacity. The redox potential is measured in millivolts (mV) relative to a standard hydrogen electrode and is commonly measured using a platinum electrode with a saturated calomel electrode as reference.</documentation>
</annotation>
</element>
<element name="Sedimentation" type="diggs_geo:SedimentationType">
<annotation>
<documentation>An object providing properties for each sedimentation interval in a hydrometer test. This is analogous to the Grading object portion of sieve analysis.</documentation>
</annotation>
</element>
<element name="ShrinkageLimitTrial" type="diggs_geo:ShrinkageLimitTrialType">
<annotation>
<documentation>An object containing properties of a shrinkage limit trial as part of an Atterberg test procedure.</documentation>
</annotation>
</element>
<element name="SieveAnalysis" type="diggs_geo:SieveAnalysisType">
<annotation>
<documentation>An object describing the sieve analysis portion of a particle size test procedure.</documentation>
</annotation>
</element>
<element name="SpecificGravityTest" type="diggs_geo:SpecificGravityTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object describing the properties of a laboratory specific gravity test procedure. Specific gravity is the ratio of the density of a substance to the
density of a reference substance, usually water at 4 deg C; equivalently, it is the
ratio of the mass of a substance to the mass of a reference substance for the same
given volume.</documentation>
</annotation>
</element>
<element name="StaticConePenetrationTest" substitutionGroup="diggs:AbstractInsituTestProcedure" type="diggs_geo:StaticConePenetrationTestType">
<annotation>
<documentation>An object describing the properties of an in-situ static cone test procedure. This Test is an in situ testing method used to determine
the geotechnical engineering properties of soils and delineating soil stratigraphy.
The test method consists of pushing an instrumented cone, with the tip facing down,
into the ground at a controlled rate.</documentation>
</annotation>
</element>
<element name="TorqueIncrement" type="diggs_geo:TorqueIncrementType">
<annotation>
<documentation>An object containing properties of a single torque increment within a vane test.</documentation>
</annotation>
</element>
<element abstract="false" name="UnconfinedCompressiveStrengthTest" substitutionGroup="diggs:AbstractLaboratoryTestProcedure" type="diggs_geo:UnconfinedCompressiveStrengthTestType">
<annotation>
<documentation>An object that describes an unconfined compressive strength test procedure. The Compressive strength of a material is that value of uniaxial
compressive stress reached when the material fails</documentation>
</annotation>
</element>
<element name="VaneTestMeasurementData" type="diggs_geo:VaneTestMeasurementDataType">
<annotation>
<documentation>An object that describes the properties of data recorded in a vane test procedure.</documentation>
</annotation>
</element>
<element name="WaterContentTest" type="diggs_geo:WaterContentTestType" abstract="false" substitutionGroup="diggs:AbstractLaboratoryTestProcedure">
<annotation>
<documentation>An object that contains properties describing a water content test procedure. Water content or moisture content is the quantity of water contained in a
material, expressed as a ratio. Also referred to as moisture content, this is the
mass of water divided by the mass of the solids, expressed as a
percentage.</documentation>
</annotation>
</element>
<element name="WirelineLog" substitutionGroup="diggs:AbstractInsituTestProcedure" type="diggs_geo:WirelineLogType">
<annotation>
<documentation>An object describing a wireline test procedure. This is a generic test structure to capture all forms of geophysical test
data collected by wireline methods.</documentation>
</annotation>
</element>
<complexType name="AtterbergLimitsTestType">
<annotation>
<documentation>Base type for AtterbergLimitsTest</documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractLaboratoryTestProcedureType">
<sequence>
<element minOccurs="0" name="ovenDriedBeforeTest" type="boolean">
<annotation>
<documentation>True if sample is oven dried at 100 deg C or hotter prior
to testing; otherwise false. True value for this property should
produce a liquid_limit_oven_dried reportable result</documentation>
</annotation>
</element>
<element minOccurs="0" name="sieveProcedure">
<annotation>
<documentation>Value is wet if wet sieving on No. 40 screen (0.425 mm)
is performed; dry if dry sieving on No. 40 screen (0.425 mm) is
performed; none if no sieving is performed (sample is all
finer-grained than 0.425 mm or coarser particles are picked out;
unknown if not known. If value is None, the property handRemoved
should be used.</documentation>
</annotation>
<simpleType>
<restriction base="string">
<enumeration value="wet"></enumeration>
<enumeration value="dry"></enumeration>
<enumeration value="none"></enumeration>
<enumeration value="unknown"></enumeration>
</restriction>
</simpleType>
</element>
<element minOccurs="0" name="handRemoved" type="boolean">
<annotation>
<documentation>True if plus screen No. 40 particles are removed from the
sample by hand, false if not. If no sieving is performed this
property is required</documentation>
</annotation>
</element>
<element minOccurs="0" name="percentRetainedNo40" type="diggs:DiggsStringType">
<annotation>
<documentation>Estimate of percent of sample retained on No. 40 screen.
If no sieving is performed, this value would hold the estimated
percentage of plus 40 particles removed by hand from the sample, if
applicable. String type.</documentation>
</annotation>
</element>
<element minOccurs="0" name="specimenInitialState" type="diggs_geo:AtterbergInitialConditionEnumType"></element>
<element minOccurs="0" name="multiPointLLmethod" type="boolean">
<annotation>
<documentation>Value is true if the liquid limit method is multi-point,
false if liquid limit is calculated from a single point
test</documentation>
</annotation>
</element>
<element minOccurs="0" name="waterDensity" type="diggs:SpecificGravityMeasureType">
<annotation>
<documentation>Usually assigned a value of 1.0, this value could be modified to account for temperature differences, as indicated in the attributes of this type.</documentation>
</annotation>
</element>
<element minOccurs="0" name="waxDensity">
<annotation>
<documentation>For determination of shrinkage limit, the density of the wax used to seal the soil pat. This may be an assigned value, reported from the manufacturer or determined by a test procedure such as described in ASTM D 4943.</documentation>
</annotation>
<complexType>
<simpleContent>
<extension base="diggs:DensityOrUnitWeightMeasureType">
<attribute name="howDetermined" type="diggs:DescriptorMethodEnumType"></attribute>
</extension>
</simpleContent>
</complexType>
</element>
<element minOccurs="0" name="casagrandeTrial" type="diggs_geo:CasagrandeTrialPropertyType" maxOccurs="unbounded">
<annotation>
<documentation>Property containing one or more CasagrandeTrial objects
detailing results of these various liquid limit tests</documentation>
</annotation>
</element>
<element minOccurs="0" name="fallConeTrial" type="diggs_geo:FallConeTrialPropertyType" maxOccurs="unbounded">
<annotation>
<documentation>Property containing one or more FallConeTrial objects
detailing results of these various liquid limit tests</documentation>
</annotation>
</element>
<element minOccurs="0" name="plasticLimitTrial" type="diggs_geo:PlasticLimitTrialPropertyType" maxOccurs="unbounded">
<annotation>
<documentation>Property containing one or more PlasticLimitTrial objects
detailing the results of each plastic limit trial</documentation>
</annotation>
</element>
<element minOccurs="0" name="shrinkageLimitTrial" type="diggs_geo:ShrinkageLimitTrialPropertyType" maxOccurs="unbounded">
<annotation>
<documentation>Property containing one or more ShrinkageLimitTrial
objects detailing the results of each shrinkage limit
trial</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="CasagrandeTrialPropertyType">
<sequence>
<element maxOccurs="1" ref="diggs_geo:CasagrandeTrial"></element>
</sequence>
</complexType>
<complexType name="CasagrandeTrialType">
<complexContent>
<extension base="diggs:AbstractProcedureTrialType">
<sequence>
<element minOccurs="0" name="trialNo" type="positiveInteger"></element>
<element minOccurs="0" name="isManual" type="boolean">
<annotation>
<documentation>True if the liquid limit device is manual crank, false if
motorized</documentation>
</annotation>
</element>
<element minOccurs="1" name="blowCount" type="eml:PositiveLong">
<annotation>
<documentation>The number of drops of the brass cup needed to close the
groove in the sample</documentation>
</annotation>
</element>
<element name="waterContent" type="diggs:WaterContentMeasureType">
<annotation>
<documentation>Moisture content for this trial</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="CBRIncrementPropertyType">
<annotation>
<documentation></documentation>
</annotation>
<sequence>
<element ref="diggs_geo:CBRIncrement"></element>
</sequence>
</complexType>
<complexType name="CBRIncrementType">
<annotation>
<documentation></documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractProcedureTrialType">
<sequence>
<element minOccurs="0" name="calculatedStress" type="eml:PressureMeasureExt">
<annotation>
<documentation>Stress calculated from the measured load for this penetration increment.</documentation>
</annotation>
</element>
<element minOccurs="0" name="measuredLoad" type="eml:ForceMeasureExt">
<annotation>
<documentation>Measured load on the piston at this penetration
increment</documentation>
</annotation>
</element>
<element minOccurs="1" name="measuredPenetration" type="eml:LengthMeasureExt">
<annotation>
<documentation>Measured penetration for this increment</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="CompressionIncrementPropertyType">
<annotation>
<documentation>Property type for unconfined compression increments</documentation>
</annotation>
<sequence>
<element maxOccurs="1" minOccurs="1" ref="diggs_geo:CompressionIncrement"></element>
</sequence>
</complexType>
<complexType name="CompressionIncrementType">
<annotation>
<documentation></documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractProcedureTrialType">
<sequence>
<element minOccurs="0" name="elapsedTime" type="eml:TimeMeasure">
<annotation>
<documentation>Time since the initiation of this test
stage.</documentation>
</annotation>
</element>
<element minOccurs="0" name="loadDialReading" type="diggs:DiggsStringType"></element>
<element minOccurs="0" name="axialLoad" type="eml:ForceMeasure">
<annotation>
<documentation>Load applied to the top of the sample</documentation>
</annotation>
</element>
<element minOccurs="0" name="strainDialReading" type="diggs:DiggsStringType"></element>
<element minOccurs="1" name="totalStrain" type="eml:LengthPerLengthMeasure">
<annotation>
<documentation>Strain deflection of sample under load</documentation>
</annotation>
</element>
<element minOccurs="0" name="unitStrain" type="diggs:DiggsStringType">
<annotation>
<documentation>strain per unit length? Units?</documentation>
</annotation>
</element>
<element minOccurs="0" name="correctedArea" type="eml:AreaMeasure">
<annotation>
<documentation>corrected surface area of the sample</documentation>
</annotation>
</element>
<element minOccurs="1" name="stress" type="eml:PressureMeasure">
<annotation>
<documentation>Total stress on the sample computed using corrected
area</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="ConsolidationLoadingIncrementPropertyType">
<sequence>
<element ref="diggs_geo:DirectShearConsolidationLoadingIncrement"></element>
</sequence>
</complexType>
<complexType name="DirectShearConsolidationTrialType">
<complexContent>
<extension base="diggs:AbstractProcedureTrialType">
<sequence>
<element minOccurs="1" name="appliedLoad" type="eml:ForceMeasure">
<annotation>
<documentation>Load applied for this consolidation loading
increment</documentation>
</annotation>
</element>
<element maxOccurs="unbounded" minOccurs="0" name="consolidationIncrement" type="diggs_geo:DSConConsolidationIncrementPropertyType">
<annotation>
<documentation>Elapsed time and deformation recorded during this loading
increment</documentation>
</annotation>
</element>
<element minOccurs="1" name="finalNormalDisplacement" type="eml:LengthMeasure">
<annotation>
<documentation>Normal deformation of the sample at the end of the
loading increment</documentation>
</annotation>
</element>
<element minOccurs="1" ref="diggs:timeInterval"></element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="DirectShearTestIncrementPropertyType">
<annotation>
<documentation>Property for DirectShearTestTrials, required parent element that holds
the multiple trials.</documentation>
</annotation>
<sequence>
<element maxOccurs="1" minOccurs="1" ref="diggs_geo:DirectShearTestIncrement"></element>
</sequence>
</complexType>
<complexType name="DirectShearTestIncrementType">
<annotation>
<documentation></documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractProcedureTrialType">
<sequence>
<element minOccurs="1" name="elapsedTime" type="eml:TimeMeasure">
<annotation>
<documentation>Shear force applied for shearing
increment.</documentation>
</annotation>
</element>
<element minOccurs="0" name="normalForce" type="eml:ForceMeasure">
<annotation>
<documentation>Normal force measured.</documentation>
</annotation>
</element>
<element minOccurs="0" name="normalStress" type="eml:PressureMeasure">
<annotation>
<documentation>Normal stress computed.</documentation>
</annotation>
</element>
<element minOccurs="0" name="shearForce" type="eml:ForceMeasure">
<annotation>
<documentation>Shear force applied for shearing
increment.</documentation>
</annotation>
</element>
<element minOccurs="0" name="shearStress" type="eml:PressureMeasure">
<annotation>
<documentation>Shear stress computed for shearing
increment.</documentation>
</annotation>
</element>
<element minOccurs="0" name="lateralDisplacement" type="eml:LengthMeasure">
<annotation>
<documentation>Lateral displacement of specimen.</documentation>
</annotation>
</element>
<element minOccurs="0" name="relativeLateralDisplacement" type="eml:LengthPerLengthMeasure">
<annotation>
<documentation>Relative lateral displacement expressed as a percentage
of the specimen. diameter</documentation>
</annotation>
</element>
<element minOccurs="0" name="verticalDisplacement" type="eml:LengthMeasure">
<annotation>
<documentation>Vertical displacement of the specimen</documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="DirectShearTestType">
<annotation>
<documentation>Base type for DirectShearTest</documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractLaboratoryTestProcedureType">
<sequence>
<element minOccurs="0" name="areaShearBox" type="eml:AreaMeasure">
<annotation>
<documentation>Cross-sectional area of the shear box</documentation>
</annotation>
</element>
<element maxOccurs="unbounded" minOccurs="0" name="consolidationLoadingIncrement" type="diggs_geo:ConsolidationLoadingIncrementPropertyType"></element>
<element default="false" minOccurs="0" name="directShearTestType" type="gml:CodeType">
<annotation>
<documentation>Type of shear box test; intended to come from a
controlled list.</documentation>
</annotation>
</element>
<element minOccurs="0" name="displacementRatePeakStressStage" type="diggs:LengthPerTimeMeasureType">
<annotation>
<documentation>Displacement rate during the peak stress stage of
shearing.</documentation>
</annotation>
</element>
<element minOccurs="0" name="displacementRateResidualStressStage" type="diggs:LengthPerTimeMeasureType">
<annotation>
<documentation>Displacement rate during the residual stress stage of
shearing.</documentation>
</annotation>
</element>
<element minOccurs="0" name="failureCriteria" type="gml:CodeType">
<annotation>
<documentation>Failure/residual strength criterion used.</documentation>
</annotation>
</element>
<element minOccurs="0" name="HorizDisplPeakShear" type="eml:LengthMeasure">
<annotation>
<documentation>Horizontal displacement at peak shear
stress.</documentation>
</annotation>
</element>
<element minOccurs="0" name="HorizDisplResidualShear" type="eml:LengthMeasure">
<annotation>
<documentation>Horizontal displacement at residual shear
stress.</documentation>
</annotation>
</element>
<element minOccurs="0" name="normalForcePriorToShearing" type="eml:ForceMeasure">
<annotation>
<documentation>Normal (or axial) load on specimen following final
consolidation increment prior to shearing.</documentation>
</annotation>
</element>
<element minOccurs="0" name="normalStressApplied" type="eml:PressureMeasure">
<annotation>
<documentation>Normal stress applied to specimen.</documentation>
</annotation>
</element>
<element minOccurs="0" name="peakShearStress" type="eml:PressureMeasure">
<annotation>
<documentation>Peak shear stress during this trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="relativeLaterallDisplacementPriorToShearing" type="eml:LengthPerLengthMeasure">
<annotation>
<documentation>Relative lateral displacement (as a percentage of
specimen diameter) of specimen following final consolidation
increment prior to shearing.</documentation>
</annotation>
</element>
<element minOccurs="0" name="residualShearStress" type="eml:PressureMeasure">
<annotation>
<documentation>Residual shear stress during this trial.</documentation>
</annotation>
</element>
<element minOccurs="0" name="shearForcePriorToShearing" type="eml:ForceMeasure">
<annotation>
<documentation>Initial shear force on specimen following final
consolidation increment prior to shearing.</documentation>
</annotation>
</element>
<element minOccurs="0" name="verticalDisplacementPriorToShearing" type="eml:LengthMeasure">
<annotation>
<documentation>Normal displacement of specimen following final
consolidation increment prior to shearing</documentation>
</annotation>
</element>
<element minOccurs="0" name="VertDisplPeakShear" type="eml:LengthMeasure">
<annotation>
<documentation>Vertical displacement at peak shear
stress.</documentation>
</annotation>
</element>
<element minOccurs="0" name="VertDisplResidualShear" type="eml:LengthMeasure">
<annotation>
<documentation>Vertical displacement at residual shear
stress.</documentation>
</annotation>
</element>
<element maxOccurs="unbounded" minOccurs="0" name="shearingIncrementPeakStressStage" type="diggs_geo:DirectShearTestIncrementPropertyType"></element>
<element maxOccurs="unbounded" minOccurs="0" name="shearingIncrementResidualStressStage" type="diggs_geo:DirectShearTestIncrementPropertyType"></element>
</sequence>
</extension>
</complexContent>
</complexType>
<complexType name="DissipationTimeSeriesPropertyType">
<annotation>
<documentation>Property for PorePressureDissipationIncrements</documentation>
</annotation>
<sequence>
<element maxOccurs="1" minOccurs="1" ref="diggs_geo:DissipationTimeSeriesResult"></element>
</sequence>
</complexType>
<complexType name="DissipationTimeSeriesResultType">
<complexContent>
<restriction base="gml:AbstractCoverageType">
<sequence>
<element ref="diggs:timeDomain"></element>
<element ref="diggs_geo:ppdresults"></element>
</sequence>
</restriction>
</complexContent>
</complexType>
<complexType name="DrivenPenetrationTestType">
<annotation>
<documentation></documentation>
</annotation>
<complexContent>
<extension base="diggs:AbstractInsituTestProcedureType">
<sequence>
<element name="penetrationTestType" type="gml:CodeType">
<annotation>
<documentation>Type of penetration test performed, e.g. Standard
Penetration Test, Becker Hammer Test, etc.</documentation>
</annotation>
</element>
<element name="hammerType" type="gml:CodeType" minOccurs="0">
<annotation>
<documentation>The type of hammer used for the sampling and penetration,
including the mechanism used to lift and drop the hammer assembly.
Additional details about the sampler (e.g. cathead diameter, number
of turns, etc) can be mapped to the equipment
object.</documentation>
</annotation>
</element>
<element name="hammerMass" type="diggs:DiggsMassMeasureType" minOccurs="0">
<annotation>
<documentation>The hammer mass used to drive the
sampler.</documentation>
</annotation>
</element>
<element name="hammerDropHeight" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The hammer drop height.</documentation>
</annotation>
</element>
<element name="hammerEfficiency" type="eml:DimensionlessMeasure" minOccurs="0">
<annotation>
<documentation>A description of the energy efficiency of the
hammer.</documentation>
</annotation>
</element>
<element name="samplerLength" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The length of the sampler barrel.</documentation>
</annotation>
</element>
<element name="samplerInternalDiameter" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The inside diameter of the sampler.</documentation>
</annotation>
</element>
<element name="samplerLinerDescription" type="diggs:DiggsStringType" minOccurs="0">
<annotation>
<documentation>A description of the liner, if used.</documentation>
</annotation>
</element>
<element name="samplerRetainerDescription" type="diggs:DiggsStringType" minOccurs="0">
<annotation>
<documentation>A description of the basket retainer, if
used.</documentation>
</annotation>
</element>
<element name="rodType" type="gml:CodeType" minOccurs="0">
<annotation>
<documentation>The type of sampling rods used for
penetration.</documentation>
</annotation>
</element>
<element name="rodExternalDiameter" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The external diameter of the sampling
rods.</documentation>
</annotation>
</element>
<element name="rodSectionLength" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The drive rod weight per unit length.</documentation>
</annotation>
</element>
<element name="rodWeight" type="eml:ForcePerLengthMeasure" minOccurs="0">
<annotation>
<documentation>The drive rod weight per unit length.</documentation>
</annotation>
</element>
<element name="depthCasing" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>Casing depth at time of test</documentation>
</annotation>
</element>
<element name="selfWeightPenetration" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>The distance the sampler penetrates the soil under its
own weight before applying hammer blows</documentation>
</annotation>
</element>
<element name="waterDepth" type="eml:LengthMeasure" minOccurs="0">
<annotation>
<documentation>Depth to water at time of test.</documentation>