MachSysS 0.6.4__tar.gz
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.
- MachSysS-0.6.4/CONTRIBUTING.md +33 -0
- MachSysS-0.6.4/LICENSE +21 -0
- MachSysS-0.6.4/MANIFEST.in +7 -0
- MachSysS-0.6.4/MachSysS/__init__.py +1 -0
- MachSysS-0.6.4/MachSysS/_modidx.py +288 -0
- MachSysS-0.6.4/MachSysS/convert_feems_result_to_proto.py +408 -0
- MachSysS-0.6.4/MachSysS/convert_gymir_result_to_proto.py +144 -0
- MachSysS-0.6.4/MachSysS/convert_proto_timeseries.py +98 -0
- MachSysS-0.6.4/MachSysS/convert_to_feems.py +728 -0
- MachSysS-0.6.4/MachSysS/convert_to_protobuf.py +528 -0
- MachSysS-0.6.4/MachSysS/feems_result_pb2.py +44 -0
- MachSysS-0.6.4/MachSysS/feems_result_pb2.pyi +274 -0
- MachSysS-0.6.4/MachSysS/gymir_result_pb2.py +35 -0
- MachSysS-0.6.4/MachSysS/gymir_result_pb2.pyi +179 -0
- MachSysS-0.6.4/MachSysS/system_structure_pb2.py +99 -0
- MachSysS-0.6.4/MachSysS/system_structure_pb2.pyi +865 -0
- MachSysS-0.6.4/MachSysS/utility.py +34 -0
- MachSysS-0.6.4/MachSysS.egg-info/PKG-INFO +26 -0
- MachSysS-0.6.4/MachSysS.egg-info/SOURCES.txt +31 -0
- MachSysS-0.6.4/MachSysS.egg-info/dependency_links.txt +1 -0
- MachSysS-0.6.4/MachSysS.egg-info/not-zip-safe +1 -0
- MachSysS-0.6.4/MachSysS.egg-info/requires.txt +5 -0
- MachSysS-0.6.4/MachSysS.egg-info/top_level.txt +3 -0
- MachSysS-0.6.4/PKG-INFO +26 -0
- MachSysS-0.6.4/README.md +4 -0
- MachSysS-0.6.4/proto/__init__.py +0 -0
- MachSysS-0.6.4/settings.ini +74 -0
- MachSysS-0.6.4/setup.cfg +4 -0
- MachSysS-0.6.4/setup.py +112 -0
- MachSysS-0.6.4/tests/__init__.py +0 -0
- MachSysS-0.6.4/tests/test.py +10 -0
- MachSysS-0.6.4/tests/utility.py +960 -0
- MachSysS-0.6.4/tests/utility_compare_proto.py +349 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# How to contribute
|
|
2
|
+
|
|
3
|
+
## How to get started
|
|
4
|
+
|
|
5
|
+
Before anything else, please install the git hooks that run automatic scripts during each commit and merge to strip the notebooks of superfluous metadata (and avoid merge conflicts). After cloning the repository, run the following command inside it:
|
|
6
|
+
```
|
|
7
|
+
nbdev_install_git_hooks
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Did you find a bug?
|
|
11
|
+
|
|
12
|
+
* Ensure the bug was not already reported by searching on GitHub under Issues.
|
|
13
|
+
* If you're unable to find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and a code sample or an executable test case demonstrating the expected behavior that is not occurring.
|
|
14
|
+
* Be sure to add the complete error messages.
|
|
15
|
+
|
|
16
|
+
#### Did you write a patch that fixes a bug?
|
|
17
|
+
|
|
18
|
+
* Open a new GitHub pull request with the patch.
|
|
19
|
+
* Ensure that your PR includes a test that fails without your patch, and pass with it.
|
|
20
|
+
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
|
|
21
|
+
|
|
22
|
+
## PR submission guidelines
|
|
23
|
+
|
|
24
|
+
* Keep each PR focused. While it's more convenient, do not combine several unrelated fixes together. Create as many branches as needing to keep each PR focused.
|
|
25
|
+
* Do not mix style changes/fixes with "functional" changes. It's very difficult to review such PRs and it most likely get rejected.
|
|
26
|
+
* Do not add/remove vertical whitespace. Preserve the original style of the file you edit as much as you can.
|
|
27
|
+
* Do not turn an already submitted PR into your development playground. If after you submitted PR, you discovered that more work is needed - close the PR, do the required work and then submit a new PR. Otherwise each of your commits requires attention from maintainers of the project.
|
|
28
|
+
* If, however, you submitted a PR and received a request for changes, you should proceed with commits inside that PR, so that the maintainer can see the incremental fixes and won't need to review the whole PR again. In the exception case where you realize it'll take many many commits to complete the requests, then it's probably best to close the PR, do the work and then submit it again. Use common sense where you'd choose one way over another.
|
|
29
|
+
|
|
30
|
+
## Do you want to contribute to the documentation?
|
|
31
|
+
|
|
32
|
+
* Docs are automatically created from the notebooks in the nbs folder.
|
|
33
|
+
|
MachSysS-0.6.4/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 SINTEF
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.6.4"
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
# Autogenerated by nbdev
|
|
2
|
+
|
|
3
|
+
d = {
|
|
4
|
+
"settings": {
|
|
5
|
+
"branch": "master",
|
|
6
|
+
"doc_baseurl": "/MachSysS/",
|
|
7
|
+
"doc_host": "https://keviny.github.io",
|
|
8
|
+
"git_url": "https://SintefOceanEnergySystem@dev.azure.com/SintefOceanEnergySystem/MachinerySystemStucture/_git/MachinerySystemStucture",
|
|
9
|
+
"lib_path": "MachSysS",
|
|
10
|
+
},
|
|
11
|
+
"syms": {
|
|
12
|
+
"MachSysS.convert_feems_result_to_proto": {
|
|
13
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter": (
|
|
14
|
+
"convertfeemsresulttoproto.html#feemsresultconverter",
|
|
15
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
16
|
+
),
|
|
17
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.__init__": (
|
|
18
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.__init__",
|
|
19
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
20
|
+
),
|
|
21
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter._get_feems_result_proto_for_subsystem": (
|
|
22
|
+
"convertfeemsresulttoproto.html#feemsresultconverter._get_feems_result_proto_for_subsystem",
|
|
23
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
24
|
+
),
|
|
25
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter._retrieve_time_series_data_from_components": (
|
|
26
|
+
"convertfeemsresulttoproto.html#feemsresultconverter._retrieve_time_series_data_from_components",
|
|
27
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
28
|
+
),
|
|
29
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter._time_interval_to_time_array": (
|
|
30
|
+
"convertfeemsresulttoproto.html#feemsresultconverter._time_interval_to_time_array",
|
|
31
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
32
|
+
),
|
|
33
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.electric_system": (
|
|
34
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.electric_system",
|
|
35
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
36
|
+
),
|
|
37
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.get_feems_result_proto": (
|
|
38
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.get_feems_result_proto",
|
|
39
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
40
|
+
),
|
|
41
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.get_timeseries_for_power_sources_and_energy_storage": (
|
|
42
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.get_timeseries_for_power_sources_and_energy_storage",
|
|
43
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
44
|
+
),
|
|
45
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.isSystemElectric": (
|
|
46
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.issystemelectric",
|
|
47
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
48
|
+
),
|
|
49
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.mechanical_system": (
|
|
50
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.mechanical_system",
|
|
51
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
52
|
+
),
|
|
53
|
+
"MachSysS.convert_feems_result_to_proto.FEEMSResultConverter.system_feems": (
|
|
54
|
+
"convertfeemsresulttoproto.html#feemsresultconverter.system_feems",
|
|
55
|
+
"MachSysS/convert_feems_result_to_proto.py",
|
|
56
|
+
),
|
|
57
|
+
},
|
|
58
|
+
"MachSysS.convert_gymir_result_to_proto": {
|
|
59
|
+
"MachSysS.convert_gymir_result_to_proto.GymirResultConverter": (
|
|
60
|
+
"convertgymirresulttoproto.html#gymirresultconverter",
|
|
61
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
62
|
+
),
|
|
63
|
+
"MachSysS.convert_gymir_result_to_proto.GymirResultConverter.__init__": (
|
|
64
|
+
"convertgymirresulttoproto.html#gymirresultconverter.__init__",
|
|
65
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
66
|
+
),
|
|
67
|
+
"MachSysS.convert_gymir_result_to_proto.GymirResultConverter.read_csv": (
|
|
68
|
+
"convertgymirresulttoproto.html#gymirresultconverter.read_csv",
|
|
69
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
70
|
+
),
|
|
71
|
+
"MachSysS.convert_gymir_result_to_proto.GymirResultConverter.to_csv": (
|
|
72
|
+
"convertgymirresulttoproto.html#gymirresultconverter.to_csv",
|
|
73
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
74
|
+
),
|
|
75
|
+
"MachSysS.convert_gymir_result_to_proto.find_csv_name_from_message_field_name": (
|
|
76
|
+
"convertgymirresulttoproto.html#find_csv_name_from_message_field_name",
|
|
77
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
78
|
+
),
|
|
79
|
+
"MachSysS.convert_gymir_result_to_proto.get_message_type_for_simulation_instance": (
|
|
80
|
+
"convertgymirresulttoproto.html#get_message_type_for_simulation_instance",
|
|
81
|
+
"MachSysS/convert_gymir_result_to_proto.py",
|
|
82
|
+
),
|
|
83
|
+
},
|
|
84
|
+
"MachSysS.convert_proto_timeseries": {
|
|
85
|
+
"MachSysS.convert_proto_timeseries.convert_proto_timeseries_to_pd_dataframe": (
|
|
86
|
+
"converttimeseriesresultprototopandas.html#convert_proto_timeseries_to_pd_dataframe",
|
|
87
|
+
"MachSysS/convert_proto_timeseries.py",
|
|
88
|
+
),
|
|
89
|
+
"MachSysS.convert_proto_timeseries.convert_proto_timeseries_to_pd_series": (
|
|
90
|
+
"converttimeseriesresultprototopandas.html#convert_proto_timeseries_to_pd_series",
|
|
91
|
+
"MachSysS/convert_proto_timeseries.py",
|
|
92
|
+
),
|
|
93
|
+
},
|
|
94
|
+
"MachSysS.convert_to_feems": {
|
|
95
|
+
"MachSysS.convert_to_feems.collect_electric_components_from_sub_system": (
|
|
96
|
+
"converttofeems.html#collect_electric_components_from_sub_system",
|
|
97
|
+
"MachSysS/convert_to_feems.py",
|
|
98
|
+
),
|
|
99
|
+
"MachSysS.convert_to_feems.convert_emission_curve_to_feems": (
|
|
100
|
+
"converttofeems.html#convert_emission_curve_to_feems",
|
|
101
|
+
"MachSysS/convert_to_feems.py",
|
|
102
|
+
),
|
|
103
|
+
"MachSysS.convert_to_feems.convert_feems_shaftlines_to_feems_mechanical_propulsion_system": (
|
|
104
|
+
"converttofeems.html#convert_feems_shaftlines_to_feems_mechanical_propulsion_system",
|
|
105
|
+
"MachSysS/convert_to_feems.py",
|
|
106
|
+
),
|
|
107
|
+
"MachSysS.convert_to_feems.convert_feems_switchboards_to_feems_electric_power_system": (
|
|
108
|
+
"converttofeems.html#convert_feems_switchboards_to_feems_electric_power_system",
|
|
109
|
+
"MachSysS/convert_to_feems.py",
|
|
110
|
+
),
|
|
111
|
+
"MachSysS.convert_to_feems.convert_generic_electric_subsystem_to_feems": (
|
|
112
|
+
"converttofeems.html#convert_generic_electric_subsystem_to_feems",
|
|
113
|
+
"MachSysS/convert_to_feems.py",
|
|
114
|
+
),
|
|
115
|
+
"MachSysS.convert_to_feems.convert_nox_calculation_method": (
|
|
116
|
+
"converttofeems.html#convert_nox_calculation_method",
|
|
117
|
+
"MachSysS/convert_to_feems.py",
|
|
118
|
+
),
|
|
119
|
+
"MachSysS.convert_to_feems.convert_proto_battery_system_to_feems": (
|
|
120
|
+
"converttofeems.html#convert_proto_battery_system_to_feems",
|
|
121
|
+
"MachSysS/convert_to_feems.py",
|
|
122
|
+
),
|
|
123
|
+
"MachSysS.convert_to_feems.convert_proto_battery_to_feems": (
|
|
124
|
+
"converttofeems.html#convert_proto_battery_to_feems",
|
|
125
|
+
"MachSysS/convert_to_feems.py",
|
|
126
|
+
),
|
|
127
|
+
"MachSysS.convert_to_feems.convert_proto_curve1d_to_np_array": (
|
|
128
|
+
"converttofeems.html#convert_proto_curve1d_to_np_array",
|
|
129
|
+
"MachSysS/convert_to_feems.py",
|
|
130
|
+
),
|
|
131
|
+
"MachSysS.convert_to_feems.convert_proto_efficiency_bsfc_to_np_array": (
|
|
132
|
+
"converttofeems.html#convert_proto_efficiency_bsfc_to_np_array",
|
|
133
|
+
"MachSysS/convert_to_feems.py",
|
|
134
|
+
),
|
|
135
|
+
"MachSysS.convert_to_feems.convert_proto_electric_component_to_feems": (
|
|
136
|
+
"converttofeems.html#convert_proto_electric_component_to_feems",
|
|
137
|
+
"MachSysS/convert_to_feems.py",
|
|
138
|
+
),
|
|
139
|
+
"MachSysS.convert_to_feems.convert_proto_electric_machine_to_feems": (
|
|
140
|
+
"converttofeems.html#convert_proto_electric_machine_to_feems",
|
|
141
|
+
"MachSysS/convert_to_feems.py",
|
|
142
|
+
),
|
|
143
|
+
"MachSysS.convert_to_feems.convert_proto_electric_system_to_feems": (
|
|
144
|
+
"converttofeems.html#convert_proto_electric_system_to_feems",
|
|
145
|
+
"MachSysS/convert_to_feems.py",
|
|
146
|
+
),
|
|
147
|
+
"MachSysS.convert_to_feems.convert_proto_engine_to_feems": (
|
|
148
|
+
"converttofeems.html#convert_proto_engine_to_feems",
|
|
149
|
+
"MachSysS/convert_to_feems.py",
|
|
150
|
+
),
|
|
151
|
+
"MachSysS.convert_to_feems.convert_proto_fuel_cell_system_to_feems": (
|
|
152
|
+
"converttofeems.html#convert_proto_fuel_cell_system_to_feems",
|
|
153
|
+
"MachSysS/convert_to_feems.py",
|
|
154
|
+
),
|
|
155
|
+
"MachSysS.convert_to_feems.convert_proto_generic_electric_component_to_feems": (
|
|
156
|
+
"converttofeems.html#convert_proto_generic_electric_component_to_feems",
|
|
157
|
+
"MachSysS/convert_to_feems.py",
|
|
158
|
+
),
|
|
159
|
+
"MachSysS.convert_to_feems.convert_proto_genset_to_feems": (
|
|
160
|
+
"converttofeems.html#convert_proto_genset_to_feems",
|
|
161
|
+
"MachSysS/convert_to_feems.py",
|
|
162
|
+
),
|
|
163
|
+
"MachSysS.convert_to_feems.convert_proto_mechanical_system_to_feems": (
|
|
164
|
+
"converttofeems.html#convert_proto_mechanical_system_to_feems",
|
|
165
|
+
"MachSysS/convert_to_feems.py",
|
|
166
|
+
),
|
|
167
|
+
"MachSysS.convert_to_feems.convert_proto_point_to_list": (
|
|
168
|
+
"converttofeems.html#convert_proto_point_to_list",
|
|
169
|
+
"MachSysS/convert_to_feems.py",
|
|
170
|
+
),
|
|
171
|
+
"MachSysS.convert_to_feems.convert_proto_propulsion_system_to_feems": (
|
|
172
|
+
"converttofeems.html#convert_proto_propulsion_system_to_feems",
|
|
173
|
+
"MachSysS/convert_to_feems.py",
|
|
174
|
+
),
|
|
175
|
+
"MachSysS.convert_to_feems.convert_proto_pti_pto_subsystem_to_feems": (
|
|
176
|
+
"converttofeems.html#convert_proto_pti_pto_subsystem_to_feems",
|
|
177
|
+
"MachSysS/convert_to_feems.py",
|
|
178
|
+
),
|
|
179
|
+
"MachSysS.convert_to_feems.convert_proto_serial_subsystem_to_feems": (
|
|
180
|
+
"converttofeems.html#convert_proto_serial_subsystem_to_feems",
|
|
181
|
+
"MachSysS/convert_to_feems.py",
|
|
182
|
+
),
|
|
183
|
+
"MachSysS.convert_to_feems.convert_proto_shaftline_to_feems": (
|
|
184
|
+
"converttofeems.html#convert_proto_shaftline_to_feems",
|
|
185
|
+
"MachSysS/convert_to_feems.py",
|
|
186
|
+
),
|
|
187
|
+
"MachSysS.convert_to_feems.convert_proto_supercapacitor_system_to_feems": (
|
|
188
|
+
"converttofeems.html#convert_proto_supercapacitor_system_to_feems",
|
|
189
|
+
"MachSysS/convert_to_feems.py",
|
|
190
|
+
),
|
|
191
|
+
"MachSysS.convert_to_feems.convert_proto_supercapacitor_to_feems": (
|
|
192
|
+
"converttofeems.html#convert_proto_supercapacitor_to_feems",
|
|
193
|
+
"MachSysS/convert_to_feems.py",
|
|
194
|
+
),
|
|
195
|
+
"MachSysS.convert_to_feems.convert_proto_switchboard_to_feems": (
|
|
196
|
+
"converttofeems.html#convert_proto_switchboard_to_feems",
|
|
197
|
+
"MachSysS/convert_to_feems.py",
|
|
198
|
+
),
|
|
199
|
+
"MachSysS.convert_to_feems.get_component_type": (
|
|
200
|
+
"converttofeems.html#get_component_type",
|
|
201
|
+
"MachSysS/convert_to_feems.py",
|
|
202
|
+
),
|
|
203
|
+
},
|
|
204
|
+
"MachSysS.convert_to_protobuf": {
|
|
205
|
+
"MachSysS.convert_to_protobuf.convert_battery_component_to_protobuf": (
|
|
206
|
+
"converttoprotobuf.html#convert_battery_component_to_protobuf",
|
|
207
|
+
"MachSysS/convert_to_protobuf.py",
|
|
208
|
+
),
|
|
209
|
+
"MachSysS.convert_to_protobuf.convert_bsfc_curve_to_protobuf": (
|
|
210
|
+
"converttoprotobuf.html#convert_bsfc_curve_to_protobuf",
|
|
211
|
+
"MachSysS/convert_to_protobuf.py",
|
|
212
|
+
),
|
|
213
|
+
"MachSysS.convert_to_protobuf.convert_efficiency_curve_to_protobuf": (
|
|
214
|
+
"converttoprotobuf.html#convert_efficiency_curve_to_protobuf",
|
|
215
|
+
"MachSysS/convert_to_protobuf.py",
|
|
216
|
+
),
|
|
217
|
+
"MachSysS.convert_to_protobuf.convert_electric_component_to_protobuf": (
|
|
218
|
+
"converttoprotobuf.html#convert_electric_component_to_protobuf",
|
|
219
|
+
"MachSysS/convert_to_protobuf.py",
|
|
220
|
+
),
|
|
221
|
+
"MachSysS.convert_to_protobuf.convert_electric_machine_to_protobuf": (
|
|
222
|
+
"converttoprotobuf.html#convert_electric_machine_to_protobuf",
|
|
223
|
+
"MachSysS/convert_to_protobuf.py",
|
|
224
|
+
),
|
|
225
|
+
"MachSysS.convert_to_protobuf.convert_electric_system_to_protobuf": (
|
|
226
|
+
"converttoprotobuf.html#convert_electric_system_to_protobuf",
|
|
227
|
+
"MachSysS/convert_to_protobuf.py",
|
|
228
|
+
),
|
|
229
|
+
"MachSysS.convert_to_protobuf.convert_electric_system_to_protobuf_machinery_system": (
|
|
230
|
+
"converttoprotobuf.html#convert_electric_system_to_protobuf_machinery_system",
|
|
231
|
+
"MachSysS/convert_to_protobuf.py",
|
|
232
|
+
),
|
|
233
|
+
"MachSysS.convert_to_protobuf.convert_emission_curves_to_protobuf": (
|
|
234
|
+
"converttoprotobuf.html#convert_emission_curves_to_protobuf",
|
|
235
|
+
"MachSysS/convert_to_protobuf.py",
|
|
236
|
+
),
|
|
237
|
+
"MachSysS.convert_to_protobuf.convert_engine_component_to_protobuf": (
|
|
238
|
+
"converttoprotobuf.html#convert_engine_component_to_protobuf",
|
|
239
|
+
"MachSysS/convert_to_protobuf.py",
|
|
240
|
+
),
|
|
241
|
+
"MachSysS.convert_to_protobuf.convert_hybrid_propulsion_system_to_protobuf": (
|
|
242
|
+
"converttoprotobuf.html#convert_hybrid_propulsion_system_to_protobuf",
|
|
243
|
+
"MachSysS/convert_to_protobuf.py",
|
|
244
|
+
),
|
|
245
|
+
"MachSysS.convert_to_protobuf.convert_mechanical_propulsion_system_with_electric_system_to_protobuf": (
|
|
246
|
+
"converttoprotobuf.html#convert_mechanical_propulsion_system_with_electric_system_to_protobuf",
|
|
247
|
+
"MachSysS/convert_to_protobuf.py",
|
|
248
|
+
),
|
|
249
|
+
"MachSysS.convert_to_protobuf.convert_mechanical_system_to_protobuf": (
|
|
250
|
+
"converttoprotobuf.html#convert_mechanical_system_to_protobuf",
|
|
251
|
+
"MachSysS/convert_to_protobuf.py",
|
|
252
|
+
),
|
|
253
|
+
"MachSysS.convert_to_protobuf.convert_nox_calculation_method_to_protobuf": (
|
|
254
|
+
"converttoprotobuf.html#convert_nox_calculation_method_to_protobuf",
|
|
255
|
+
"MachSysS/convert_to_protobuf.py",
|
|
256
|
+
),
|
|
257
|
+
"MachSysS.convert_to_protobuf.convert_serial_electric_system_to_protobuf": (
|
|
258
|
+
"converttoprotobuf.html#convert_serial_electric_system_to_protobuf",
|
|
259
|
+
"MachSysS/convert_to_protobuf.py",
|
|
260
|
+
),
|
|
261
|
+
"MachSysS.convert_to_protobuf.convert_shaftline_to_protobuf": (
|
|
262
|
+
"converttoprotobuf.html#convert_shaftline_to_protobuf",
|
|
263
|
+
"MachSysS/convert_to_protobuf.py",
|
|
264
|
+
),
|
|
265
|
+
"MachSysS.convert_to_protobuf.convert_supercapacitor_component_to_protobuf": (
|
|
266
|
+
"converttoprotobuf.html#convert_supercapacitor_component_to_protobuf",
|
|
267
|
+
"MachSysS/convert_to_protobuf.py",
|
|
268
|
+
),
|
|
269
|
+
"MachSysS.convert_to_protobuf.convert_switchboard_to_protobuf": (
|
|
270
|
+
"converttoprotobuf.html#convert_switchboard_to_protobuf",
|
|
271
|
+
"MachSysS/convert_to_protobuf.py",
|
|
272
|
+
),
|
|
273
|
+
},
|
|
274
|
+
"MachSysS.feems_result_pb2": {},
|
|
275
|
+
"MachSysS.gymir_result_pb2": {},
|
|
276
|
+
"MachSysS.system_structure_pb2": {},
|
|
277
|
+
"MachSysS.utility": {
|
|
278
|
+
"MachSysS.utility.retrieve_gymir_result_from_file": (
|
|
279
|
+
"utility.html#retrieve_gymir_result_from_file",
|
|
280
|
+
"MachSysS/utility.py",
|
|
281
|
+
),
|
|
282
|
+
"MachSysS.utility.retrieve_machinery_system_from_file": (
|
|
283
|
+
"utility.html#retrieve_machinery_system_from_file",
|
|
284
|
+
"MachSysS/utility.py",
|
|
285
|
+
),
|
|
286
|
+
},
|
|
287
|
+
},
|
|
288
|
+
}
|