-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsoapStub.h
5261 lines (4670 loc) · 310 KB
/
soapStub.h
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
/* soapStub.h
Generated by gSOAP 2.8.91 for TurbulenceService.h
gSOAP XML Web services tools
Copyright (C) 2000-2018, Robert van Engelen, Genivia Inc. All Rights Reserved.
The soapcpp2 tool and its generated software are released under the GPL.
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial use license is available from Genivia Inc., contact@genivia.com
--------------------------------------------------------------------------------
*/
#define SOAP_NAMESPACE_OF_turb1 "http://turbulence.pha.jhu.edu/"
#ifndef soapStub_H
#define soapStub_H
#include "stdsoap2.h"
#if GSOAP_VERSION != 20891
# error "GSOAP VERSION 20891 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE"
#endif
/******************************************************************************\
* *
* Enumeration Types *
* *
\******************************************************************************/
/* TurbulenceService.h:155 */
#ifndef SOAP_TYPE_turb1__SpatialInterpolation
#define SOAP_TYPE_turb1__SpatialInterpolation (11)
/* turb1:SpatialInterpolation */
enum turb1__SpatialInterpolation {
turb1__SpatialInterpolation__None = 0,
turb1__SpatialInterpolation__None_USCOREFd4 = 1,
turb1__SpatialInterpolation__None_USCOREFd6 = 2,
turb1__SpatialInterpolation__None_USCOREFd8 = 3,
turb1__SpatialInterpolation__Fd4Lag4 = 4,
turb1__SpatialInterpolation__Lag4 = 5,
turb1__SpatialInterpolation__Lag6 = 6,
turb1__SpatialInterpolation__Lag8 = 7,
turb1__SpatialInterpolation__M1Q4 = 8,
turb1__SpatialInterpolation__M2Q4 = 9,
turb1__SpatialInterpolation__M3Q4 = 10,
turb1__SpatialInterpolation__M4Q4 = 11,
turb1__SpatialInterpolation__M1Q6 = 12,
turb1__SpatialInterpolation__M2Q6 = 13,
turb1__SpatialInterpolation__M3Q6 = 14,
turb1__SpatialInterpolation__M4Q6 = 15,
turb1__SpatialInterpolation__M1Q8 = 16,
turb1__SpatialInterpolation__M2Q8 = 17,
turb1__SpatialInterpolation__M3Q8 = 18,
turb1__SpatialInterpolation__M4Q8 = 19,
turb1__SpatialInterpolation__M1Q10 = 20,
turb1__SpatialInterpolation__M2Q10 = 21,
turb1__SpatialInterpolation__M3Q10 = 22,
turb1__SpatialInterpolation__M4Q10 = 23,
turb1__SpatialInterpolation__M1Q12 = 24,
turb1__SpatialInterpolation__M2Q12 = 25,
turb1__SpatialInterpolation__M3Q12 = 26,
turb1__SpatialInterpolation__M4Q12 = 27,
turb1__SpatialInterpolation__M1Q14 = 28,
turb1__SpatialInterpolation__M2Q14 = 29,
turb1__SpatialInterpolation__M3Q14 = 30,
turb1__SpatialInterpolation__M4Q14 = 31
};
#endif
/* TurbulenceService.h:194 */
#ifndef SOAP_TYPE_turb1__TemporalInterpolation
#define SOAP_TYPE_turb1__TemporalInterpolation (12)
/* turb1:TemporalInterpolation */
enum turb1__TemporalInterpolation {
turb1__TemporalInterpolation__None = 0,
turb1__TemporalInterpolation__PCHIP = 1
};
#endif
/******************************************************************************\
* *
* Types with Custom Serializers *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Structs and Unions *
* *
\******************************************************************************/
struct xsd__base64Binary; /* TurbulenceService.h:136 */
struct turb1__ArrayOfPoint3; /* TurbulenceService.h:217 */
struct turb1__Point3; /* TurbulenceService.h:221 */
struct turb1__ArrayOfVector3; /* TurbulenceService.h:253 */
struct turb1__Vector3; /* TurbulenceService.h:257 */
struct turb1__ArrayOfPressure; /* TurbulenceService.h:289 */
struct turb1__Pressure; /* TurbulenceService.h:293 */
struct turb1__ArrayOfVector3P; /* TurbulenceService.h:321 */
struct turb1__Vector3P; /* TurbulenceService.h:325 */
struct turb1__ArrayOfVelocityGradient; /* TurbulenceService.h:359 */
struct turb1__VelocityGradient; /* TurbulenceService.h:363 */
struct turb1__ArrayOfVelocityHessian; /* TurbulenceService.h:407 */
struct turb1__VelocityHessian; /* TurbulenceService.h:411 */
struct turb1__ArrayOfPressureHessian; /* TurbulenceService.h:473 */
struct turb1__PressureHessian; /* TurbulenceService.h:477 */
struct turb1__ArrayOfThresholdInfo; /* TurbulenceService.h:515 */
struct turb1__ThresholdInfo; /* TurbulenceService.h:519 */
struct turb1__ArrayOfSGSTensor; /* TurbulenceService.h:553 */
struct turb1__SGSTensor; /* TurbulenceService.h:557 */
struct turb1__ArrayOfFloat; /* TurbulenceService.h:595 */
struct turb1__ArrayOfArrayOfFloat; /* TurbulenceService.h:612 */
struct _turb1__NullOp; /* TurbulenceService.h:630 */
struct _turb1__NullOpResponse; /* TurbulenceService.h:648 */
struct _turb1__GetVelocity; /* TurbulenceService.h:664 */
struct _turb1__GetVelocityResponse; /* TurbulenceService.h:692 */
struct _turb1__GetMagneticField; /* TurbulenceService.h:708 */
struct _turb1__GetMagneticFieldResponse; /* TurbulenceService.h:736 */
struct _turb1__GetVectorPotential; /* TurbulenceService.h:752 */
struct _turb1__GetVectorPotentialResponse; /* TurbulenceService.h:780 */
struct _turb1__GetPressure; /* TurbulenceService.h:796 */
struct _turb1__GetPressureResponse; /* TurbulenceService.h:824 */
struct _turb1__GetDensity; /* TurbulenceService.h:840 */
struct _turb1__GetDensityResponse; /* TurbulenceService.h:868 */
struct _turb1__GetTemperature; /* TurbulenceService.h:884 */
struct _turb1__GetTemperatureResponse; /* TurbulenceService.h:912 */
struct _turb1__GetVelocityAndPressure; /* TurbulenceService.h:928 */
struct _turb1__GetVelocityAndPressureResponse; /* TurbulenceService.h:956 */
struct _turb1__GetVelocityAndTemperature; /* TurbulenceService.h:972 */
struct _turb1__GetVelocityAndTemperatureResponse; /* TurbulenceService.h:1000 */
struct _turb1__GetVelocityGradient; /* TurbulenceService.h:1016 */
struct _turb1__GetVelocityGradientResponse; /* TurbulenceService.h:1044 */
struct _turb1__GetMagneticFieldGradient; /* TurbulenceService.h:1060 */
struct _turb1__GetMagneticFieldGradientResponse; /* TurbulenceService.h:1088 */
struct _turb1__GetVectorPotentialGradient; /* TurbulenceService.h:1104 */
struct _turb1__GetVectorPotentialGradientResponse; /* TurbulenceService.h:1132 */
struct _turb1__GetPressureGradient; /* TurbulenceService.h:1148 */
struct _turb1__GetPressureGradientResponse; /* TurbulenceService.h:1176 */
struct _turb1__GetDensityGradient; /* TurbulenceService.h:1192 */
struct _turb1__GetDensityGradientResponse; /* TurbulenceService.h:1220 */
struct _turb1__GetTemperatureGradient; /* TurbulenceService.h:1236 */
struct _turb1__GetTemperatureGradientResponse; /* TurbulenceService.h:1264 */
struct _turb1__GetVelocityHessian; /* TurbulenceService.h:1280 */
struct _turb1__GetVelocityHessianResponse; /* TurbulenceService.h:1308 */
struct _turb1__GetMagneticHessian; /* TurbulenceService.h:1324 */
struct _turb1__GetMagneticHessianResponse; /* TurbulenceService.h:1352 */
struct _turb1__GetVectorPotentialHessian; /* TurbulenceService.h:1368 */
struct _turb1__GetVectorPotentialHessianResponse; /* TurbulenceService.h:1396 */
struct _turb1__GetPressureHessian; /* TurbulenceService.h:1412 */
struct _turb1__GetPressureHessianResponse; /* TurbulenceService.h:1440 */
struct _turb1__GetDensityHessian; /* TurbulenceService.h:1456 */
struct _turb1__GetDensityHessianResponse; /* TurbulenceService.h:1484 */
struct _turb1__GetTemperatureHessian; /* TurbulenceService.h:1500 */
struct _turb1__GetTemperatureHessianResponse; /* TurbulenceService.h:1528 */
struct _turb1__GetVelocityLaplacian; /* TurbulenceService.h:1544 */
struct _turb1__GetVelocityLaplacianResponse; /* TurbulenceService.h:1572 */
struct _turb1__GetMagneticFieldLaplacian; /* TurbulenceService.h:1588 */
struct _turb1__GetMagneticFieldLaplacianResponse; /* TurbulenceService.h:1616 */
struct _turb1__GetVectorPotentialLaplacian; /* TurbulenceService.h:1632 */
struct _turb1__GetVectorPotentialLaplacianResponse; /* TurbulenceService.h:1660 */
struct _turb1__GetPosition; /* TurbulenceService.h:1676 */
struct _turb1__GetPositionResponse; /* TurbulenceService.h:1706 */
struct _turb1__GetThreshold; /* TurbulenceService.h:1722 */
struct _turb1__GetThresholdResponse; /* TurbulenceService.h:1762 */
struct _turb1__GetForce; /* TurbulenceService.h:1778 */
struct _turb1__GetForceResponse; /* TurbulenceService.h:1806 */
struct _turb1__GetInvariant; /* TurbulenceService.h:1822 */
struct _turb1__GetInvariantResponse; /* TurbulenceService.h:1850 */
struct _turb1__GetBoxFilter; /* TurbulenceService.h:1866 */
struct _turb1__GetBoxFilterResponse; /* TurbulenceService.h:1894 */
struct _turb1__GetBoxFilterSGS; /* TurbulenceService.h:1910 */
struct _turb1__GetBoxFilterSGSResponse; /* TurbulenceService.h:1938 */
struct _turb1__GetBoxFilterSGSsymtensor; /* TurbulenceService.h:1954 */
struct _turb1__GetBoxFilterSGSsymtensorResponse; /* TurbulenceService.h:1982 */
struct _turb1__GetBoxFilterSGStensor; /* TurbulenceService.h:1998 */
struct _turb1__GetBoxFilterSGStensorResponse; /* TurbulenceService.h:2026 */
struct _turb1__GetBoxFilterSGSvector; /* TurbulenceService.h:2042 */
struct _turb1__GetBoxFilterSGSvectorResponse; /* TurbulenceService.h:2070 */
struct _turb1__GetBoxFilterSGSscalar; /* TurbulenceService.h:2086 */
struct _turb1__GetBoxFilterSGSscalarResponse; /* TurbulenceService.h:2114 */
struct _turb1__GetBoxFilterGradient; /* TurbulenceService.h:2130 */
struct _turb1__GetBoxFilterGradientResponse; /* TurbulenceService.h:2160 */
struct _turb1__GetLaplacianOfGradient; /* TurbulenceService.h:2176 */
struct _turb1__GetLaplacianOfGradientResponse; /* TurbulenceService.h:2206 */
struct _turb1__GetVelocityBatch; /* TurbulenceService.h:2222 */
struct _turb1__GetVelocityBatchResponse; /* TurbulenceService.h:2250 */
struct _turb1__GetRawVelocity; /* TurbulenceService.h:2266 */
struct _turb1__GetRawVelocityResponse; /* TurbulenceService.h:2300 */
struct _turb1__GetRawMagneticField; /* TurbulenceService.h:2316 */
struct _turb1__GetRawMagneticFieldResponse; /* TurbulenceService.h:2350 */
struct _turb1__GetRawVectorPotential; /* TurbulenceService.h:2366 */
struct _turb1__GetRawVectorPotentialResponse; /* TurbulenceService.h:2400 */
struct _turb1__GetRawPressure; /* TurbulenceService.h:2416 */
struct _turb1__GetRawPressureResponse; /* TurbulenceService.h:2450 */
struct _turb1__GetRawDensity; /* TurbulenceService.h:2466 */
struct _turb1__GetRawDensityResponse; /* TurbulenceService.h:2500 */
struct _turb1__GetRawTemperature; /* TurbulenceService.h:2516 */
struct _turb1__GetRawTemperatureResponse; /* TurbulenceService.h:2550 */
struct _turb1__GetAnyCutoutWeb; /* TurbulenceService.h:2566 */
struct _turb1__GetAnyCutoutWebResponse; /* TurbulenceService.h:2610 */
struct _turb1__GetData_USCOREPython; /* TurbulenceService.h:2626 */
struct _turb1__GetData_USCOREPythonResponse; /* TurbulenceService.h:2654 */
struct _turb1__GetFilter_USCOREPython; /* TurbulenceService.h:2670 */
struct _turb1__GetFilter_USCOREPythonResponse; /* TurbulenceService.h:2702 */
struct _turb1__GetPosition_USCOREPython; /* TurbulenceService.h:2718 */
struct _turb1__GetPosition_USCOREPythonResponse; /* TurbulenceService.h:2748 */
struct _turb1__GetThreshold_USCOREPython; /* TurbulenceService.h:2764 */
struct _turb1__GetThreshold_USCOREPythonResponse; /* TurbulenceService.h:2804 */
struct __turb1__NullOp; /* TurbulenceService.h:3130 */
struct __turb1__GetVelocity; /* TurbulenceService.h:3189 */
struct __turb1__GetMagneticField; /* TurbulenceService.h:3248 */
struct __turb1__GetVectorPotential; /* TurbulenceService.h:3307 */
struct __turb1__GetPressure; /* TurbulenceService.h:3366 */
struct __turb1__GetDensity; /* TurbulenceService.h:3425 */
struct __turb1__GetTemperature; /* TurbulenceService.h:3484 */
struct __turb1__GetVelocityAndPressure; /* TurbulenceService.h:3543 */
struct __turb1__GetVelocityAndTemperature; /* TurbulenceService.h:3602 */
struct __turb1__GetVelocityGradient; /* TurbulenceService.h:3661 */
struct __turb1__GetMagneticFieldGradient; /* TurbulenceService.h:3720 */
struct __turb1__GetVectorPotentialGradient; /* TurbulenceService.h:3779 */
struct __turb1__GetPressureGradient; /* TurbulenceService.h:3838 */
struct __turb1__GetDensityGradient; /* TurbulenceService.h:3897 */
struct __turb1__GetTemperatureGradient; /* TurbulenceService.h:3956 */
struct __turb1__GetVelocityHessian; /* TurbulenceService.h:4015 */
struct __turb1__GetMagneticHessian; /* TurbulenceService.h:4074 */
struct __turb1__GetVectorPotentialHessian; /* TurbulenceService.h:4133 */
struct __turb1__GetPressureHessian; /* TurbulenceService.h:4192 */
struct __turb1__GetDensityHessian; /* TurbulenceService.h:4251 */
struct __turb1__GetTemperatureHessian; /* TurbulenceService.h:4310 */
struct __turb1__GetVelocityLaplacian; /* TurbulenceService.h:4369 */
struct __turb1__GetMagneticFieldLaplacian; /* TurbulenceService.h:4428 */
struct __turb1__GetVectorPotentialLaplacian; /* TurbulenceService.h:4487 */
struct __turb1__GetPosition; /* TurbulenceService.h:4547 */
struct __turb1__GetThreshold; /* TurbulenceService.h:4606 */
struct __turb1__GetForce; /* TurbulenceService.h:4665 */
struct __turb1__GetInvariant; /* TurbulenceService.h:4724 */
struct __turb1__GetBoxFilter; /* TurbulenceService.h:4783 */
struct __turb1__GetBoxFilterSGS; /* TurbulenceService.h:4844 */
struct __turb1__GetBoxFilterSGSsymtensor; /* TurbulenceService.h:4905 */
struct __turb1__GetBoxFilterSGStensor; /* TurbulenceService.h:4964 */
struct __turb1__GetBoxFilterSGSvector; /* TurbulenceService.h:5024 */
struct __turb1__GetBoxFilterSGSscalar; /* TurbulenceService.h:5083 */
struct __turb1__GetBoxFilterGradient; /* TurbulenceService.h:5142 */
struct __turb1__GetLaplacianOfGradient; /* TurbulenceService.h:5202 */
struct __turb1__GetVelocityBatch; /* TurbulenceService.h:5262 */
struct __turb1__GetRawVelocity; /* TurbulenceService.h:5322 */
struct __turb1__GetRawMagneticField; /* TurbulenceService.h:5382 */
struct __turb1__GetRawVectorPotential; /* TurbulenceService.h:5442 */
struct __turb1__GetRawPressure; /* TurbulenceService.h:5502 */
struct __turb1__GetRawDensity; /* TurbulenceService.h:5562 */
struct __turb1__GetRawTemperature; /* TurbulenceService.h:5622 */
struct __turb1__GetAnyCutoutWeb; /* TurbulenceService.h:5682 */
struct __turb1__GetData_USCOREPython; /* TurbulenceService.h:5741 */
struct __turb1__GetFilter_USCOREPython; /* TurbulenceService.h:5800 */
struct __turb1__GetPosition_USCOREPython; /* TurbulenceService.h:5859 */
struct __turb1__GetThreshold_USCOREPython; /* TurbulenceService.h:5918 */
struct __turb1__NullOp_; /* TurbulenceService.h:5977 */
struct __turb1__GetVelocity_; /* TurbulenceService.h:6036 */
struct __turb1__GetMagneticField_; /* TurbulenceService.h:6095 */
struct __turb1__GetVectorPotential_; /* TurbulenceService.h:6154 */
struct __turb1__GetPressure_; /* TurbulenceService.h:6213 */
struct __turb1__GetDensity_; /* TurbulenceService.h:6272 */
struct __turb1__GetTemperature_; /* TurbulenceService.h:6331 */
struct __turb1__GetVelocityAndPressure_; /* TurbulenceService.h:6390 */
struct __turb1__GetVelocityAndTemperature_; /* TurbulenceService.h:6449 */
struct __turb1__GetVelocityGradient_; /* TurbulenceService.h:6508 */
struct __turb1__GetMagneticFieldGradient_; /* TurbulenceService.h:6567 */
struct __turb1__GetVectorPotentialGradient_; /* TurbulenceService.h:6626 */
struct __turb1__GetPressureGradient_; /* TurbulenceService.h:6685 */
struct __turb1__GetDensityGradient_; /* TurbulenceService.h:6744 */
struct __turb1__GetTemperatureGradient_; /* TurbulenceService.h:6803 */
struct __turb1__GetVelocityHessian_; /* TurbulenceService.h:6862 */
struct __turb1__GetMagneticHessian_; /* TurbulenceService.h:6921 */
struct __turb1__GetVectorPotentialHessian_; /* TurbulenceService.h:6980 */
struct __turb1__GetPressureHessian_; /* TurbulenceService.h:7039 */
struct __turb1__GetDensityHessian_; /* TurbulenceService.h:7098 */
struct __turb1__GetTemperatureHessian_; /* TurbulenceService.h:7157 */
struct __turb1__GetVelocityLaplacian_; /* TurbulenceService.h:7216 */
struct __turb1__GetMagneticFieldLaplacian_; /* TurbulenceService.h:7275 */
struct __turb1__GetVectorPotentialLaplacian_; /* TurbulenceService.h:7334 */
struct __turb1__GetPosition_; /* TurbulenceService.h:7394 */
struct __turb1__GetThreshold_; /* TurbulenceService.h:7453 */
struct __turb1__GetForce_; /* TurbulenceService.h:7512 */
struct __turb1__GetInvariant_; /* TurbulenceService.h:7571 */
struct __turb1__GetBoxFilter_; /* TurbulenceService.h:7630 */
struct __turb1__GetBoxFilterSGS_; /* TurbulenceService.h:7691 */
struct __turb1__GetBoxFilterSGSsymtensor_; /* TurbulenceService.h:7752 */
struct __turb1__GetBoxFilterSGStensor_; /* TurbulenceService.h:7811 */
struct __turb1__GetBoxFilterSGSvector_; /* TurbulenceService.h:7871 */
struct __turb1__GetBoxFilterSGSscalar_; /* TurbulenceService.h:7930 */
struct __turb1__GetBoxFilterGradient_; /* TurbulenceService.h:7989 */
struct __turb1__GetLaplacianOfGradient_; /* TurbulenceService.h:8049 */
struct __turb1__GetVelocityBatch_; /* TurbulenceService.h:8109 */
struct __turb1__GetRawVelocity_; /* TurbulenceService.h:8169 */
struct __turb1__GetRawMagneticField_; /* TurbulenceService.h:8229 */
struct __turb1__GetRawVectorPotential_; /* TurbulenceService.h:8289 */
struct __turb1__GetRawPressure_; /* TurbulenceService.h:8349 */
struct __turb1__GetRawDensity_; /* TurbulenceService.h:8409 */
struct __turb1__GetRawTemperature_; /* TurbulenceService.h:8469 */
struct __turb1__GetAnyCutoutWeb_; /* TurbulenceService.h:8529 */
struct __turb1__GetData_USCOREPython_; /* TurbulenceService.h:8588 */
struct __turb1__GetFilter_USCOREPython_; /* TurbulenceService.h:8647 */
struct __turb1__GetPosition_USCOREPython_; /* TurbulenceService.h:8706 */
struct __turb1__GetThreshold_USCOREPython_; /* TurbulenceService.h:8765 */
/* TurbulenceService.h:136 */
#ifndef SOAP_TYPE_xsd__base64Binary
#define SOAP_TYPE_xsd__base64Binary (7)
/* binary data attached as MTOM/MIME/DIME attachment or included as *`xsd:base64Binary`* base64: */
struct xsd__base64Binary {
unsigned char *__ptr;
int __size;
/** Optional element 'id' of XML schema type 'xsd:string' */
char *id;
/** Optional element 'type' of XML schema type 'xsd:string' */
char *type;
/** Optional element 'options' of XML schema type 'xsd:string' */
char *options;
};
#endif
/* TurbulenceService.h:217 */
#ifndef SOAP_TYPE_turb1__ArrayOfPoint3
#define SOAP_TYPE_turb1__ArrayOfPoint3 (13)
/* complex XML schema type 'turb1:ArrayOfPoint3': */
struct turb1__ArrayOfPoint3 {
/** Sequence of elements 'turb1:Point3' of XML schema type 'turb1:Point3' stored in dynamic array Point3 of length __sizePoint3 */
int __sizePoint3;
struct turb1__Point3 *Point3;
};
#endif
/* TurbulenceService.h:221 */
#ifndef SOAP_TYPE_turb1__Point3
#define SOAP_TYPE_turb1__Point3 (14)
/* complex XML schema type 'turb1:Point3': */
struct turb1__Point3 {
/** Required element 'turb1:x' of XML schema type 'xsd:float' */
float x;
/** Required element 'turb1:y' of XML schema type 'xsd:float' */
float y;
/** Required element 'turb1:z' of XML schema type 'xsd:float' */
float z;
};
#endif
/* TurbulenceService.h:253 */
#ifndef SOAP_TYPE_turb1__ArrayOfVector3
#define SOAP_TYPE_turb1__ArrayOfVector3 (17)
/* complex XML schema type 'turb1:ArrayOfVector3': */
struct turb1__ArrayOfVector3 {
/** Sequence of elements 'turb1:Vector3' of XML schema type 'turb1:Vector3' stored in dynamic array Vector3 of length __sizeVector3 */
int __sizeVector3;
struct turb1__Vector3 *Vector3;
};
#endif
/* TurbulenceService.h:257 */
#ifndef SOAP_TYPE_turb1__Vector3
#define SOAP_TYPE_turb1__Vector3 (18)
/* complex XML schema type 'turb1:Vector3': */
struct turb1__Vector3 {
/** Required element 'turb1:x' of XML schema type 'xsd:float' */
float x;
/** Required element 'turb1:y' of XML schema type 'xsd:float' */
float y;
/** Required element 'turb1:z' of XML schema type 'xsd:float' */
float z;
};
#endif
/* TurbulenceService.h:289 */
#ifndef SOAP_TYPE_turb1__ArrayOfPressure
#define SOAP_TYPE_turb1__ArrayOfPressure (20)
/* complex XML schema type 'turb1:ArrayOfPressure': */
struct turb1__ArrayOfPressure {
/** Sequence of elements 'turb1:Pressure' of XML schema type 'turb1:Pressure' stored in dynamic array Pressure of length __sizePressure */
int __sizePressure;
struct turb1__Pressure *Pressure;
};
#endif
/* TurbulenceService.h:293 */
#ifndef SOAP_TYPE_turb1__Pressure
#define SOAP_TYPE_turb1__Pressure (21)
/* complex XML schema type 'turb1:Pressure': */
struct turb1__Pressure {
/** Required element 'turb1:p' of XML schema type 'xsd:float' */
float p;
};
#endif
/* TurbulenceService.h:321 */
#ifndef SOAP_TYPE_turb1__ArrayOfVector3P
#define SOAP_TYPE_turb1__ArrayOfVector3P (23)
/* complex XML schema type 'turb1:ArrayOfVector3P': */
struct turb1__ArrayOfVector3P {
/** Sequence of elements 'turb1:Vector3P' of XML schema type 'turb1:Vector3P' stored in dynamic array Vector3P of length __sizeVector3P */
int __sizeVector3P;
struct turb1__Vector3P *Vector3P;
};
#endif
/* TurbulenceService.h:325 */
#ifndef SOAP_TYPE_turb1__Vector3P
#define SOAP_TYPE_turb1__Vector3P (24)
/* complex XML schema type 'turb1:Vector3P': */
struct turb1__Vector3P {
/** Required element 'turb1:x' of XML schema type 'xsd:float' */
float x;
/** Required element 'turb1:y' of XML schema type 'xsd:float' */
float y;
/** Required element 'turb1:z' of XML schema type 'xsd:float' */
float z;
/** Required element 'turb1:p' of XML schema type 'xsd:float' */
float p;
};
#endif
/* TurbulenceService.h:359 */
#ifndef SOAP_TYPE_turb1__ArrayOfVelocityGradient
#define SOAP_TYPE_turb1__ArrayOfVelocityGradient (26)
/* complex XML schema type 'turb1:ArrayOfVelocityGradient': */
struct turb1__ArrayOfVelocityGradient {
/** Sequence of elements 'turb1:VelocityGradient' of XML schema type 'turb1:VelocityGradient' stored in dynamic array VelocityGradient of length __sizeVelocityGradient */
int __sizeVelocityGradient;
struct turb1__VelocityGradient *VelocityGradient;
};
#endif
/* TurbulenceService.h:363 */
#ifndef SOAP_TYPE_turb1__VelocityGradient
#define SOAP_TYPE_turb1__VelocityGradient (27)
/* complex XML schema type 'turb1:VelocityGradient': */
struct turb1__VelocityGradient {
/** Required element 'turb1:duxdx' of XML schema type 'xsd:float' */
float duxdx;
/** Required element 'turb1:duxdy' of XML schema type 'xsd:float' */
float duxdy;
/** Required element 'turb1:duxdz' of XML schema type 'xsd:float' */
float duxdz;
/** Required element 'turb1:duydx' of XML schema type 'xsd:float' */
float duydx;
/** Required element 'turb1:duydy' of XML schema type 'xsd:float' */
float duydy;
/** Required element 'turb1:duydz' of XML schema type 'xsd:float' */
float duydz;
/** Required element 'turb1:duzdx' of XML schema type 'xsd:float' */
float duzdx;
/** Required element 'turb1:duzdy' of XML schema type 'xsd:float' */
float duzdy;
/** Required element 'turb1:duzdz' of XML schema type 'xsd:float' */
float duzdz;
};
#endif
/* TurbulenceService.h:407 */
#ifndef SOAP_TYPE_turb1__ArrayOfVelocityHessian
#define SOAP_TYPE_turb1__ArrayOfVelocityHessian (29)
/* complex XML schema type 'turb1:ArrayOfVelocityHessian': */
struct turb1__ArrayOfVelocityHessian {
/** Sequence of elements 'turb1:VelocityHessian' of XML schema type 'turb1:VelocityHessian' stored in dynamic array VelocityHessian of length __sizeVelocityHessian */
int __sizeVelocityHessian;
struct turb1__VelocityHessian *VelocityHessian;
};
#endif
/* TurbulenceService.h:411 */
#ifndef SOAP_TYPE_turb1__VelocityHessian
#define SOAP_TYPE_turb1__VelocityHessian (30)
/* complex XML schema type 'turb1:VelocityHessian': */
struct turb1__VelocityHessian {
/** Required element 'turb1:d2uxdxdx' of XML schema type 'xsd:float' */
float d2uxdxdx;
/** Required element 'turb1:d2uxdxdy' of XML schema type 'xsd:float' */
float d2uxdxdy;
/** Required element 'turb1:d2uxdxdz' of XML schema type 'xsd:float' */
float d2uxdxdz;
/** Required element 'turb1:d2uxdydy' of XML schema type 'xsd:float' */
float d2uxdydy;
/** Required element 'turb1:d2uxdydz' of XML schema type 'xsd:float' */
float d2uxdydz;
/** Required element 'turb1:d2uxdzdz' of XML schema type 'xsd:float' */
float d2uxdzdz;
/** Required element 'turb1:d2uydxdx' of XML schema type 'xsd:float' */
float d2uydxdx;
/** Required element 'turb1:d2uydxdy' of XML schema type 'xsd:float' */
float d2uydxdy;
/** Required element 'turb1:d2uydxdz' of XML schema type 'xsd:float' */
float d2uydxdz;
/** Required element 'turb1:d2uydydy' of XML schema type 'xsd:float' */
float d2uydydy;
/** Required element 'turb1:d2uydydz' of XML schema type 'xsd:float' */
float d2uydydz;
/** Required element 'turb1:d2uydzdz' of XML schema type 'xsd:float' */
float d2uydzdz;
/** Required element 'turb1:d2uzdxdx' of XML schema type 'xsd:float' */
float d2uzdxdx;
/** Required element 'turb1:d2uzdxdy' of XML schema type 'xsd:float' */
float d2uzdxdy;
/** Required element 'turb1:d2uzdxdz' of XML schema type 'xsd:float' */
float d2uzdxdz;
/** Required element 'turb1:d2uzdydy' of XML schema type 'xsd:float' */
float d2uzdydy;
/** Required element 'turb1:d2uzdydz' of XML schema type 'xsd:float' */
float d2uzdydz;
/** Required element 'turb1:d2uzdzdz' of XML schema type 'xsd:float' */
float d2uzdzdz;
};
#endif
/* TurbulenceService.h:473 */
#ifndef SOAP_TYPE_turb1__ArrayOfPressureHessian
#define SOAP_TYPE_turb1__ArrayOfPressureHessian (32)
/* complex XML schema type 'turb1:ArrayOfPressureHessian': */
struct turb1__ArrayOfPressureHessian {
/** Sequence of elements 'turb1:PressureHessian' of XML schema type 'turb1:PressureHessian' stored in dynamic array PressureHessian of length __sizePressureHessian */
int __sizePressureHessian;
struct turb1__PressureHessian *PressureHessian;
};
#endif
/* TurbulenceService.h:477 */
#ifndef SOAP_TYPE_turb1__PressureHessian
#define SOAP_TYPE_turb1__PressureHessian (33)
/* complex XML schema type 'turb1:PressureHessian': */
struct turb1__PressureHessian {
/** Required element 'turb1:d2pdxdx' of XML schema type 'xsd:float' */
float d2pdxdx;
/** Required element 'turb1:d2pdxdy' of XML schema type 'xsd:float' */
float d2pdxdy;
/** Required element 'turb1:d2pdxdz' of XML schema type 'xsd:float' */
float d2pdxdz;
/** Required element 'turb1:d2pdydy' of XML schema type 'xsd:float' */
float d2pdydy;
/** Required element 'turb1:d2pdydz' of XML schema type 'xsd:float' */
float d2pdydz;
/** Required element 'turb1:d2pdzdz' of XML schema type 'xsd:float' */
float d2pdzdz;
};
#endif
/* TurbulenceService.h:515 */
#ifndef SOAP_TYPE_turb1__ArrayOfThresholdInfo
#define SOAP_TYPE_turb1__ArrayOfThresholdInfo (35)
/* complex XML schema type 'turb1:ArrayOfThresholdInfo': */
struct turb1__ArrayOfThresholdInfo {
/** Sequence of elements 'turb1:ThresholdInfo' of XML schema type 'turb1:ThresholdInfo' stored in dynamic array ThresholdInfo of length __sizeThresholdInfo */
int __sizeThresholdInfo;
struct turb1__ThresholdInfo *ThresholdInfo;
};
#endif
/* TurbulenceService.h:519 */
#ifndef SOAP_TYPE_turb1__ThresholdInfo
#define SOAP_TYPE_turb1__ThresholdInfo (36)
/* complex XML schema type 'turb1:ThresholdInfo': */
struct turb1__ThresholdInfo {
/** Required element 'turb1:x' of XML schema type 'xsd:int' */
int x;
/** Required element 'turb1:y' of XML schema type 'xsd:int' */
int y;
/** Required element 'turb1:z' of XML schema type 'xsd:int' */
int z;
/** Required element 'turb1:value' of XML schema type 'xsd:float' */
float value;
};
#endif
/* TurbulenceService.h:553 */
#ifndef SOAP_TYPE_turb1__ArrayOfSGSTensor
#define SOAP_TYPE_turb1__ArrayOfSGSTensor (38)
/* complex XML schema type 'turb1:ArrayOfSGSTensor': */
struct turb1__ArrayOfSGSTensor {
/** Sequence of elements 'turb1:SGSTensor' of XML schema type 'turb1:SGSTensor' stored in dynamic array SGSTensor of length __sizeSGSTensor */
int __sizeSGSTensor;
struct turb1__SGSTensor *SGSTensor;
};
#endif
/* TurbulenceService.h:557 */
#ifndef SOAP_TYPE_turb1__SGSTensor
#define SOAP_TYPE_turb1__SGSTensor (39)
/* complex XML schema type 'turb1:SGSTensor': */
struct turb1__SGSTensor {
/** Required element 'turb1:xx' of XML schema type 'xsd:float' */
float xx;
/** Required element 'turb1:yy' of XML schema type 'xsd:float' */
float yy;
/** Required element 'turb1:zz' of XML schema type 'xsd:float' */
float zz;
/** Required element 'turb1:xy' of XML schema type 'xsd:float' */
float xy;
/** Required element 'turb1:xz' of XML schema type 'xsd:float' */
float xz;
/** Required element 'turb1:yz' of XML schema type 'xsd:float' */
float yz;
};
#endif
/* TurbulenceService.h:595 */
#ifndef SOAP_TYPE_turb1__ArrayOfFloat
#define SOAP_TYPE_turb1__ArrayOfFloat (41)
/* complex XML schema type 'turb1:ArrayOfFloat': */
struct turb1__ArrayOfFloat {
/** Sequence of elements 'turb1:float' of XML schema type 'xsd:float' stored in dynamic array float_ of length __sizefloat_ */
int __sizefloat_;
float *float_;
};
#endif
/* TurbulenceService.h:612 */
#ifndef SOAP_TYPE_turb1__ArrayOfArrayOfFloat
#define SOAP_TYPE_turb1__ArrayOfArrayOfFloat (43)
/* complex XML schema type 'turb1:ArrayOfArrayOfFloat': */
struct turb1__ArrayOfArrayOfFloat {
/** Sequence of elements 'turb1:ArrayOfFloat' of XML schema type 'turb1:ArrayOfFloat' stored in dynamic array ArrayOfFloat of length __sizeArrayOfFloat */
int __sizeArrayOfFloat;
struct turb1__ArrayOfFloat *ArrayOfFloat;
};
#endif
/* TurbulenceService.h:630 */
#ifndef SOAP_TYPE__turb1__NullOp
#define SOAP_TYPE__turb1__NullOp (45)
/* complex XML schema type 'turb1:NullOp': */
struct _turb1__NullOp {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
};
#endif
/* TurbulenceService.h:648 */
#ifndef SOAP_TYPE__turb1__NullOpResponse
#define SOAP_TYPE__turb1__NullOpResponse (47)
/* complex XML schema type 'turb1:NullOpResponse': */
struct _turb1__NullOpResponse {
/** Optional element 'turb1:NullOpResult' of XML schema type 'turb1:ArrayOfVector3' */
struct turb1__ArrayOfVector3 *NullOpResult;
};
#endif
/* TurbulenceService.h:664 */
#ifndef SOAP_TYPE__turb1__GetVelocity
#define SOAP_TYPE__turb1__GetVelocity (49)
/* complex XML schema type 'turb1:GetVelocity': */
struct _turb1__GetVelocity {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:692 */
#ifndef SOAP_TYPE__turb1__GetVelocityResponse
#define SOAP_TYPE__turb1__GetVelocityResponse (50)
/* complex XML schema type 'turb1:GetVelocityResponse': */
struct _turb1__GetVelocityResponse {
/** Optional element 'turb1:GetVelocityResult' of XML schema type 'turb1:ArrayOfVector3' */
struct turb1__ArrayOfVector3 *GetVelocityResult;
};
#endif
/* TurbulenceService.h:708 */
#ifndef SOAP_TYPE__turb1__GetMagneticField
#define SOAP_TYPE__turb1__GetMagneticField (51)
/* complex XML schema type 'turb1:GetMagneticField': */
struct _turb1__GetMagneticField {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:736 */
#ifndef SOAP_TYPE__turb1__GetMagneticFieldResponse
#define SOAP_TYPE__turb1__GetMagneticFieldResponse (52)
/* complex XML schema type 'turb1:GetMagneticFieldResponse': */
struct _turb1__GetMagneticFieldResponse {
/** Optional element 'turb1:GetMagneticFieldResult' of XML schema type 'turb1:ArrayOfVector3' */
struct turb1__ArrayOfVector3 *GetMagneticFieldResult;
};
#endif
/* TurbulenceService.h:752 */
#ifndef SOAP_TYPE__turb1__GetVectorPotential
#define SOAP_TYPE__turb1__GetVectorPotential (53)
/* complex XML schema type 'turb1:GetVectorPotential': */
struct _turb1__GetVectorPotential {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:780 */
#ifndef SOAP_TYPE__turb1__GetVectorPotentialResponse
#define SOAP_TYPE__turb1__GetVectorPotentialResponse (54)
/* complex XML schema type 'turb1:GetVectorPotentialResponse': */
struct _turb1__GetVectorPotentialResponse {
/** Optional element 'turb1:GetVectorPotentialResult' of XML schema type 'turb1:ArrayOfVector3' */
struct turb1__ArrayOfVector3 *GetVectorPotentialResult;
};
#endif
/* TurbulenceService.h:796 */
#ifndef SOAP_TYPE__turb1__GetPressure
#define SOAP_TYPE__turb1__GetPressure (55)
/* complex XML schema type 'turb1:GetPressure': */
struct _turb1__GetPressure {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:824 */
#ifndef SOAP_TYPE__turb1__GetPressureResponse
#define SOAP_TYPE__turb1__GetPressureResponse (56)
/* complex XML schema type 'turb1:GetPressureResponse': */
struct _turb1__GetPressureResponse {
/** Optional element 'turb1:GetPressureResult' of XML schema type 'turb1:ArrayOfPressure' */
struct turb1__ArrayOfPressure *GetPressureResult;
};
#endif
/* TurbulenceService.h:840 */
#ifndef SOAP_TYPE__turb1__GetDensity
#define SOAP_TYPE__turb1__GetDensity (58)
/* complex XML schema type 'turb1:GetDensity': */
struct _turb1__GetDensity {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:868 */
#ifndef SOAP_TYPE__turb1__GetDensityResponse
#define SOAP_TYPE__turb1__GetDensityResponse (59)
/* complex XML schema type 'turb1:GetDensityResponse': */
struct _turb1__GetDensityResponse {
/** Optional element 'turb1:GetDensityResult' of XML schema type 'turb1:ArrayOfPressure' */
struct turb1__ArrayOfPressure *GetDensityResult;
};
#endif
/* TurbulenceService.h:884 */
#ifndef SOAP_TYPE__turb1__GetTemperature
#define SOAP_TYPE__turb1__GetTemperature (60)
/* complex XML schema type 'turb1:GetTemperature': */
struct _turb1__GetTemperature {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:912 */
#ifndef SOAP_TYPE__turb1__GetTemperatureResponse
#define SOAP_TYPE__turb1__GetTemperatureResponse (61)
/* complex XML schema type 'turb1:GetTemperatureResponse': */
struct _turb1__GetTemperatureResponse {
/** Optional element 'turb1:GetTemperatureResult' of XML schema type 'turb1:ArrayOfPressure' */
struct turb1__ArrayOfPressure *GetTemperatureResult;
};
#endif
/* TurbulenceService.h:928 */
#ifndef SOAP_TYPE__turb1__GetVelocityAndPressure
#define SOAP_TYPE__turb1__GetVelocityAndPressure (62)
/* complex XML schema type 'turb1:GetVelocityAndPressure': */
struct _turb1__GetVelocityAndPressure {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:956 */
#ifndef SOAP_TYPE__turb1__GetVelocityAndPressureResponse
#define SOAP_TYPE__turb1__GetVelocityAndPressureResponse (63)
/* complex XML schema type 'turb1:GetVelocityAndPressureResponse': */
struct _turb1__GetVelocityAndPressureResponse {
/** Optional element 'turb1:GetVelocityAndPressureResult' of XML schema type 'turb1:ArrayOfVector3P' */
struct turb1__ArrayOfVector3P *GetVelocityAndPressureResult;
};
#endif
/* TurbulenceService.h:972 */
#ifndef SOAP_TYPE__turb1__GetVelocityAndTemperature
#define SOAP_TYPE__turb1__GetVelocityAndTemperature (65)
/* complex XML schema type 'turb1:GetVelocityAndTemperature': */
struct _turb1__GetVelocityAndTemperature {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:1000 */
#ifndef SOAP_TYPE__turb1__GetVelocityAndTemperatureResponse
#define SOAP_TYPE__turb1__GetVelocityAndTemperatureResponse (66)
/* complex XML schema type 'turb1:GetVelocityAndTemperatureResponse': */
struct _turb1__GetVelocityAndTemperatureResponse {
/** Optional element 'turb1:GetVelocityAndTemperatureResult' of XML schema type 'turb1:ArrayOfVector3P' */
struct turb1__ArrayOfVector3P *GetVelocityAndTemperatureResult;
};
#endif
/* TurbulenceService.h:1016 */
#ifndef SOAP_TYPE__turb1__GetVelocityGradient
#define SOAP_TYPE__turb1__GetVelocityGradient (67)
/* complex XML schema type 'turb1:GetVelocityGradient': */
struct _turb1__GetVelocityGradient {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:1044 */
#ifndef SOAP_TYPE__turb1__GetVelocityGradientResponse
#define SOAP_TYPE__turb1__GetVelocityGradientResponse (68)
/* complex XML schema type 'turb1:GetVelocityGradientResponse': */
struct _turb1__GetVelocityGradientResponse {
/** Optional element 'turb1:GetVelocityGradientResult' of XML schema type 'turb1:ArrayOfVelocityGradient' */
struct turb1__ArrayOfVelocityGradient *GetVelocityGradientResult;
};
#endif
/* TurbulenceService.h:1060 */
#ifndef SOAP_TYPE__turb1__GetMagneticFieldGradient
#define SOAP_TYPE__turb1__GetMagneticFieldGradient (70)
/* complex XML schema type 'turb1:GetMagneticFieldGradient': */
struct _turb1__GetMagneticFieldGradient {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:1088 */
#ifndef SOAP_TYPE__turb1__GetMagneticFieldGradientResponse
#define SOAP_TYPE__turb1__GetMagneticFieldGradientResponse (71)
/* complex XML schema type 'turb1:GetMagneticFieldGradientResponse': */
struct _turb1__GetMagneticFieldGradientResponse {
/** Optional element 'turb1:GetMagneticFieldGradientResult' of XML schema type 'turb1:ArrayOfVelocityGradient' */
struct turb1__ArrayOfVelocityGradient *GetMagneticFieldGradientResult;
};
#endif
/* TurbulenceService.h:1104 */
#ifndef SOAP_TYPE__turb1__GetVectorPotentialGradient
#define SOAP_TYPE__turb1__GetVectorPotentialGradient (72)
/* complex XML schema type 'turb1:GetVectorPotentialGradient': */
struct _turb1__GetVectorPotentialGradient {
/** Optional element 'turb1:authToken' of XML schema type 'xsd:string' */
char *authToken;
/** Optional element 'turb1:dataset' of XML schema type 'xsd:string' */
char *dataset;
/** Required element 'turb1:time' of XML schema type 'xsd:float' */
float time;
/** Required element 'turb1:spatialInterpolation' of XML schema type 'turb1:SpatialInterpolation' */
enum turb1__SpatialInterpolation spatialInterpolation;
/** Required element 'turb1:temporalInterpolation' of XML schema type 'turb1:TemporalInterpolation' */
enum turb1__TemporalInterpolation temporalInterpolation;
/** Optional element 'turb1:points' of XML schema type 'turb1:ArrayOfPoint3' */
struct turb1__ArrayOfPoint3 *points;
/** Optional element 'turb1:addr' of XML schema type 'xsd:string' */
char *addr;
};
#endif
/* TurbulenceService.h:1132 */
#ifndef SOAP_TYPE__turb1__GetVectorPotentialGradientResponse
#define SOAP_TYPE__turb1__GetVectorPotentialGradientResponse (73)
/* complex XML schema type 'turb1:GetVectorPotentialGradientResponse': */
struct _turb1__GetVectorPotentialGradientResponse {
/** Optional element 'turb1:GetVectorPotentialGradientResult' of XML schema type 'turb1:ArrayOfVelocityGradient' */
struct turb1__ArrayOfVelocityGradient *GetVectorPotentialGradientResult;
};
#endif
/* TurbulenceService.h:1148 */
#ifndef SOAP_TYPE__turb1__GetPressureGradient