ansys-api-systemcoupling 0.2.0__py3-none-any.whl → 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ansys/api/systemcoupling/VERSION +1 -1
- ansys/api/systemcoupling/v0/chart.proto +159 -0
- ansys/api/systemcoupling/v0/chart_pb2.py +53 -0
- ansys/api/systemcoupling/v0/chart_pb2.pyi +309 -0
- ansys/api/systemcoupling/v0/chart_pb2_grpc.py +181 -0
- ansys/api/systemcoupling/v0/chart_pb2_grpc.pyi +89 -0
- ansys/api/systemcoupling/v0/command_pb2.py +3 -30
- ansys/api/systemcoupling/v0/error_pb2.py +3 -12
- ansys/api/systemcoupling/v0/output_stream_pb2.py +3 -21
- ansys/api/systemcoupling/v0/process_pb2.py +3 -37
- ansys/api/systemcoupling/v0/solution_pb2.py +3 -53
- ansys/api/systemcoupling/v0/variant_pb2.py +3 -73
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/METADATA +15 -5
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/RECORD +18 -13
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/WHEEL +1 -1
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/entry_points.txt +0 -0
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info/licenses}/LICENSE +0 -0
- {ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/top_level.txt +0 -0
ansys/api/systemcoupling/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.3.1
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package ansys.api.systemcoupling.v0;
|
|
4
|
+
|
|
5
|
+
// Enum containing the different types of chart series.
|
|
6
|
+
enum TransferSeriesType {
|
|
7
|
+
SERIES_TYPE_UNKNOWN=0;
|
|
8
|
+
SERIES_TYPE_CONVERGENCE = 1;
|
|
9
|
+
SERIES_TYPE_SUM = 2;
|
|
10
|
+
SERIES_TYPE_WEIGHTED_AVERAGE = 3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// Information about the chart series data associated with a data transfer.
|
|
14
|
+
message TransferSeriesInfo {
|
|
15
|
+
// The type of line series.
|
|
16
|
+
TransferSeriesType series_type = 1;
|
|
17
|
+
// The unique internal name of the data transfer.
|
|
18
|
+
string transfer_name = 2;
|
|
19
|
+
// The unique internal name of the participant. This is required for transfer value series
|
|
20
|
+
// but is empty for CONVERGENCE series. Used in chart labelling.
|
|
21
|
+
string participant_name = 3;
|
|
22
|
+
// The suffix for this component series, if applicable. This is only needed for
|
|
23
|
+
// transfer value series that have multiple components, such as complex or vector
|
|
24
|
+
// values. Suffixes for complex components are "real" and "imag", and suffixes for
|
|
25
|
+
// vector components are "x", "y", and "z". A combination is possible, such as
|
|
26
|
+
// "y real" and "x imag". (Empty for CONVERGENCE series)
|
|
27
|
+
string component_suffix = 4;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Information about the chart series data associated with a single interface.
|
|
31
|
+
message InterfaceInfo {
|
|
32
|
+
// The name of the coupling interface data model object.
|
|
33
|
+
string interface_name = 1;
|
|
34
|
+
// The list of TransferSeriesInfo associated with this interface.
|
|
35
|
+
repeated TransferSeriesInfo transfer_info = 2;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Complete metadata for available chart series.
|
|
39
|
+
message ChartMetadata {
|
|
40
|
+
// Whether the chart is for a transient analysis.
|
|
41
|
+
bool is_transient = 1;
|
|
42
|
+
// The metadata for the series associated with each interface.
|
|
43
|
+
repeated InterfaceInfo interface_info = 2;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// The plot data for a single chart line series and information to allow
|
|
47
|
+
// it to be associated with chart metadata.
|
|
48
|
+
// An instance of this type is assumed to be associated with a single interface.
|
|
49
|
+
// This message supports per-iteration incremental data, batched data for a
|
|
50
|
+
// subset of iterations, or complete data for all iterations.
|
|
51
|
+
message SeriesData {
|
|
52
|
+
// The name of the interface this series is associated with.
|
|
53
|
+
string interface_name = 1;
|
|
54
|
+
// Index of the TransferSeriesInfo metadata for this series within the
|
|
55
|
+
// InterfaceInfo for the interface this series is associated with.
|
|
56
|
+
int32 transfer_series_index = 2;
|
|
57
|
+
// The 0-based start index of the data field. This defaults to 0 and
|
|
58
|
+
// only needs to be set to a different value if incremental data, such
|
|
59
|
+
// as might arise during "live" update of plots, has become available.
|
|
60
|
+
// Data indexes correspond to iterations. Iteration N will have an
|
|
61
|
+
// index of N-1.
|
|
62
|
+
int32 start_index = 3;
|
|
63
|
+
// The series data. This is always indexed by iteration. Extract time
|
|
64
|
+
// step-based data by using a time step to iteration mapping.
|
|
65
|
+
repeated double data = 4;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
// Message providing notification and details of a new timestep in a transient analysis.
|
|
70
|
+
// This message is intended for use in live updates. See TimestepData for
|
|
71
|
+
// cumulative timestep information.
|
|
72
|
+
message TimestepStart {
|
|
73
|
+
// The timestep count of the new timestep.
|
|
74
|
+
int32 timestep_count = 1;
|
|
75
|
+
// The end time of the current timestep.
|
|
76
|
+
// For the first timestep, this is the timestep size. For subsequent
|
|
77
|
+
// timesteps, the timestep size can be determined by subtracting the previous
|
|
78
|
+
// time value from the current time value.
|
|
79
|
+
double time = 2;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// Message providing notification and details of the end of a timestep in a transient analysis.
|
|
83
|
+
// This message is intended for use in live updates. See TimestepData for
|
|
84
|
+
// cumulative timestep information.
|
|
85
|
+
message TimestepEnd {
|
|
86
|
+
// The timestep count of the ended timestep.
|
|
87
|
+
int32 timestep_count = 1;
|
|
88
|
+
// The ending iteration for the timestep. NB: This is a 1-based iteration count.
|
|
89
|
+
int32 iteration_count = 2;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Chart data event that can contain different types of chart data.
|
|
93
|
+
// The first event in a stream will typically contain interface metadata,
|
|
94
|
+
// followed by series data and timestep data as they become available.
|
|
95
|
+
message ChartDataEvent {
|
|
96
|
+
oneof event_data {
|
|
97
|
+
// Metadata containing information about the available series.
|
|
98
|
+
ChartMetadata metadata = 1;
|
|
99
|
+
// Series data for a specific chart line series.
|
|
100
|
+
SeriesData series_data = 2;
|
|
101
|
+
// Timestep start notification for transient analyses.
|
|
102
|
+
TimestepStart timestep_start = 3;
|
|
103
|
+
// Timestep end notification for transient analyses.
|
|
104
|
+
TimestepEnd timestep_end = 4;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// Message providing all series data for all interfaces.
|
|
109
|
+
// For use in post-solve, non-streaming retrieval of chart data.
|
|
110
|
+
message AllSeriesData {
|
|
111
|
+
// List of all available series data.
|
|
112
|
+
repeated SeriesData series_data = 1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// Message providing all timestep data for transient analyses.
|
|
116
|
+
// For use in post-solve, non-streaming retrieval of chart data.
|
|
117
|
+
message TimestepData {
|
|
118
|
+
// The mapping of timestep count to iteration count.
|
|
119
|
+
// NB: these are 1-based step and iteration counts.
|
|
120
|
+
repeated int32 timestep_to_iteration = 1;
|
|
121
|
+
// The time values for each timestep.
|
|
122
|
+
repeated double time_values = 2;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// Service for querying chart data, both as a "live" stream during a solve
|
|
126
|
+
// and as non-streaming requests for data after a solve has been performed.
|
|
127
|
+
service ChartData {
|
|
128
|
+
// Streams chart data events starting with interface metadata followed by
|
|
129
|
+
// series data and timestep data as they become available on the server.
|
|
130
|
+
// For transient cases, timestep data will be included in the stream.
|
|
131
|
+
rpc StreamChartData(ChartDataRequest) returns (stream ChartDataEvent);
|
|
132
|
+
|
|
133
|
+
// The following RPCs provide non-streaming access to chart data.
|
|
134
|
+
// This should be available as long as a solve has been performed
|
|
135
|
+
// in the current session.
|
|
136
|
+
|
|
137
|
+
// Retrieves the chart metadata for all available series.
|
|
138
|
+
rpc GetChartMetadata(ChartMetadataRequest) returns (ChartMetadata);
|
|
139
|
+
// Retrieves all data for all chart series.
|
|
140
|
+
rpc GetChartSeriesData(ChartSeriesDataRequest) returns (AllSeriesData);
|
|
141
|
+
// Retrieves all data for all chart timesteps.
|
|
142
|
+
rpc GetChartTimestepData(ChartTimestepDataRequest) returns (TimestepData);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Request message for chart data streaming.
|
|
146
|
+
message ChartDataRequest {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// Request message for chart metadata retrieval.
|
|
150
|
+
message ChartMetadataRequest {
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Request message for all chart series data retrieval.
|
|
154
|
+
message ChartSeriesDataRequest {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// Request message for chart timestep data retrieval.
|
|
158
|
+
message ChartTimestepDataRequest {
|
|
159
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: ansys/api/systemcoupling/v0/chart.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'ansys/api/systemcoupling/v0/chart.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"\xa5\x01\n\x12TransferSeriesInfo\x12\x44\n\x0bseries_type\x18\x01 \x01(\x0e\x32/.ansys.api.systemcoupling.v0.TransferSeriesType\x12\x15\n\rtransfer_name\x18\x02 \x01(\t\x12\x18\n\x10participant_name\x18\x03 \x01(\t\x12\x18\n\x10\x63omponent_suffix\x18\x04 \x01(\t\"o\n\rInterfaceInfo\x12\x16\n\x0einterface_name\x18\x01 \x01(\t\x12\x46\n\rtransfer_info\x18\x02 \x03(\x0b\x32/.ansys.api.systemcoupling.v0.TransferSeriesInfo\"i\n\rChartMetadata\x12\x14\n\x0cis_transient\x18\x01 \x01(\x08\x12\x42\n\x0einterface_info\x18\x02 \x03(\x0b\x32*.ansys.api.systemcoupling.v0.InterfaceInfo\"f\n\nSeriesData\x12\x16\n\x0einterface_name\x18\x01 \x01(\t\x12\x1d\n\x15transfer_series_index\x18\x02 \x01(\x05\x12\x13\n\x0bstart_index\x18\x03 \x01(\x05\x12\x0c\n\x04\x64\x61ta\x18\x04 \x03(\x01\"5\n\rTimestepStart\x12\x16\n\x0etimestep_count\x18\x01 \x01(\x05\x12\x0c\n\x04time\x18\x02 \x01(\x01\">\n\x0bTimestepEnd\x12\x16\n\x0etimestep_count\x18\x01 \x01(\x05\x12\x17\n\x0fiteration_count\x18\x02 \x01(\x05\"\xa6\x02\n\x0e\x43hartDataEvent\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32*.ansys.api.systemcoupling.v0.ChartMetadataH\x00\x12>\n\x0bseries_data\x18\x02 \x01(\x0b\x32\'.ansys.api.systemcoupling.v0.SeriesDataH\x00\x12\x44\n\x0etimestep_start\x18\x03 \x01(\x0b\x32*.ansys.api.systemcoupling.v0.TimestepStartH\x00\x12@\n\x0ctimestep_end\x18\x04 \x01(\x0b\x32(.ansys.api.systemcoupling.v0.TimestepEndH\x00\x42\x0c\n\nevent_data\"M\n\rAllSeriesData\x12<\n\x0bseries_data\x18\x01 \x03(\x0b\x32\'.ansys.api.systemcoupling.v0.SeriesData\"B\n\x0cTimestepData\x12\x1d\n\x15timestep_to_iteration\x18\x01 \x03(\x05\x12\x13\n\x0btime_values\x18\x02 \x03(\x01\"\x12\n\x10\x43hartDataRequest\"\x16\n\x14\x43hartMetadataRequest\"\x18\n\x16\x43hartSeriesDataRequest\"\x1a\n\x18\x43hartTimestepDataRequest*\x81\x01\n\x12TransferSeriesType\x12\x17\n\x13SERIES_TYPE_UNKNOWN\x10\x00\x12\x1b\n\x17SERIES_TYPE_CONVERGENCE\x10\x01\x12\x13\n\x0fSERIES_TYPE_SUM\x10\x02\x12 \n\x1cSERIES_TYPE_WEIGHTED_AVERAGE\x10\x03\x32\xe0\x03\n\tChartData\x12o\n\x0fStreamChartData\x12-.ansys.api.systemcoupling.v0.ChartDataRequest\x1a+.ansys.api.systemcoupling.v0.ChartDataEvent0\x01\x12q\n\x10GetChartMetadata\x12\x31.ansys.api.systemcoupling.v0.ChartMetadataRequest\x1a*.ansys.api.systemcoupling.v0.ChartMetadata\x12u\n\x12GetChartSeriesData\x12\x33.ansys.api.systemcoupling.v0.ChartSeriesDataRequest\x1a*.ansys.api.systemcoupling.v0.AllSeriesData\x12x\n\x14GetChartTimestepData\x12\x35.ansys.api.systemcoupling.v0.ChartTimestepDataRequest\x1a).ansys.api.systemcoupling.v0.TimestepDatab\x06proto3')
|
|
17
|
+
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.chart_pb2', globals())
|
|
20
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
21
|
+
|
|
22
|
+
DESCRIPTOR._options = None
|
|
23
|
+
_TRANSFERSERIESTYPE._serialized_start=1226
|
|
24
|
+
_TRANSFERSERIESTYPE._serialized_end=1355
|
|
25
|
+
_TRANSFERSERIESINFO._serialized_start=73
|
|
26
|
+
_TRANSFERSERIESINFO._serialized_end=238
|
|
27
|
+
_INTERFACEINFO._serialized_start=240
|
|
28
|
+
_INTERFACEINFO._serialized_end=351
|
|
29
|
+
_CHARTMETADATA._serialized_start=353
|
|
30
|
+
_CHARTMETADATA._serialized_end=458
|
|
31
|
+
_SERIESDATA._serialized_start=460
|
|
32
|
+
_SERIESDATA._serialized_end=562
|
|
33
|
+
_TIMESTEPSTART._serialized_start=564
|
|
34
|
+
_TIMESTEPSTART._serialized_end=617
|
|
35
|
+
_TIMESTEPEND._serialized_start=619
|
|
36
|
+
_TIMESTEPEND._serialized_end=681
|
|
37
|
+
_CHARTDATAEVENT._serialized_start=684
|
|
38
|
+
_CHARTDATAEVENT._serialized_end=978
|
|
39
|
+
_ALLSERIESDATA._serialized_start=980
|
|
40
|
+
_ALLSERIESDATA._serialized_end=1057
|
|
41
|
+
_TIMESTEPDATA._serialized_start=1059
|
|
42
|
+
_TIMESTEPDATA._serialized_end=1125
|
|
43
|
+
_CHARTDATAREQUEST._serialized_start=1127
|
|
44
|
+
_CHARTDATAREQUEST._serialized_end=1145
|
|
45
|
+
_CHARTMETADATAREQUEST._serialized_start=1147
|
|
46
|
+
_CHARTMETADATAREQUEST._serialized_end=1169
|
|
47
|
+
_CHARTSERIESDATAREQUEST._serialized_start=1171
|
|
48
|
+
_CHARTSERIESDATAREQUEST._serialized_end=1195
|
|
49
|
+
_CHARTTIMESTEPDATAREQUEST._serialized_start=1197
|
|
50
|
+
_CHARTTIMESTEPDATAREQUEST._serialized_end=1223
|
|
51
|
+
_CHARTDATA._serialized_start=1358
|
|
52
|
+
_CHARTDATA._serialized_end=1838
|
|
53
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import builtins
|
|
6
|
+
import google.protobuf.descriptor
|
|
7
|
+
import google.protobuf.internal.containers
|
|
8
|
+
import google.protobuf.internal.enum_type_wrapper
|
|
9
|
+
import google.protobuf.message
|
|
10
|
+
import typing
|
|
11
|
+
import typing_extensions
|
|
12
|
+
|
|
13
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
|
|
14
|
+
|
|
15
|
+
class _TransferSeriesType:
|
|
16
|
+
ValueType = typing.NewType('ValueType', builtins.int)
|
|
17
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
18
|
+
class _TransferSeriesTypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_TransferSeriesType.ValueType], builtins.type):
|
|
19
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor = ...
|
|
20
|
+
SERIES_TYPE_UNKNOWN: TransferSeriesType.ValueType = ... # 0
|
|
21
|
+
SERIES_TYPE_CONVERGENCE: TransferSeriesType.ValueType = ... # 1
|
|
22
|
+
SERIES_TYPE_SUM: TransferSeriesType.ValueType = ... # 2
|
|
23
|
+
SERIES_TYPE_WEIGHTED_AVERAGE: TransferSeriesType.ValueType = ... # 3
|
|
24
|
+
class TransferSeriesType(_TransferSeriesType, metaclass=_TransferSeriesTypeEnumTypeWrapper):
|
|
25
|
+
"""Enum containing the different types of chart series."""
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
SERIES_TYPE_UNKNOWN: TransferSeriesType.ValueType = ... # 0
|
|
29
|
+
SERIES_TYPE_CONVERGENCE: TransferSeriesType.ValueType = ... # 1
|
|
30
|
+
SERIES_TYPE_SUM: TransferSeriesType.ValueType = ... # 2
|
|
31
|
+
SERIES_TYPE_WEIGHTED_AVERAGE: TransferSeriesType.ValueType = ... # 3
|
|
32
|
+
global___TransferSeriesType = TransferSeriesType
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class TransferSeriesInfo(google.protobuf.message.Message):
|
|
36
|
+
"""Information about the chart series data associated with a data transfer."""
|
|
37
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
38
|
+
SERIES_TYPE_FIELD_NUMBER: builtins.int
|
|
39
|
+
TRANSFER_NAME_FIELD_NUMBER: builtins.int
|
|
40
|
+
PARTICIPANT_NAME_FIELD_NUMBER: builtins.int
|
|
41
|
+
COMPONENT_SUFFIX_FIELD_NUMBER: builtins.int
|
|
42
|
+
series_type: global___TransferSeriesType.ValueType = ...
|
|
43
|
+
"""The type of line series."""
|
|
44
|
+
|
|
45
|
+
transfer_name: typing.Text = ...
|
|
46
|
+
"""The unique internal name of the data transfer."""
|
|
47
|
+
|
|
48
|
+
participant_name: typing.Text = ...
|
|
49
|
+
"""The unique internal name of the participant. This is required for transfer value series
|
|
50
|
+
but is empty for CONVERGENCE series. Used in chart labelling.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
component_suffix: typing.Text = ...
|
|
54
|
+
"""The suffix for this component series, if applicable. This is only needed for
|
|
55
|
+
transfer value series that have multiple components, such as complex or vector
|
|
56
|
+
values. Suffixes for complex components are "real" and "imag", and suffixes for
|
|
57
|
+
vector components are "x", "y", and "z". A combination is possible, such as
|
|
58
|
+
"y real" and "x imag". (Empty for CONVERGENCE series)
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
def __init__(self,
|
|
62
|
+
*,
|
|
63
|
+
series_type : global___TransferSeriesType.ValueType = ...,
|
|
64
|
+
transfer_name : typing.Text = ...,
|
|
65
|
+
participant_name : typing.Text = ...,
|
|
66
|
+
component_suffix : typing.Text = ...,
|
|
67
|
+
) -> None: ...
|
|
68
|
+
def ClearField(self, field_name: typing_extensions.Literal["component_suffix",b"component_suffix","participant_name",b"participant_name","series_type",b"series_type","transfer_name",b"transfer_name"]) -> None: ...
|
|
69
|
+
global___TransferSeriesInfo = TransferSeriesInfo
|
|
70
|
+
|
|
71
|
+
class InterfaceInfo(google.protobuf.message.Message):
|
|
72
|
+
"""Information about the chart series data associated with a single interface."""
|
|
73
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
74
|
+
INTERFACE_NAME_FIELD_NUMBER: builtins.int
|
|
75
|
+
TRANSFER_INFO_FIELD_NUMBER: builtins.int
|
|
76
|
+
interface_name: typing.Text = ...
|
|
77
|
+
"""The name of the coupling interface data model object."""
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
def transfer_info(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___TransferSeriesInfo]:
|
|
81
|
+
"""The list of TransferSeriesInfo associated with this interface."""
|
|
82
|
+
pass
|
|
83
|
+
def __init__(self,
|
|
84
|
+
*,
|
|
85
|
+
interface_name : typing.Text = ...,
|
|
86
|
+
transfer_info : typing.Optional[typing.Iterable[global___TransferSeriesInfo]] = ...,
|
|
87
|
+
) -> None: ...
|
|
88
|
+
def ClearField(self, field_name: typing_extensions.Literal["interface_name",b"interface_name","transfer_info",b"transfer_info"]) -> None: ...
|
|
89
|
+
global___InterfaceInfo = InterfaceInfo
|
|
90
|
+
|
|
91
|
+
class ChartMetadata(google.protobuf.message.Message):
|
|
92
|
+
"""Complete metadata for available chart series."""
|
|
93
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
94
|
+
IS_TRANSIENT_FIELD_NUMBER: builtins.int
|
|
95
|
+
INTERFACE_INFO_FIELD_NUMBER: builtins.int
|
|
96
|
+
is_transient: builtins.bool = ...
|
|
97
|
+
"""Whether the chart is for a transient analysis."""
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
def interface_info(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___InterfaceInfo]:
|
|
101
|
+
"""The metadata for the series associated with each interface."""
|
|
102
|
+
pass
|
|
103
|
+
def __init__(self,
|
|
104
|
+
*,
|
|
105
|
+
is_transient : builtins.bool = ...,
|
|
106
|
+
interface_info : typing.Optional[typing.Iterable[global___InterfaceInfo]] = ...,
|
|
107
|
+
) -> None: ...
|
|
108
|
+
def ClearField(self, field_name: typing_extensions.Literal["interface_info",b"interface_info","is_transient",b"is_transient"]) -> None: ...
|
|
109
|
+
global___ChartMetadata = ChartMetadata
|
|
110
|
+
|
|
111
|
+
class SeriesData(google.protobuf.message.Message):
|
|
112
|
+
"""The plot data for a single chart line series and information to allow
|
|
113
|
+
it to be associated with chart metadata.
|
|
114
|
+
An instance of this type is assumed to be associated with a single interface.
|
|
115
|
+
This message supports per-iteration incremental data, batched data for a
|
|
116
|
+
subset of iterations, or complete data for all iterations.
|
|
117
|
+
"""
|
|
118
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
119
|
+
INTERFACE_NAME_FIELD_NUMBER: builtins.int
|
|
120
|
+
TRANSFER_SERIES_INDEX_FIELD_NUMBER: builtins.int
|
|
121
|
+
START_INDEX_FIELD_NUMBER: builtins.int
|
|
122
|
+
DATA_FIELD_NUMBER: builtins.int
|
|
123
|
+
interface_name: typing.Text = ...
|
|
124
|
+
"""The name of the interface this series is associated with."""
|
|
125
|
+
|
|
126
|
+
transfer_series_index: builtins.int = ...
|
|
127
|
+
"""Index of the TransferSeriesInfo metadata for this series within the
|
|
128
|
+
InterfaceInfo for the interface this series is associated with.
|
|
129
|
+
"""
|
|
130
|
+
|
|
131
|
+
start_index: builtins.int = ...
|
|
132
|
+
"""The 0-based start index of the data field. This defaults to 0 and
|
|
133
|
+
only needs to be set to a different value if incremental data, such
|
|
134
|
+
as might arise during "live" update of plots, has become available.
|
|
135
|
+
Data indexes correspond to iterations. Iteration N will have an
|
|
136
|
+
index of N-1.
|
|
137
|
+
"""
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
def data(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.float]:
|
|
141
|
+
"""The series data. This is always indexed by iteration. Extract time
|
|
142
|
+
step-based data by using a time step to iteration mapping.
|
|
143
|
+
"""
|
|
144
|
+
pass
|
|
145
|
+
def __init__(self,
|
|
146
|
+
*,
|
|
147
|
+
interface_name : typing.Text = ...,
|
|
148
|
+
transfer_series_index : builtins.int = ...,
|
|
149
|
+
start_index : builtins.int = ...,
|
|
150
|
+
data : typing.Optional[typing.Iterable[builtins.float]] = ...,
|
|
151
|
+
) -> None: ...
|
|
152
|
+
def ClearField(self, field_name: typing_extensions.Literal["data",b"data","interface_name",b"interface_name","start_index",b"start_index","transfer_series_index",b"transfer_series_index"]) -> None: ...
|
|
153
|
+
global___SeriesData = SeriesData
|
|
154
|
+
|
|
155
|
+
class TimestepStart(google.protobuf.message.Message):
|
|
156
|
+
"""Message providing notification and details of a new timestep in a transient analysis.
|
|
157
|
+
This message is intended for use in live updates. See TimestepData for
|
|
158
|
+
cumulative timestep information.
|
|
159
|
+
"""
|
|
160
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
161
|
+
TIMESTEP_COUNT_FIELD_NUMBER: builtins.int
|
|
162
|
+
TIME_FIELD_NUMBER: builtins.int
|
|
163
|
+
timestep_count: builtins.int = ...
|
|
164
|
+
"""The timestep count of the new timestep."""
|
|
165
|
+
|
|
166
|
+
time: builtins.float = ...
|
|
167
|
+
"""The end time of the current timestep.
|
|
168
|
+
For the first timestep, this is the timestep size. For subsequent
|
|
169
|
+
timesteps, the timestep size can be determined by subtracting the previous
|
|
170
|
+
time value from the current time value.
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
def __init__(self,
|
|
174
|
+
*,
|
|
175
|
+
timestep_count : builtins.int = ...,
|
|
176
|
+
time : builtins.float = ...,
|
|
177
|
+
) -> None: ...
|
|
178
|
+
def ClearField(self, field_name: typing_extensions.Literal["time",b"time","timestep_count",b"timestep_count"]) -> None: ...
|
|
179
|
+
global___TimestepStart = TimestepStart
|
|
180
|
+
|
|
181
|
+
class TimestepEnd(google.protobuf.message.Message):
|
|
182
|
+
"""Message providing notification and details of the end of a timestep in a transient analysis.
|
|
183
|
+
This message is intended for use in live updates. See TimestepData for
|
|
184
|
+
cumulative timestep information.
|
|
185
|
+
"""
|
|
186
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
187
|
+
TIMESTEP_COUNT_FIELD_NUMBER: builtins.int
|
|
188
|
+
ITERATION_COUNT_FIELD_NUMBER: builtins.int
|
|
189
|
+
timestep_count: builtins.int = ...
|
|
190
|
+
"""The timestep count of the ended timestep."""
|
|
191
|
+
|
|
192
|
+
iteration_count: builtins.int = ...
|
|
193
|
+
"""The ending iteration for the timestep. NB: This is a 1-based iteration count."""
|
|
194
|
+
|
|
195
|
+
def __init__(self,
|
|
196
|
+
*,
|
|
197
|
+
timestep_count : builtins.int = ...,
|
|
198
|
+
iteration_count : builtins.int = ...,
|
|
199
|
+
) -> None: ...
|
|
200
|
+
def ClearField(self, field_name: typing_extensions.Literal["iteration_count",b"iteration_count","timestep_count",b"timestep_count"]) -> None: ...
|
|
201
|
+
global___TimestepEnd = TimestepEnd
|
|
202
|
+
|
|
203
|
+
class ChartDataEvent(google.protobuf.message.Message):
|
|
204
|
+
"""Chart data event that can contain different types of chart data.
|
|
205
|
+
The first event in a stream will typically contain interface metadata,
|
|
206
|
+
followed by series data and timestep data as they become available.
|
|
207
|
+
"""
|
|
208
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
209
|
+
METADATA_FIELD_NUMBER: builtins.int
|
|
210
|
+
SERIES_DATA_FIELD_NUMBER: builtins.int
|
|
211
|
+
TIMESTEP_START_FIELD_NUMBER: builtins.int
|
|
212
|
+
TIMESTEP_END_FIELD_NUMBER: builtins.int
|
|
213
|
+
@property
|
|
214
|
+
def metadata(self) -> global___ChartMetadata:
|
|
215
|
+
"""Metadata containing information about the available series."""
|
|
216
|
+
pass
|
|
217
|
+
@property
|
|
218
|
+
def series_data(self) -> global___SeriesData:
|
|
219
|
+
"""Series data for a specific chart line series."""
|
|
220
|
+
pass
|
|
221
|
+
@property
|
|
222
|
+
def timestep_start(self) -> global___TimestepStart:
|
|
223
|
+
"""Timestep start notification for transient analyses."""
|
|
224
|
+
pass
|
|
225
|
+
@property
|
|
226
|
+
def timestep_end(self) -> global___TimestepEnd:
|
|
227
|
+
"""Timestep end notification for transient analyses."""
|
|
228
|
+
pass
|
|
229
|
+
def __init__(self,
|
|
230
|
+
*,
|
|
231
|
+
metadata : typing.Optional[global___ChartMetadata] = ...,
|
|
232
|
+
series_data : typing.Optional[global___SeriesData] = ...,
|
|
233
|
+
timestep_start : typing.Optional[global___TimestepStart] = ...,
|
|
234
|
+
timestep_end : typing.Optional[global___TimestepEnd] = ...,
|
|
235
|
+
) -> None: ...
|
|
236
|
+
def HasField(self, field_name: typing_extensions.Literal["event_data",b"event_data","metadata",b"metadata","series_data",b"series_data","timestep_end",b"timestep_end","timestep_start",b"timestep_start"]) -> builtins.bool: ...
|
|
237
|
+
def ClearField(self, field_name: typing_extensions.Literal["event_data",b"event_data","metadata",b"metadata","series_data",b"series_data","timestep_end",b"timestep_end","timestep_start",b"timestep_start"]) -> None: ...
|
|
238
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["event_data",b"event_data"]) -> typing.Optional[typing_extensions.Literal["metadata","series_data","timestep_start","timestep_end"]]: ...
|
|
239
|
+
global___ChartDataEvent = ChartDataEvent
|
|
240
|
+
|
|
241
|
+
class AllSeriesData(google.protobuf.message.Message):
|
|
242
|
+
"""Message providing all series data for all interfaces.
|
|
243
|
+
For use in post-solve, non-streaming retrieval of chart data.
|
|
244
|
+
"""
|
|
245
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
246
|
+
SERIES_DATA_FIELD_NUMBER: builtins.int
|
|
247
|
+
@property
|
|
248
|
+
def series_data(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SeriesData]:
|
|
249
|
+
"""List of all available series data."""
|
|
250
|
+
pass
|
|
251
|
+
def __init__(self,
|
|
252
|
+
*,
|
|
253
|
+
series_data : typing.Optional[typing.Iterable[global___SeriesData]] = ...,
|
|
254
|
+
) -> None: ...
|
|
255
|
+
def ClearField(self, field_name: typing_extensions.Literal["series_data",b"series_data"]) -> None: ...
|
|
256
|
+
global___AllSeriesData = AllSeriesData
|
|
257
|
+
|
|
258
|
+
class TimestepData(google.protobuf.message.Message):
|
|
259
|
+
"""Message providing all timestep data for transient analyses.
|
|
260
|
+
For use in post-solve, non-streaming retrieval of chart data.
|
|
261
|
+
"""
|
|
262
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
263
|
+
TIMESTEP_TO_ITERATION_FIELD_NUMBER: builtins.int
|
|
264
|
+
TIME_VALUES_FIELD_NUMBER: builtins.int
|
|
265
|
+
@property
|
|
266
|
+
def timestep_to_iteration(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]:
|
|
267
|
+
"""The mapping of timestep count to iteration count.
|
|
268
|
+
NB: these are 1-based step and iteration counts.
|
|
269
|
+
"""
|
|
270
|
+
pass
|
|
271
|
+
@property
|
|
272
|
+
def time_values(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.float]:
|
|
273
|
+
"""The time values for each timestep."""
|
|
274
|
+
pass
|
|
275
|
+
def __init__(self,
|
|
276
|
+
*,
|
|
277
|
+
timestep_to_iteration : typing.Optional[typing.Iterable[builtins.int]] = ...,
|
|
278
|
+
time_values : typing.Optional[typing.Iterable[builtins.float]] = ...,
|
|
279
|
+
) -> None: ...
|
|
280
|
+
def ClearField(self, field_name: typing_extensions.Literal["time_values",b"time_values","timestep_to_iteration",b"timestep_to_iteration"]) -> None: ...
|
|
281
|
+
global___TimestepData = TimestepData
|
|
282
|
+
|
|
283
|
+
class ChartDataRequest(google.protobuf.message.Message):
|
|
284
|
+
"""Request message for chart data streaming."""
|
|
285
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
286
|
+
def __init__(self,
|
|
287
|
+
) -> None: ...
|
|
288
|
+
global___ChartDataRequest = ChartDataRequest
|
|
289
|
+
|
|
290
|
+
class ChartMetadataRequest(google.protobuf.message.Message):
|
|
291
|
+
"""Request message for chart metadata retrieval."""
|
|
292
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
293
|
+
def __init__(self,
|
|
294
|
+
) -> None: ...
|
|
295
|
+
global___ChartMetadataRequest = ChartMetadataRequest
|
|
296
|
+
|
|
297
|
+
class ChartSeriesDataRequest(google.protobuf.message.Message):
|
|
298
|
+
"""Request message for all chart series data retrieval."""
|
|
299
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
300
|
+
def __init__(self,
|
|
301
|
+
) -> None: ...
|
|
302
|
+
global___ChartSeriesDataRequest = ChartSeriesDataRequest
|
|
303
|
+
|
|
304
|
+
class ChartTimestepDataRequest(google.protobuf.message.Message):
|
|
305
|
+
"""Request message for chart timestep data retrieval."""
|
|
306
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
307
|
+
def __init__(self,
|
|
308
|
+
) -> None: ...
|
|
309
|
+
global___ChartTimestepDataRequest = ChartTimestepDataRequest
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from ansys.api.systemcoupling.v0 import chart_pb2 as ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ChartDataStub(object):
|
|
9
|
+
"""Service for querying chart data, both as a "live" stream during a solve
|
|
10
|
+
and as non-streaming requests for data after a solve has been performed.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
def __init__(self, channel):
|
|
14
|
+
"""Constructor.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
channel: A grpc.Channel.
|
|
18
|
+
"""
|
|
19
|
+
self.StreamChartData = channel.unary_stream(
|
|
20
|
+
'/ansys.api.systemcoupling.v0.ChartData/StreamChartData',
|
|
21
|
+
request_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataRequest.SerializeToString,
|
|
22
|
+
response_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataEvent.FromString,
|
|
23
|
+
)
|
|
24
|
+
self.GetChartMetadata = channel.unary_unary(
|
|
25
|
+
'/ansys.api.systemcoupling.v0.ChartData/GetChartMetadata',
|
|
26
|
+
request_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadataRequest.SerializeToString,
|
|
27
|
+
response_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadata.FromString,
|
|
28
|
+
)
|
|
29
|
+
self.GetChartSeriesData = channel.unary_unary(
|
|
30
|
+
'/ansys.api.systemcoupling.v0.ChartData/GetChartSeriesData',
|
|
31
|
+
request_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartSeriesDataRequest.SerializeToString,
|
|
32
|
+
response_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.AllSeriesData.FromString,
|
|
33
|
+
)
|
|
34
|
+
self.GetChartTimestepData = channel.unary_unary(
|
|
35
|
+
'/ansys.api.systemcoupling.v0.ChartData/GetChartTimestepData',
|
|
36
|
+
request_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartTimestepDataRequest.SerializeToString,
|
|
37
|
+
response_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.TimestepData.FromString,
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class ChartDataServicer(object):
|
|
42
|
+
"""Service for querying chart data, both as a "live" stream during a solve
|
|
43
|
+
and as non-streaming requests for data after a solve has been performed.
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def StreamChartData(self, request, context):
|
|
47
|
+
"""Streams chart data events starting with interface metadata followed by
|
|
48
|
+
series data and timestep data as they become available on the server.
|
|
49
|
+
For transient cases, timestep data will be included in the stream.
|
|
50
|
+
"""
|
|
51
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
52
|
+
context.set_details('Method not implemented!')
|
|
53
|
+
raise NotImplementedError('Method not implemented!')
|
|
54
|
+
|
|
55
|
+
def GetChartMetadata(self, request, context):
|
|
56
|
+
"""The following RPCs provide non-streaming access to chart data.
|
|
57
|
+
This should be available as long as a solve has been performed
|
|
58
|
+
in the current session.
|
|
59
|
+
|
|
60
|
+
Retrieves the chart metadata for all available series.
|
|
61
|
+
"""
|
|
62
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
63
|
+
context.set_details('Method not implemented!')
|
|
64
|
+
raise NotImplementedError('Method not implemented!')
|
|
65
|
+
|
|
66
|
+
def GetChartSeriesData(self, request, context):
|
|
67
|
+
"""Retrieves all data for all chart series.
|
|
68
|
+
"""
|
|
69
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
70
|
+
context.set_details('Method not implemented!')
|
|
71
|
+
raise NotImplementedError('Method not implemented!')
|
|
72
|
+
|
|
73
|
+
def GetChartTimestepData(self, request, context):
|
|
74
|
+
"""Retrieves all data for all chart timesteps.
|
|
75
|
+
"""
|
|
76
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
77
|
+
context.set_details('Method not implemented!')
|
|
78
|
+
raise NotImplementedError('Method not implemented!')
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def add_ChartDataServicer_to_server(servicer, server):
|
|
82
|
+
rpc_method_handlers = {
|
|
83
|
+
'StreamChartData': grpc.unary_stream_rpc_method_handler(
|
|
84
|
+
servicer.StreamChartData,
|
|
85
|
+
request_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataRequest.FromString,
|
|
86
|
+
response_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataEvent.SerializeToString,
|
|
87
|
+
),
|
|
88
|
+
'GetChartMetadata': grpc.unary_unary_rpc_method_handler(
|
|
89
|
+
servicer.GetChartMetadata,
|
|
90
|
+
request_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadataRequest.FromString,
|
|
91
|
+
response_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadata.SerializeToString,
|
|
92
|
+
),
|
|
93
|
+
'GetChartSeriesData': grpc.unary_unary_rpc_method_handler(
|
|
94
|
+
servicer.GetChartSeriesData,
|
|
95
|
+
request_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartSeriesDataRequest.FromString,
|
|
96
|
+
response_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.AllSeriesData.SerializeToString,
|
|
97
|
+
),
|
|
98
|
+
'GetChartTimestepData': grpc.unary_unary_rpc_method_handler(
|
|
99
|
+
servicer.GetChartTimestepData,
|
|
100
|
+
request_deserializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartTimestepDataRequest.FromString,
|
|
101
|
+
response_serializer=ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.TimestepData.SerializeToString,
|
|
102
|
+
),
|
|
103
|
+
}
|
|
104
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
105
|
+
'ansys.api.systemcoupling.v0.ChartData', rpc_method_handlers)
|
|
106
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
# This class is part of an EXPERIMENTAL API.
|
|
110
|
+
class ChartData(object):
|
|
111
|
+
"""Service for querying chart data, both as a "live" stream during a solve
|
|
112
|
+
and as non-streaming requests for data after a solve has been performed.
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
@staticmethod
|
|
116
|
+
def StreamChartData(request,
|
|
117
|
+
target,
|
|
118
|
+
options=(),
|
|
119
|
+
channel_credentials=None,
|
|
120
|
+
call_credentials=None,
|
|
121
|
+
insecure=False,
|
|
122
|
+
compression=None,
|
|
123
|
+
wait_for_ready=None,
|
|
124
|
+
timeout=None,
|
|
125
|
+
metadata=None):
|
|
126
|
+
return grpc.experimental.unary_stream(request, target, '/ansys.api.systemcoupling.v0.ChartData/StreamChartData',
|
|
127
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataRequest.SerializeToString,
|
|
128
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartDataEvent.FromString,
|
|
129
|
+
options, channel_credentials,
|
|
130
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
131
|
+
|
|
132
|
+
@staticmethod
|
|
133
|
+
def GetChartMetadata(request,
|
|
134
|
+
target,
|
|
135
|
+
options=(),
|
|
136
|
+
channel_credentials=None,
|
|
137
|
+
call_credentials=None,
|
|
138
|
+
insecure=False,
|
|
139
|
+
compression=None,
|
|
140
|
+
wait_for_ready=None,
|
|
141
|
+
timeout=None,
|
|
142
|
+
metadata=None):
|
|
143
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.systemcoupling.v0.ChartData/GetChartMetadata',
|
|
144
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadataRequest.SerializeToString,
|
|
145
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartMetadata.FromString,
|
|
146
|
+
options, channel_credentials,
|
|
147
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
148
|
+
|
|
149
|
+
@staticmethod
|
|
150
|
+
def GetChartSeriesData(request,
|
|
151
|
+
target,
|
|
152
|
+
options=(),
|
|
153
|
+
channel_credentials=None,
|
|
154
|
+
call_credentials=None,
|
|
155
|
+
insecure=False,
|
|
156
|
+
compression=None,
|
|
157
|
+
wait_for_ready=None,
|
|
158
|
+
timeout=None,
|
|
159
|
+
metadata=None):
|
|
160
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.systemcoupling.v0.ChartData/GetChartSeriesData',
|
|
161
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartSeriesDataRequest.SerializeToString,
|
|
162
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.AllSeriesData.FromString,
|
|
163
|
+
options, channel_credentials,
|
|
164
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
165
|
+
|
|
166
|
+
@staticmethod
|
|
167
|
+
def GetChartTimestepData(request,
|
|
168
|
+
target,
|
|
169
|
+
options=(),
|
|
170
|
+
channel_credentials=None,
|
|
171
|
+
call_credentials=None,
|
|
172
|
+
insecure=False,
|
|
173
|
+
compression=None,
|
|
174
|
+
wait_for_ready=None,
|
|
175
|
+
timeout=None,
|
|
176
|
+
metadata=None):
|
|
177
|
+
return grpc.experimental.unary_unary(request, target, '/ansys.api.systemcoupling.v0.ChartData/GetChartTimestepData',
|
|
178
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.ChartTimestepDataRequest.SerializeToString,
|
|
179
|
+
ansys_dot_api_dot_systemcoupling_dot_v0_dot_chart__pb2.TimestepData.FromString,
|
|
180
|
+
options, channel_credentials,
|
|
181
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import abc
|
|
6
|
+
import ansys.api.systemcoupling.v0.chart_pb2
|
|
7
|
+
import grpc
|
|
8
|
+
import typing
|
|
9
|
+
|
|
10
|
+
class ChartDataStub:
|
|
11
|
+
"""Service for querying chart data, both as a "live" stream during a solve
|
|
12
|
+
and as non-streaming requests for data after a solve has been performed.
|
|
13
|
+
"""
|
|
14
|
+
def __init__(self, channel: grpc.Channel) -> None: ...
|
|
15
|
+
StreamChartData: grpc.UnaryStreamMultiCallable[
|
|
16
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartDataRequest,
|
|
17
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartDataEvent] = ...
|
|
18
|
+
"""Streams chart data events starting with interface metadata followed by
|
|
19
|
+
series data and timestep data as they become available on the server.
|
|
20
|
+
For transient cases, timestep data will be included in the stream.
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
GetChartMetadata: grpc.UnaryUnaryMultiCallable[
|
|
24
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartMetadataRequest,
|
|
25
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartMetadata] = ...
|
|
26
|
+
"""The following RPCs provide non-streaming access to chart data.
|
|
27
|
+
This should be available as long as a solve has been performed
|
|
28
|
+
in the current session.
|
|
29
|
+
|
|
30
|
+
Retrieves the chart metadata for all available series.
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
GetChartSeriesData: grpc.UnaryUnaryMultiCallable[
|
|
34
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartSeriesDataRequest,
|
|
35
|
+
ansys.api.systemcoupling.v0.chart_pb2.AllSeriesData] = ...
|
|
36
|
+
"""Retrieves all data for all chart series."""
|
|
37
|
+
|
|
38
|
+
GetChartTimestepData: grpc.UnaryUnaryMultiCallable[
|
|
39
|
+
ansys.api.systemcoupling.v0.chart_pb2.ChartTimestepDataRequest,
|
|
40
|
+
ansys.api.systemcoupling.v0.chart_pb2.TimestepData] = ...
|
|
41
|
+
"""Retrieves all data for all chart timesteps."""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class ChartDataServicer(metaclass=abc.ABCMeta):
|
|
45
|
+
"""Service for querying chart data, both as a "live" stream during a solve
|
|
46
|
+
and as non-streaming requests for data after a solve has been performed.
|
|
47
|
+
"""
|
|
48
|
+
@abc.abstractmethod
|
|
49
|
+
def StreamChartData(self,
|
|
50
|
+
request: ansys.api.systemcoupling.v0.chart_pb2.ChartDataRequest,
|
|
51
|
+
context: grpc.ServicerContext,
|
|
52
|
+
) -> typing.Iterator[ansys.api.systemcoupling.v0.chart_pb2.ChartDataEvent]:
|
|
53
|
+
"""Streams chart data events starting with interface metadata followed by
|
|
54
|
+
series data and timestep data as they become available on the server.
|
|
55
|
+
For transient cases, timestep data will be included in the stream.
|
|
56
|
+
"""
|
|
57
|
+
pass
|
|
58
|
+
|
|
59
|
+
@abc.abstractmethod
|
|
60
|
+
def GetChartMetadata(self,
|
|
61
|
+
request: ansys.api.systemcoupling.v0.chart_pb2.ChartMetadataRequest,
|
|
62
|
+
context: grpc.ServicerContext,
|
|
63
|
+
) -> ansys.api.systemcoupling.v0.chart_pb2.ChartMetadata:
|
|
64
|
+
"""The following RPCs provide non-streaming access to chart data.
|
|
65
|
+
This should be available as long as a solve has been performed
|
|
66
|
+
in the current session.
|
|
67
|
+
|
|
68
|
+
Retrieves the chart metadata for all available series.
|
|
69
|
+
"""
|
|
70
|
+
pass
|
|
71
|
+
|
|
72
|
+
@abc.abstractmethod
|
|
73
|
+
def GetChartSeriesData(self,
|
|
74
|
+
request: ansys.api.systemcoupling.v0.chart_pb2.ChartSeriesDataRequest,
|
|
75
|
+
context: grpc.ServicerContext,
|
|
76
|
+
) -> ansys.api.systemcoupling.v0.chart_pb2.AllSeriesData:
|
|
77
|
+
"""Retrieves all data for all chart series."""
|
|
78
|
+
pass
|
|
79
|
+
|
|
80
|
+
@abc.abstractmethod
|
|
81
|
+
def GetChartTimestepData(self,
|
|
82
|
+
request: ansys.api.systemcoupling.v0.chart_pb2.ChartTimestepDataRequest,
|
|
83
|
+
context: grpc.ServicerContext,
|
|
84
|
+
) -> ansys.api.systemcoupling.v0.chart_pb2.TimestepData:
|
|
85
|
+
"""Retrieves all data for all chart timesteps."""
|
|
86
|
+
pass
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def add_ChartDataServicer_to_server(servicer: ChartDataServicer, server: grpc.Server) -> None: ...
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/command.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
10
9
|
# @@protoc_insertion_point(imports)
|
|
11
10
|
|
|
@@ -17,34 +16,8 @@ from ansys.api.systemcoupling.v0 import variant_pb2 as ansys_dot_api_dot_systemc
|
|
|
17
16
|
|
|
18
17
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)ansys/api/systemcoupling/v0/command.proto\x12\x1b\x61nsys.api.systemcoupling.v0\x1a)ansys/api/systemcoupling/v0/variant.proto\"\xb2\x01\n\x0e\x43ommandRequest\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x42\n\x04\x61rgs\x18\x02 \x03(\x0b\x32\x34.ansys.api.systemcoupling.v0.CommandRequest.Argument\x1aK\n\x08\x41rgument\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x31\n\x03val\x18\x02 \x01(\x0b\x32$.ansys.api.systemcoupling.v0.Variant\"G\n\x0f\x43ommandResponse\x12\x34\n\x06result\x18\x01 \x01(\x0b\x32$.ansys.api.systemcoupling.v0.Variant2w\n\x07\x43ommand\x12l\n\rInvokeCommand\x12+.ansys.api.systemcoupling.v0.CommandRequest\x1a,.ansys.api.systemcoupling.v0.CommandResponse\"\x00\x62\x06proto3')
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
_COMMANDREQUEST = DESCRIPTOR.message_types_by_name['CommandRequest']
|
|
23
|
-
_COMMANDREQUEST_ARGUMENT = _COMMANDREQUEST.nested_types_by_name['Argument']
|
|
24
|
-
_COMMANDRESPONSE = DESCRIPTOR.message_types_by_name['CommandResponse']
|
|
25
|
-
CommandRequest = _reflection.GeneratedProtocolMessageType('CommandRequest', (_message.Message,), {
|
|
26
|
-
|
|
27
|
-
'Argument' : _reflection.GeneratedProtocolMessageType('Argument', (_message.Message,), {
|
|
28
|
-
'DESCRIPTOR' : _COMMANDREQUEST_ARGUMENT,
|
|
29
|
-
'__module__' : 'ansys.api.systemcoupling.v0.command_pb2'
|
|
30
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.CommandRequest.Argument)
|
|
31
|
-
})
|
|
32
|
-
,
|
|
33
|
-
'DESCRIPTOR' : _COMMANDREQUEST,
|
|
34
|
-
'__module__' : 'ansys.api.systemcoupling.v0.command_pb2'
|
|
35
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.CommandRequest)
|
|
36
|
-
})
|
|
37
|
-
_sym_db.RegisterMessage(CommandRequest)
|
|
38
|
-
_sym_db.RegisterMessage(CommandRequest.Argument)
|
|
39
|
-
|
|
40
|
-
CommandResponse = _reflection.GeneratedProtocolMessageType('CommandResponse', (_message.Message,), {
|
|
41
|
-
'DESCRIPTOR' : _COMMANDRESPONSE,
|
|
42
|
-
'__module__' : 'ansys.api.systemcoupling.v0.command_pb2'
|
|
43
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.CommandResponse)
|
|
44
|
-
})
|
|
45
|
-
_sym_db.RegisterMessage(CommandResponse)
|
|
46
|
-
|
|
47
|
-
_COMMAND = DESCRIPTOR.services_by_name['Command']
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.command_pb2', globals())
|
|
48
21
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
49
22
|
|
|
50
23
|
DESCRIPTOR._options = None
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/error.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
10
9
|
# @@protoc_insertion_point(imports)
|
|
11
10
|
|
|
@@ -16,16 +15,8 @@ _sym_db = _symbol_database.Default()
|
|
|
16
15
|
|
|
17
16
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\'ansys/api/systemcoupling/v0/error.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"@\n\x0c\x45rrorDetails\x12\x1b\n\x13\x65xception_classname\x18\x01 \x01(\t\x12\x13\n\x0bstack_trace\x18\x02 \x01(\tb\x06proto3')
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
_ERRORDETAILS = DESCRIPTOR.message_types_by_name['ErrorDetails']
|
|
22
|
-
ErrorDetails = _reflection.GeneratedProtocolMessageType('ErrorDetails', (_message.Message,), {
|
|
23
|
-
'DESCRIPTOR' : _ERRORDETAILS,
|
|
24
|
-
'__module__' : 'ansys.api.systemcoupling.v0.error_pb2'
|
|
25
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.ErrorDetails)
|
|
26
|
-
})
|
|
27
|
-
_sym_db.RegisterMessage(ErrorDetails)
|
|
28
|
-
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.error_pb2', globals())
|
|
29
20
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
30
21
|
|
|
31
22
|
DESCRIPTOR._options = None
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/output_stream.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
10
9
|
# @@protoc_insertion_point(imports)
|
|
11
10
|
|
|
@@ -16,25 +15,8 @@ _sym_db = _symbol_database.Default()
|
|
|
16
15
|
|
|
17
16
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/ansys/api/systemcoupling/v0/output_stream.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"\x12\n\x10StdStreamRequest\"!\n\x11StdStreamResponse\x12\x0c\n\x04text\x18\x01 \x01(\t2\x86\x01\n\x0cOutputStream\x12v\n\x11\x42\x65ginStdStreaming\x12-.ansys.api.systemcoupling.v0.StdStreamRequest\x1a..ansys.api.systemcoupling.v0.StdStreamResponse\"\x00\x30\x01\x62\x06proto3')
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
_STDSTREAMREQUEST = DESCRIPTOR.message_types_by_name['StdStreamRequest']
|
|
22
|
-
_STDSTREAMRESPONSE = DESCRIPTOR.message_types_by_name['StdStreamResponse']
|
|
23
|
-
StdStreamRequest = _reflection.GeneratedProtocolMessageType('StdStreamRequest', (_message.Message,), {
|
|
24
|
-
'DESCRIPTOR' : _STDSTREAMREQUEST,
|
|
25
|
-
'__module__' : 'ansys.api.systemcoupling.v0.output_stream_pb2'
|
|
26
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.StdStreamRequest)
|
|
27
|
-
})
|
|
28
|
-
_sym_db.RegisterMessage(StdStreamRequest)
|
|
29
|
-
|
|
30
|
-
StdStreamResponse = _reflection.GeneratedProtocolMessageType('StdStreamResponse', (_message.Message,), {
|
|
31
|
-
'DESCRIPTOR' : _STDSTREAMRESPONSE,
|
|
32
|
-
'__module__' : 'ansys.api.systemcoupling.v0.output_stream_pb2'
|
|
33
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.StdStreamResponse)
|
|
34
|
-
})
|
|
35
|
-
_sym_db.RegisterMessage(StdStreamResponse)
|
|
36
|
-
|
|
37
|
-
_OUTPUTSTREAM = DESCRIPTOR.services_by_name['OutputStream']
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.output_stream_pb2', globals())
|
|
38
20
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
39
21
|
|
|
40
22
|
DESCRIPTOR._options = None
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/process.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
10
9
|
# @@protoc_insertion_point(imports)
|
|
11
10
|
|
|
@@ -16,41 +15,8 @@ _sym_db = _symbol_database.Default()
|
|
|
16
15
|
|
|
17
16
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)ansys/api/systemcoupling/v0/process.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"\r\n\x0bPingRequest\"\x0e\n\x0cPingResponse\"\r\n\x0bQuitRequest\"\x0e\n\x0cQuitResponse2\xc7\x01\n\x07Process\x12]\n\x04Ping\x12(.ansys.api.systemcoupling.v0.PingRequest\x1a).ansys.api.systemcoupling.v0.PingResponse\"\x00\x12]\n\x04Quit\x12(.ansys.api.systemcoupling.v0.QuitRequest\x1a).ansys.api.systemcoupling.v0.QuitResponse\"\x00\x62\x06proto3')
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
_PINGREQUEST = DESCRIPTOR.message_types_by_name['PingRequest']
|
|
22
|
-
_PINGRESPONSE = DESCRIPTOR.message_types_by_name['PingResponse']
|
|
23
|
-
_QUITREQUEST = DESCRIPTOR.message_types_by_name['QuitRequest']
|
|
24
|
-
_QUITRESPONSE = DESCRIPTOR.message_types_by_name['QuitResponse']
|
|
25
|
-
PingRequest = _reflection.GeneratedProtocolMessageType('PingRequest', (_message.Message,), {
|
|
26
|
-
'DESCRIPTOR' : _PINGREQUEST,
|
|
27
|
-
'__module__' : 'ansys.api.systemcoupling.v0.process_pb2'
|
|
28
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.PingRequest)
|
|
29
|
-
})
|
|
30
|
-
_sym_db.RegisterMessage(PingRequest)
|
|
31
|
-
|
|
32
|
-
PingResponse = _reflection.GeneratedProtocolMessageType('PingResponse', (_message.Message,), {
|
|
33
|
-
'DESCRIPTOR' : _PINGRESPONSE,
|
|
34
|
-
'__module__' : 'ansys.api.systemcoupling.v0.process_pb2'
|
|
35
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.PingResponse)
|
|
36
|
-
})
|
|
37
|
-
_sym_db.RegisterMessage(PingResponse)
|
|
38
|
-
|
|
39
|
-
QuitRequest = _reflection.GeneratedProtocolMessageType('QuitRequest', (_message.Message,), {
|
|
40
|
-
'DESCRIPTOR' : _QUITREQUEST,
|
|
41
|
-
'__module__' : 'ansys.api.systemcoupling.v0.process_pb2'
|
|
42
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.QuitRequest)
|
|
43
|
-
})
|
|
44
|
-
_sym_db.RegisterMessage(QuitRequest)
|
|
45
|
-
|
|
46
|
-
QuitResponse = _reflection.GeneratedProtocolMessageType('QuitResponse', (_message.Message,), {
|
|
47
|
-
'DESCRIPTOR' : _QUITRESPONSE,
|
|
48
|
-
'__module__' : 'ansys.api.systemcoupling.v0.process_pb2'
|
|
49
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.QuitResponse)
|
|
50
|
-
})
|
|
51
|
-
_sym_db.RegisterMessage(QuitResponse)
|
|
52
|
-
|
|
53
|
-
_PROCESS = DESCRIPTOR.services_by_name['Process']
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.process_pb2', globals())
|
|
54
20
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
55
21
|
|
|
56
22
|
DESCRIPTOR._options = None
|
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/solution.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
5
6
|
from google.protobuf import descriptor as _descriptor
|
|
6
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
10
9
|
# @@protoc_insertion_point(imports)
|
|
11
10
|
|
|
@@ -16,57 +15,8 @@ _sym_db = _symbol_database.Default()
|
|
|
16
15
|
|
|
17
16
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*ansys/api/systemcoupling/v0/solution.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"\x0e\n\x0cSolveRequest\"\x0f\n\rSolveResponse\"\"\n\x10InterruptRequest\x12\x0e\n\x06reason\x18\x01 \x01(\t\"\x13\n\x11InterruptResponse\"\x1e\n\x0c\x41\x62ortRequest\x12\x0e\n\x06reason\x18\x01 \x01(\t\"\x0f\n\rAbortResponse2\xbc\x02\n\x08Solution\x12`\n\x05Solve\x12).ansys.api.systemcoupling.v0.SolveRequest\x1a*.ansys.api.systemcoupling.v0.SolveResponse\"\x00\x12l\n\tInterrupt\x12-.ansys.api.systemcoupling.v0.InterruptRequest\x1a..ansys.api.systemcoupling.v0.InterruptResponse\"\x00\x12`\n\x05\x41\x62ort\x12).ansys.api.systemcoupling.v0.AbortRequest\x1a*.ansys.api.systemcoupling.v0.AbortResponse\"\x00\x62\x06proto3')
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
_SOLVEREQUEST = DESCRIPTOR.message_types_by_name['SolveRequest']
|
|
22
|
-
_SOLVERESPONSE = DESCRIPTOR.message_types_by_name['SolveResponse']
|
|
23
|
-
_INTERRUPTREQUEST = DESCRIPTOR.message_types_by_name['InterruptRequest']
|
|
24
|
-
_INTERRUPTRESPONSE = DESCRIPTOR.message_types_by_name['InterruptResponse']
|
|
25
|
-
_ABORTREQUEST = DESCRIPTOR.message_types_by_name['AbortRequest']
|
|
26
|
-
_ABORTRESPONSE = DESCRIPTOR.message_types_by_name['AbortResponse']
|
|
27
|
-
SolveRequest = _reflection.GeneratedProtocolMessageType('SolveRequest', (_message.Message,), {
|
|
28
|
-
'DESCRIPTOR' : _SOLVEREQUEST,
|
|
29
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
30
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.SolveRequest)
|
|
31
|
-
})
|
|
32
|
-
_sym_db.RegisterMessage(SolveRequest)
|
|
33
|
-
|
|
34
|
-
SolveResponse = _reflection.GeneratedProtocolMessageType('SolveResponse', (_message.Message,), {
|
|
35
|
-
'DESCRIPTOR' : _SOLVERESPONSE,
|
|
36
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
37
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.SolveResponse)
|
|
38
|
-
})
|
|
39
|
-
_sym_db.RegisterMessage(SolveResponse)
|
|
40
|
-
|
|
41
|
-
InterruptRequest = _reflection.GeneratedProtocolMessageType('InterruptRequest', (_message.Message,), {
|
|
42
|
-
'DESCRIPTOR' : _INTERRUPTREQUEST,
|
|
43
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
44
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.InterruptRequest)
|
|
45
|
-
})
|
|
46
|
-
_sym_db.RegisterMessage(InterruptRequest)
|
|
47
|
-
|
|
48
|
-
InterruptResponse = _reflection.GeneratedProtocolMessageType('InterruptResponse', (_message.Message,), {
|
|
49
|
-
'DESCRIPTOR' : _INTERRUPTRESPONSE,
|
|
50
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
51
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.InterruptResponse)
|
|
52
|
-
})
|
|
53
|
-
_sym_db.RegisterMessage(InterruptResponse)
|
|
54
|
-
|
|
55
|
-
AbortRequest = _reflection.GeneratedProtocolMessageType('AbortRequest', (_message.Message,), {
|
|
56
|
-
'DESCRIPTOR' : _ABORTREQUEST,
|
|
57
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
58
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.AbortRequest)
|
|
59
|
-
})
|
|
60
|
-
_sym_db.RegisterMessage(AbortRequest)
|
|
61
|
-
|
|
62
|
-
AbortResponse = _reflection.GeneratedProtocolMessageType('AbortResponse', (_message.Message,), {
|
|
63
|
-
'DESCRIPTOR' : _ABORTRESPONSE,
|
|
64
|
-
'__module__' : 'ansys.api.systemcoupling.v0.solution_pb2'
|
|
65
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.AbortResponse)
|
|
66
|
-
})
|
|
67
|
-
_sym_db.RegisterMessage(AbortResponse)
|
|
68
|
-
|
|
69
|
-
_SOLUTION = DESCRIPTOR.services_by_name['Solution']
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.solution_pb2', globals())
|
|
70
20
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
71
21
|
|
|
72
22
|
DESCRIPTOR._options = None
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# source: ansys/api/systemcoupling/v0/variant.proto
|
|
4
4
|
"""Generated protocol buffer code."""
|
|
5
|
-
from google.protobuf.internal import
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
-
from google.protobuf import message as _message
|
|
9
|
-
from google.protobuf import reflection as _reflection
|
|
10
8
|
from google.protobuf import symbol_database as _symbol_database
|
|
11
9
|
# @@protoc_insertion_point(imports)
|
|
12
10
|
|
|
@@ -17,76 +15,8 @@ _sym_db = _symbol_database.Default()
|
|
|
17
15
|
|
|
18
16
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n)ansys/api/systemcoupling/v0/variant.proto\x12\x1b\x61nsys.api.systemcoupling.v0\"\x1c\n\x0cStringVector\x12\x0c\n\x04item\x18\x01 \x03(\t\"\x1c\n\x0c\x44oubleVector\x12\x0c\n\x04item\x18\x01 \x03(\x01\"\x1a\n\nBoolVector\x12\x0c\n\x04item\x18\x01 \x03(\x08\"\x1b\n\x0bInt64Vector\x12\x0c\n\x04item\x18\x01 \x03(\x12\"\xa0\x01\n\nVariantMap\x12?\n\x04item\x18\x01 \x03(\x0b\x32\x31.ansys.api.systemcoupling.v0.VariantMap.ItemEntry\x1aQ\n\tItemEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.ansys.api.systemcoupling.v0.Variant:\x02\x38\x01\"C\n\rVariantVector\x12\x32\n\x04item\x18\x01 \x03(\x0b\x32$.ansys.api.systemcoupling.v0.Variant\"\xde\x04\n\x07Variant\x12<\n\nnone_state\x18\x01 \x01(\x0e\x32&.ansys.api.systemcoupling.v0.NoneValueH\x00\x12\x14\n\nbool_state\x18\x02 \x01(\x08H\x00\x12\x15\n\x0bint64_state\x18\x03 \x01(\x12H\x00\x12\x16\n\x0c\x64ouble_state\x18\x05 \x01(\x01H\x00\x12\x16\n\x0cstring_state\x18\x06 \x01(\tH\x00\x12\x44\n\x11\x62ool_vector_state\x18\x07 \x01(\x0b\x32\'.ansys.api.systemcoupling.v0.BoolVectorH\x00\x12\x46\n\x12int64_vector_state\x18\x08 \x01(\x0b\x32(.ansys.api.systemcoupling.v0.Int64VectorH\x00\x12H\n\x13\x64ouble_vector_state\x18\t \x01(\x0b\x32).ansys.api.systemcoupling.v0.DoubleVectorH\x00\x12H\n\x13string_vector_state\x18\n \x01(\x0b\x32).ansys.api.systemcoupling.v0.StringVectorH\x00\x12J\n\x14variant_vector_state\x18\x0b \x01(\x0b\x32*.ansys.api.systemcoupling.v0.VariantVectorH\x00\x12\x44\n\x11variant_map_state\x18\x0c \x01(\x0b\x32\'.ansys.api.systemcoupling.v0.VariantMapH\x00\x42\x04\n\x02\x61s*\x1b\n\tNoneValue\x12\x0e\n\nNONE_VALUE\x10\x00\x62\x06proto3')
|
|
19
17
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
NONE_VALUE = 0
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
_STRINGVECTOR = DESCRIPTOR.message_types_by_name['StringVector']
|
|
26
|
-
_DOUBLEVECTOR = DESCRIPTOR.message_types_by_name['DoubleVector']
|
|
27
|
-
_BOOLVECTOR = DESCRIPTOR.message_types_by_name['BoolVector']
|
|
28
|
-
_INT64VECTOR = DESCRIPTOR.message_types_by_name['Int64Vector']
|
|
29
|
-
_VARIANTMAP = DESCRIPTOR.message_types_by_name['VariantMap']
|
|
30
|
-
_VARIANTMAP_ITEMENTRY = _VARIANTMAP.nested_types_by_name['ItemEntry']
|
|
31
|
-
_VARIANTVECTOR = DESCRIPTOR.message_types_by_name['VariantVector']
|
|
32
|
-
_VARIANT = DESCRIPTOR.message_types_by_name['Variant']
|
|
33
|
-
StringVector = _reflection.GeneratedProtocolMessageType('StringVector', (_message.Message,), {
|
|
34
|
-
'DESCRIPTOR' : _STRINGVECTOR,
|
|
35
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
36
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.StringVector)
|
|
37
|
-
})
|
|
38
|
-
_sym_db.RegisterMessage(StringVector)
|
|
39
|
-
|
|
40
|
-
DoubleVector = _reflection.GeneratedProtocolMessageType('DoubleVector', (_message.Message,), {
|
|
41
|
-
'DESCRIPTOR' : _DOUBLEVECTOR,
|
|
42
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
43
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.DoubleVector)
|
|
44
|
-
})
|
|
45
|
-
_sym_db.RegisterMessage(DoubleVector)
|
|
46
|
-
|
|
47
|
-
BoolVector = _reflection.GeneratedProtocolMessageType('BoolVector', (_message.Message,), {
|
|
48
|
-
'DESCRIPTOR' : _BOOLVECTOR,
|
|
49
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
50
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.BoolVector)
|
|
51
|
-
})
|
|
52
|
-
_sym_db.RegisterMessage(BoolVector)
|
|
53
|
-
|
|
54
|
-
Int64Vector = _reflection.GeneratedProtocolMessageType('Int64Vector', (_message.Message,), {
|
|
55
|
-
'DESCRIPTOR' : _INT64VECTOR,
|
|
56
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
57
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.Int64Vector)
|
|
58
|
-
})
|
|
59
|
-
_sym_db.RegisterMessage(Int64Vector)
|
|
60
|
-
|
|
61
|
-
VariantMap = _reflection.GeneratedProtocolMessageType('VariantMap', (_message.Message,), {
|
|
62
|
-
|
|
63
|
-
'ItemEntry' : _reflection.GeneratedProtocolMessageType('ItemEntry', (_message.Message,), {
|
|
64
|
-
'DESCRIPTOR' : _VARIANTMAP_ITEMENTRY,
|
|
65
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
66
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.VariantMap.ItemEntry)
|
|
67
|
-
})
|
|
68
|
-
,
|
|
69
|
-
'DESCRIPTOR' : _VARIANTMAP,
|
|
70
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
71
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.VariantMap)
|
|
72
|
-
})
|
|
73
|
-
_sym_db.RegisterMessage(VariantMap)
|
|
74
|
-
_sym_db.RegisterMessage(VariantMap.ItemEntry)
|
|
75
|
-
|
|
76
|
-
VariantVector = _reflection.GeneratedProtocolMessageType('VariantVector', (_message.Message,), {
|
|
77
|
-
'DESCRIPTOR' : _VARIANTVECTOR,
|
|
78
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
79
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.VariantVector)
|
|
80
|
-
})
|
|
81
|
-
_sym_db.RegisterMessage(VariantVector)
|
|
82
|
-
|
|
83
|
-
Variant = _reflection.GeneratedProtocolMessageType('Variant', (_message.Message,), {
|
|
84
|
-
'DESCRIPTOR' : _VARIANT,
|
|
85
|
-
'__module__' : 'ansys.api.systemcoupling.v0.variant_pb2'
|
|
86
|
-
# @@protoc_insertion_point(class_scope:ansys.api.systemcoupling.v0.Variant)
|
|
87
|
-
})
|
|
88
|
-
_sym_db.RegisterMessage(Variant)
|
|
89
|
-
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.systemcoupling.v0.variant_pb2', globals())
|
|
90
20
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
91
21
|
|
|
92
22
|
DESCRIPTOR._options = None
|
{ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-api-systemcoupling
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Autogenerated python gRPC interface package for ansys-api-systemcoupling, built on 11:30:19 on 06 February 2026
|
|
5
5
|
Home-page: https://github.com/ansys/ansys-api-systemcoupling
|
|
6
6
|
Author: ANSYS, Inc.
|
|
7
7
|
Author-email: support@ansys.com
|
|
@@ -9,8 +9,18 @@ License: MIT
|
|
|
9
9
|
Requires-Python: >=3.7
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: grpcio
|
|
13
|
-
Requires-Dist: protobuf
|
|
12
|
+
Requires-Dist: grpcio~=1.30
|
|
13
|
+
Requires-Dist: protobuf<7,>=3.19
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
14
24
|
|
|
15
25
|
### ansys-api-systemcoupling gRPC Interface Package
|
|
16
26
|
|
{ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/RECORD
RENAMED
|
@@ -1,39 +1,44 @@
|
|
|
1
|
-
ansys/api/systemcoupling/VERSION,sha256=
|
|
1
|
+
ansys/api/systemcoupling/VERSION,sha256=9PyVbsYbGHzRh5DAsKb6XR06MN5KVJPjJ3RgSF7RiPI,5
|
|
2
2
|
ansys/api/systemcoupling/__init__.py,sha256=i4E-euAg0L4fE_SHeh9Bogb8Jm4-tNSw2y_CPDSmFOk,236
|
|
3
3
|
ansys/api/systemcoupling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
ansys/api/systemcoupling/v0/chart.proto,sha256=40LnzSrdWFVIQXBMIBgpCiAsgiVZ_KOLJm7o3UL8c5Q,6317
|
|
5
|
+
ansys/api/systemcoupling/v0/chart_pb2.py,sha256=_vKCg9evupxhNyGOIgMp_D1jV2cUbJ7tbCIFeyBa3Jc,4685
|
|
6
|
+
ansys/api/systemcoupling/v0/chart_pb2.pyi,sha256=IEUDJB1_3PxA6VV4hQMzBzuNV-R-lyhI3oEbrxI-Vbg,14547
|
|
7
|
+
ansys/api/systemcoupling/v0/chart_pb2_grpc.py,sha256=kyYTnG22HYkqRznedMUPhTAQfL7HFrP8yjhQfdslWpI,9064
|
|
8
|
+
ansys/api/systemcoupling/v0/chart_pb2_grpc.pyi,sha256=CGf106-lWnx1ENuvbWpJVMETrHx-f3r1FKLG1pPnoZQ,3670
|
|
4
9
|
ansys/api/systemcoupling/v0/command.proto,sha256=CjFLYU9gQ6i6lmm3VfwqsrxQNdkuJ8NQ_zEtmF4EHAw,452
|
|
5
|
-
ansys/api/systemcoupling/v0/command_pb2.py,sha256=
|
|
10
|
+
ansys/api/systemcoupling/v0/command_pb2.py,sha256=9lhwK8q3EnNwSQ2NY1oENaU801AtUZr4dOUgGvaKPZY,1963
|
|
6
11
|
ansys/api/systemcoupling/v0/command_pb2.pyi,sha256=Vo6CUilCkHZN-T73l4H4lbsDl62PY5wbGx_UD0R06IQ,2420
|
|
7
12
|
ansys/api/systemcoupling/v0/command_pb2_grpc.py,sha256=avLCiTV2m0FOuO5yoc08-qF1nGM-6G5G8KsyV5Enkzg,2822
|
|
8
13
|
ansys/api/systemcoupling/v0/command_pb2_grpc.pyi,sha256=xxuG_jQZoVUHaAWMpU2W9Xo-U9QSmxodcCU9qgFM6sE,788
|
|
9
14
|
ansys/api/systemcoupling/v0/error.proto,sha256=_x1-9BbeIiYy0baozaEpeI6BnB83R5IYNoDYy_InQE4,199
|
|
10
|
-
ansys/api/systemcoupling/v0/error_pb2.py,sha256=
|
|
15
|
+
ansys/api/systemcoupling/v0/error_pb2.py,sha256=5erjfWScbkoUxrQ5ZUcXs_Ab2SJwYtGbRJsdDM2mOcA,1116
|
|
11
16
|
ansys/api/systemcoupling/v0/error_pb2.pyi,sha256=ooWFgvYy6QTvptSIu5RSiG84rNnEh3OTcxp_dJ-_dvU,879
|
|
12
17
|
ansys/api/systemcoupling/v0/error_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
13
18
|
ansys/api/systemcoupling/v0/error_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
14
19
|
ansys/api/systemcoupling/v0/output_stream.proto,sha256=Hx_JQEpAbui83Y1qF6rva8hjEgsjBytbH6cUtQ1L1Nc,300
|
|
15
|
-
ansys/api/systemcoupling/v0/output_stream_pb2.py,sha256=
|
|
20
|
+
ansys/api/systemcoupling/v0/output_stream_pb2.py,sha256=4oUDUiC0lkFjs2E3APRtEbgIKPqq3wD269XutlRMvag,1454
|
|
16
21
|
ansys/api/systemcoupling/v0/output_stream_pb2.pyi,sha256=8ELqb9MKLrUse-Ih36yJW1Vg7EmALvvEX4Hon-Loaaw,880
|
|
17
22
|
ansys/api/systemcoupling/v0/output_stream_pb2_grpc.py,sha256=o_35WUECubK-KEBJsC4urEebmxMioe5XfZ9DkmoZLps,2955
|
|
18
23
|
ansys/api/systemcoupling/v0/output_stream_pb2_grpc.pyi,sha256=r2w03mm6BxbnBWzZ04Jfqsu3e13qVyVRjmM4VW9X5do,886
|
|
19
24
|
ansys/api/systemcoupling/v0/process.proto,sha256=-IN2ThCTWvhdBey_FTwdr2sV4aXSkfAOeJQRlLCjnEM,333
|
|
20
|
-
ansys/api/systemcoupling/v0/process_pb2.py,sha256=
|
|
25
|
+
ansys/api/systemcoupling/v0/process_pb2.py,sha256=o02mb9PUTPG-VvriqbsxWyPEwbDx8pG_qlQhVPL8S5s,1623
|
|
21
26
|
ansys/api/systemcoupling/v0/process_pb2.pyi,sha256=kadtNGYZyZmydeS9HOhei04aWb4ydkSFvjU1tCldmZI,984
|
|
22
27
|
ansys/api/systemcoupling/v0/process_pb2_grpc.py,sha256=-LPm8eQj_gSbgexQybsnmAuEEWPcUioUZTQF879_XjY,4478
|
|
23
28
|
ansys/api/systemcoupling/v0/process_pb2_grpc.pyi,sha256=mFbC50tl0lKDK118uI1xUd8LAj6-9ZlGax9vCCezYrg,1148
|
|
24
29
|
ansys/api/systemcoupling/v0/solution.proto,sha256=crjdhs_JoULifdzGuXqkGEysY5ViVcscWhBoWiaGS9o,751
|
|
25
|
-
ansys/api/systemcoupling/v0/solution_pb2.py,sha256=
|
|
30
|
+
ansys/api/systemcoupling/v0/solution_pb2.py,sha256=iMAV4jHT3K9hE-ho2MhKncoxjCh3tQK3w_ir1RO0VQI,2077
|
|
26
31
|
ansys/api/systemcoupling/v0/solution_pb2.pyi,sha256=vX2z5g1tcOgASWpfMAthNdzzRio9EO998Xpd2IBtSAE,2150
|
|
27
32
|
ansys/api/systemcoupling/v0/solution_pb2_grpc.py,sha256=E8VNoQhfyCFbiJAOMcEvehklEdxFpUd94JWlkQfvrQs,6337
|
|
28
33
|
ansys/api/systemcoupling/v0/solution_pb2_grpc.pyi,sha256=bkwkVg0HUagLc29yUj6oOzmKWWXg8pGP5qTnajQNidg,1597
|
|
29
34
|
ansys/api/systemcoupling/v0/variant.proto,sha256=4nGTCMGXwS_-W1VIU_cg3wJgu1_Hfyq52cp4Rtmw0co,925
|
|
30
|
-
ansys/api/systemcoupling/v0/variant_pb2.py,sha256=
|
|
35
|
+
ansys/api/systemcoupling/v0/variant_pb2.py,sha256=8FH2RLpbelQh5qO3Dv7w3rR04crhIyo4D7gIBLbx7sY,3244
|
|
31
36
|
ansys/api/systemcoupling/v0/variant_pb2.pyi,sha256=D2iHLSHYrd2AhcA42TPYuIoKazBB6bdQO9ODgekhtAs,8093
|
|
32
37
|
ansys/api/systemcoupling/v0/variant_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
33
38
|
ansys/api/systemcoupling/v0/variant_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
|
|
34
|
-
ansys_api_systemcoupling-0.
|
|
35
|
-
ansys_api_systemcoupling-0.
|
|
36
|
-
ansys_api_systemcoupling-0.
|
|
37
|
-
ansys_api_systemcoupling-0.
|
|
38
|
-
ansys_api_systemcoupling-0.
|
|
39
|
-
ansys_api_systemcoupling-0.
|
|
39
|
+
ansys_api_systemcoupling-0.3.1.dist-info/licenses/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
|
|
40
|
+
ansys_api_systemcoupling-0.3.1.dist-info/METADATA,sha256=vHVWAvGbLdaeXct2LTEK-CXEeaszbqnLkUXnwzbyn_I,2118
|
|
41
|
+
ansys_api_systemcoupling-0.3.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
42
|
+
ansys_api_systemcoupling-0.3.1.dist-info/entry_points.txt,sha256=_GF78i8qp_7OsI5n1jIDwQkIwfq-eg9SfWbdf06iZ1o,101
|
|
43
|
+
ansys_api_systemcoupling-0.3.1.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
|
|
44
|
+
ansys_api_systemcoupling-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{ansys_api_systemcoupling-0.2.0.dist-info → ansys_api_systemcoupling-0.3.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|