agx-openplx 0.15.22__cp39-cp39-win_amd64.whl → 0.16.0__cp39-cp39-win_amd64.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.
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.0.dist-info}/METADATA +2 -2
- agx_openplx-0.16.0.dist-info/RECORD +41 -0
- openplx/DriveTrain.py +526 -526
- openplx/Math.py +528 -528
- openplx/Physics.py +2098 -2098
- openplx/Physics1D.py +272 -272
- openplx/Physics3D.py +2308 -2308
- openplx/Robotics.py +882 -882
- openplx/Simulation.py +46 -46
- openplx/Terrain.py +182 -182
- openplx/Urdf.py +25 -24
- openplx/Vehicles.py +436 -436
- openplx/Visuals.py +188 -188
- openplx/_AgxOpenPlxPyApi.cp39-win_amd64.pyd +0 -0
- openplx/_CorePythonSwig.cp39-win_amd64.pyd +0 -0
- openplx/_DriveTrainSwig.cp39-win_amd64.pyd +0 -0
- openplx/_MathSwig.cp39-win_amd64.pyd +0 -0
- openplx/_Physics1DSwig.cp39-win_amd64.pyd +0 -0
- openplx/_Physics3DSwig.cp39-win_amd64.pyd +0 -0
- openplx/_PhysicsSwig.cp39-win_amd64.pyd +0 -0
- openplx/_RoboticsSwig.cp39-win_amd64.pyd +0 -0
- openplx/_SimulationSwig.cp39-win_amd64.pyd +0 -0
- openplx/_TerrainSwig.cp39-win_amd64.pyd +0 -0
- openplx/_UrdfSwig.cp39-win_amd64.pyd +0 -0
- openplx/_VehiclesSwig.cp39-win_amd64.pyd +0 -0
- openplx/_VisualsSwig.cp39-win_amd64.pyd +0 -0
- openplx/__init__.py +1 -1
- openplx/api.py +1 -1
- agx_openplx-0.15.22.dist-info/RECORD +0 -41
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.0.dist-info}/WHEEL +0 -0
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.0.dist-info}/entry_points.txt +0 -0
openplx/DriveTrain.py
CHANGED
@@ -6950,27 +6950,27 @@ class DriveTrain_ViscousGear_Vector(object):
|
|
6950
6950
|
# Register DriveTrain_ViscousGear_Vector in _DriveTrainSwig:
|
6951
6951
|
_DriveTrainSwig.DriveTrain_ViscousGear_Vector_swigregister(DriveTrain_ViscousGear_Vector)
|
6952
6952
|
|
6953
|
-
class
|
6953
|
+
class DriveTrain_Actuator(openplx.Core.Object):
|
6954
6954
|
r"""Proxy of C++ openplx::DriveTrain::Actuator class."""
|
6955
6955
|
|
6956
6956
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
6957
6957
|
__repr__ = _swig_repr
|
6958
6958
|
|
6959
6959
|
def __init__(self):
|
6960
|
-
r"""__init__(
|
6961
|
-
_DriveTrainSwig.
|
6960
|
+
r"""__init__(DriveTrain_Actuator self) -> DriveTrain_Actuator"""
|
6961
|
+
_DriveTrainSwig.DriveTrain_Actuator_swiginit(self, _DriveTrainSwig.new_DriveTrain_Actuator())
|
6962
6962
|
|
6963
6963
|
def connector_1d(self):
|
6964
|
-
r"""connector_1d(
|
6965
|
-
return _DriveTrainSwig.
|
6964
|
+
r"""connector_1d(DriveTrain_Actuator self) -> std::shared_ptr< openplx::Physics1D::Charges::MateConnector >"""
|
6965
|
+
return _DriveTrainSwig.DriveTrain_Actuator_connector_1d(self)
|
6966
6966
|
|
6967
6967
|
def mate_3d(self):
|
6968
|
-
r"""mate_3d(
|
6969
|
-
return _DriveTrainSwig.
|
6968
|
+
r"""mate_3d(DriveTrain_Actuator self) -> std::shared_ptr< openplx::Physics3D::Interactions::Mate >"""
|
6969
|
+
return _DriveTrainSwig.DriveTrain_Actuator_mate_3d(self)
|
6970
6970
|
|
6971
6971
|
def setDynamic(self, key, value):
|
6972
6972
|
r"""
|
6973
|
-
setDynamic(
|
6973
|
+
setDynamic(DriveTrain_Actuator self, std::string const & key, Any value)
|
6974
6974
|
|
6975
6975
|
Parameters
|
6976
6976
|
----------
|
@@ -6978,22 +6978,22 @@ class Actuator(openplx.Core.Object):
|
|
6978
6978
|
value: openplx::Core::Any &&
|
6979
6979
|
|
6980
6980
|
"""
|
6981
|
-
return _DriveTrainSwig.
|
6981
|
+
return _DriveTrainSwig.DriveTrain_Actuator_setDynamic(self, key, value)
|
6982
6982
|
|
6983
6983
|
def getDynamic(self, key):
|
6984
6984
|
r"""
|
6985
|
-
getDynamic(
|
6985
|
+
getDynamic(DriveTrain_Actuator self, std::string const & key) -> Any
|
6986
6986
|
|
6987
6987
|
Parameters
|
6988
6988
|
----------
|
6989
6989
|
key: std::string const &
|
6990
6990
|
|
6991
6991
|
"""
|
6992
|
-
return _DriveTrainSwig.
|
6992
|
+
return _DriveTrainSwig.DriveTrain_Actuator_getDynamic(self, key)
|
6993
6993
|
|
6994
6994
|
def callDynamic(self, key, args):
|
6995
6995
|
r"""
|
6996
|
-
callDynamic(
|
6996
|
+
callDynamic(DriveTrain_Actuator self, std::string const & key, AnyVector args) -> Any
|
6997
6997
|
|
6998
6998
|
Parameters
|
6999
6999
|
----------
|
@@ -7001,86 +7001,86 @@ class Actuator(openplx.Core.Object):
|
|
7001
7001
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7002
7002
|
|
7003
7003
|
"""
|
7004
|
-
return _DriveTrainSwig.
|
7004
|
+
return _DriveTrainSwig.DriveTrain_Actuator_callDynamic(self, key, args)
|
7005
7005
|
|
7006
7006
|
def extractObjectFieldsTo(self, output):
|
7007
7007
|
r"""
|
7008
|
-
extractObjectFieldsTo(
|
7008
|
+
extractObjectFieldsTo(DriveTrain_Actuator self, ObjectVector output)
|
7009
7009
|
|
7010
7010
|
Parameters
|
7011
7011
|
----------
|
7012
7012
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7013
7013
|
|
7014
7014
|
"""
|
7015
|
-
return _DriveTrainSwig.
|
7015
|
+
return _DriveTrainSwig.DriveTrain_Actuator_extractObjectFieldsTo(self, output)
|
7016
7016
|
|
7017
7017
|
def extractEntriesTo(self, output):
|
7018
7018
|
r"""
|
7019
|
-
extractEntriesTo(
|
7019
|
+
extractEntriesTo(DriveTrain_Actuator self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7020
7020
|
|
7021
7021
|
Parameters
|
7022
7022
|
----------
|
7023
7023
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7024
7024
|
|
7025
7025
|
"""
|
7026
|
-
return _DriveTrainSwig.
|
7026
|
+
return _DriveTrainSwig.DriveTrain_Actuator_extractEntriesTo(self, output)
|
7027
7027
|
|
7028
7028
|
def triggerOnInit(self, context):
|
7029
7029
|
r"""
|
7030
|
-
triggerOnInit(
|
7030
|
+
triggerOnInit(DriveTrain_Actuator self, openplx::RuntimeContext const & context)
|
7031
7031
|
|
7032
7032
|
Parameters
|
7033
7033
|
----------
|
7034
7034
|
context: openplx::RuntimeContext const &
|
7035
7035
|
|
7036
7036
|
"""
|
7037
|
-
return _DriveTrainSwig.
|
7038
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7037
|
+
return _DriveTrainSwig.DriveTrain_Actuator_triggerOnInit(self, context)
|
7038
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Actuator
|
7039
7039
|
|
7040
|
-
# Register
|
7041
|
-
_DriveTrainSwig.
|
7040
|
+
# Register DriveTrain_Actuator in _DriveTrainSwig:
|
7041
|
+
_DriveTrainSwig.DriveTrain_Actuator_swigregister(DriveTrain_Actuator)
|
7042
7042
|
|
7043
|
-
class
|
7043
|
+
class DriveTrain_ManualClutch(openplx.Physics1D.Physics1D_Interactions_Mate):
|
7044
7044
|
r"""Proxy of C++ openplx::DriveTrain::ManualClutch class."""
|
7045
7045
|
|
7046
7046
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7047
7047
|
__repr__ = _swig_repr
|
7048
7048
|
|
7049
7049
|
def __init__(self):
|
7050
|
-
r"""__init__(
|
7051
|
-
_DriveTrainSwig.
|
7050
|
+
r"""__init__(DriveTrain_ManualClutch self) -> DriveTrain_ManualClutch"""
|
7051
|
+
_DriveTrainSwig.DriveTrain_ManualClutch_swiginit(self, _DriveTrainSwig.new_DriveTrain_ManualClutch())
|
7052
7052
|
|
7053
7053
|
def initial_engagement_fraction(self):
|
7054
|
-
r"""initial_engagement_fraction(
|
7055
|
-
return _DriveTrainSwig.
|
7054
|
+
r"""initial_engagement_fraction(DriveTrain_ManualClutch self) -> double"""
|
7055
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_initial_engagement_fraction(self)
|
7056
7056
|
|
7057
7057
|
def torque_capacity(self):
|
7058
|
-
r"""torque_capacity(
|
7059
|
-
return _DriveTrainSwig.
|
7058
|
+
r"""torque_capacity(DriveTrain_ManualClutch self) -> double"""
|
7059
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_torque_capacity(self)
|
7060
7060
|
|
7061
7061
|
def min_relative_slip_ratio(self):
|
7062
|
-
r"""min_relative_slip_ratio(
|
7063
|
-
return _DriveTrainSwig.
|
7062
|
+
r"""min_relative_slip_ratio(DriveTrain_ManualClutch self) -> double"""
|
7063
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_min_relative_slip_ratio(self)
|
7064
7064
|
|
7065
7065
|
def slip_velocity_output(self):
|
7066
|
-
r"""slip_velocity_output(
|
7067
|
-
return _DriveTrainSwig.
|
7066
|
+
r"""slip_velocity_output(DriveTrain_ManualClutch self) -> std::shared_ptr< openplx::Physics::Signals::RelativeVelocity1DOutput >"""
|
7067
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_slip_velocity_output(self)
|
7068
7068
|
|
7069
7069
|
def torque_output(self):
|
7070
|
-
r"""torque_output(
|
7071
|
-
return _DriveTrainSwig.
|
7070
|
+
r"""torque_output(DriveTrain_ManualClutch self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DOutput >"""
|
7071
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_torque_output(self)
|
7072
7072
|
|
7073
7073
|
def engagement_fraction_input(self):
|
7074
|
-
r"""engagement_fraction_input(
|
7075
|
-
return _DriveTrainSwig.
|
7074
|
+
r"""engagement_fraction_input(DriveTrain_ManualClutch self) -> std::shared_ptr< openplx::Physics::Signals::FractionInput >"""
|
7075
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_engagement_fraction_input(self)
|
7076
7076
|
|
7077
7077
|
def engagement_fraction_output(self):
|
7078
|
-
r"""engagement_fraction_output(
|
7079
|
-
return _DriveTrainSwig.
|
7078
|
+
r"""engagement_fraction_output(DriveTrain_ManualClutch self) -> std::shared_ptr< openplx::Physics::Signals::FractionOutput >"""
|
7079
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_engagement_fraction_output(self)
|
7080
7080
|
|
7081
7081
|
def setDynamic(self, key, value):
|
7082
7082
|
r"""
|
7083
|
-
setDynamic(
|
7083
|
+
setDynamic(DriveTrain_ManualClutch self, std::string const & key, Any value)
|
7084
7084
|
|
7085
7085
|
Parameters
|
7086
7086
|
----------
|
@@ -7088,22 +7088,22 @@ class ManualClutch(openplx.Physics1D.Interactions_Mate):
|
|
7088
7088
|
value: openplx::Core::Any &&
|
7089
7089
|
|
7090
7090
|
"""
|
7091
|
-
return _DriveTrainSwig.
|
7091
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_setDynamic(self, key, value)
|
7092
7092
|
|
7093
7093
|
def getDynamic(self, key):
|
7094
7094
|
r"""
|
7095
|
-
getDynamic(
|
7095
|
+
getDynamic(DriveTrain_ManualClutch self, std::string const & key) -> Any
|
7096
7096
|
|
7097
7097
|
Parameters
|
7098
7098
|
----------
|
7099
7099
|
key: std::string const &
|
7100
7100
|
|
7101
7101
|
"""
|
7102
|
-
return _DriveTrainSwig.
|
7102
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_getDynamic(self, key)
|
7103
7103
|
|
7104
7104
|
def callDynamic(self, key, args):
|
7105
7105
|
r"""
|
7106
|
-
callDynamic(
|
7106
|
+
callDynamic(DriveTrain_ManualClutch self, std::string const & key, AnyVector args) -> Any
|
7107
7107
|
|
7108
7108
|
Parameters
|
7109
7109
|
----------
|
@@ -7111,74 +7111,74 @@ class ManualClutch(openplx.Physics1D.Interactions_Mate):
|
|
7111
7111
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7112
7112
|
|
7113
7113
|
"""
|
7114
|
-
return _DriveTrainSwig.
|
7114
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_callDynamic(self, key, args)
|
7115
7115
|
|
7116
7116
|
def extractObjectFieldsTo(self, output):
|
7117
7117
|
r"""
|
7118
|
-
extractObjectFieldsTo(
|
7118
|
+
extractObjectFieldsTo(DriveTrain_ManualClutch self, ObjectVector output)
|
7119
7119
|
|
7120
7120
|
Parameters
|
7121
7121
|
----------
|
7122
7122
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7123
7123
|
|
7124
7124
|
"""
|
7125
|
-
return _DriveTrainSwig.
|
7125
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_extractObjectFieldsTo(self, output)
|
7126
7126
|
|
7127
7127
|
def extractEntriesTo(self, output):
|
7128
7128
|
r"""
|
7129
|
-
extractEntriesTo(
|
7129
|
+
extractEntriesTo(DriveTrain_ManualClutch self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7130
7130
|
|
7131
7131
|
Parameters
|
7132
7132
|
----------
|
7133
7133
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7134
7134
|
|
7135
7135
|
"""
|
7136
|
-
return _DriveTrainSwig.
|
7136
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_extractEntriesTo(self, output)
|
7137
7137
|
|
7138
7138
|
def triggerOnInit(self, context):
|
7139
7139
|
r"""
|
7140
|
-
triggerOnInit(
|
7140
|
+
triggerOnInit(DriveTrain_ManualClutch self, openplx::RuntimeContext const & context)
|
7141
7141
|
|
7142
7142
|
Parameters
|
7143
7143
|
----------
|
7144
7144
|
context: openplx::RuntimeContext const &
|
7145
7145
|
|
7146
7146
|
"""
|
7147
|
-
return _DriveTrainSwig.
|
7148
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7147
|
+
return _DriveTrainSwig.DriveTrain_ManualClutch_triggerOnInit(self, context)
|
7148
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_ManualClutch
|
7149
7149
|
|
7150
|
-
# Register
|
7151
|
-
_DriveTrainSwig.
|
7150
|
+
# Register DriveTrain_ManualClutch in _DriveTrainSwig:
|
7151
|
+
_DriveTrainSwig.DriveTrain_ManualClutch_swigregister(DriveTrain_ManualClutch)
|
7152
7152
|
|
7153
|
-
class
|
7153
|
+
class DriveTrain_AutomaticClutch(DriveTrain_ManualClutch):
|
7154
7154
|
r"""Proxy of C++ openplx::DriveTrain::AutomaticClutch class."""
|
7155
7155
|
|
7156
7156
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7157
7157
|
__repr__ = _swig_repr
|
7158
7158
|
|
7159
7159
|
def __init__(self):
|
7160
|
-
r"""__init__(
|
7161
|
-
_DriveTrainSwig.
|
7160
|
+
r"""__init__(DriveTrain_AutomaticClutch self) -> DriveTrain_AutomaticClutch"""
|
7161
|
+
_DriveTrainSwig.DriveTrain_AutomaticClutch_swiginit(self, _DriveTrainSwig.new_DriveTrain_AutomaticClutch())
|
7162
7162
|
|
7163
7163
|
def engagement_time(self):
|
7164
|
-
r"""engagement_time(
|
7165
|
-
return _DriveTrainSwig.
|
7164
|
+
r"""engagement_time(DriveTrain_AutomaticClutch self) -> double"""
|
7165
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_engagement_time(self)
|
7166
7166
|
|
7167
7167
|
def initially_engaged(self):
|
7168
|
-
r"""initially_engaged(
|
7169
|
-
return _DriveTrainSwig.
|
7168
|
+
r"""initially_engaged(DriveTrain_AutomaticClutch self) -> bool"""
|
7169
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_initially_engaged(self)
|
7170
7170
|
|
7171
7171
|
def engage_input(self):
|
7172
|
-
r"""engage_input(
|
7173
|
-
return _DriveTrainSwig.
|
7172
|
+
r"""engage_input(DriveTrain_AutomaticClutch self) -> std::shared_ptr< openplx::Physics::Signals::EngageInput >"""
|
7173
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_engage_input(self)
|
7174
7174
|
|
7175
7175
|
def engaged_output(self):
|
7176
|
-
r"""engaged_output(
|
7177
|
-
return _DriveTrainSwig.
|
7176
|
+
r"""engaged_output(DriveTrain_AutomaticClutch self) -> std::shared_ptr< openplx::Physics::Signals::EngagedOutput >"""
|
7177
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_engaged_output(self)
|
7178
7178
|
|
7179
7179
|
def setDynamic(self, key, value):
|
7180
7180
|
r"""
|
7181
|
-
setDynamic(
|
7181
|
+
setDynamic(DriveTrain_AutomaticClutch self, std::string const & key, Any value)
|
7182
7182
|
|
7183
7183
|
Parameters
|
7184
7184
|
----------
|
@@ -7186,22 +7186,22 @@ class AutomaticClutch(ManualClutch):
|
|
7186
7186
|
value: openplx::Core::Any &&
|
7187
7187
|
|
7188
7188
|
"""
|
7189
|
-
return _DriveTrainSwig.
|
7189
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_setDynamic(self, key, value)
|
7190
7190
|
|
7191
7191
|
def getDynamic(self, key):
|
7192
7192
|
r"""
|
7193
|
-
getDynamic(
|
7193
|
+
getDynamic(DriveTrain_AutomaticClutch self, std::string const & key) -> Any
|
7194
7194
|
|
7195
7195
|
Parameters
|
7196
7196
|
----------
|
7197
7197
|
key: std::string const &
|
7198
7198
|
|
7199
7199
|
"""
|
7200
|
-
return _DriveTrainSwig.
|
7200
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_getDynamic(self, key)
|
7201
7201
|
|
7202
7202
|
def callDynamic(self, key, args):
|
7203
7203
|
r"""
|
7204
|
-
callDynamic(
|
7204
|
+
callDynamic(DriveTrain_AutomaticClutch self, std::string const & key, AnyVector args) -> Any
|
7205
7205
|
|
7206
7206
|
Parameters
|
7207
7207
|
----------
|
@@ -7209,94 +7209,94 @@ class AutomaticClutch(ManualClutch):
|
|
7209
7209
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7210
7210
|
|
7211
7211
|
"""
|
7212
|
-
return _DriveTrainSwig.
|
7212
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_callDynamic(self, key, args)
|
7213
7213
|
|
7214
7214
|
def extractObjectFieldsTo(self, output):
|
7215
7215
|
r"""
|
7216
|
-
extractObjectFieldsTo(
|
7216
|
+
extractObjectFieldsTo(DriveTrain_AutomaticClutch self, ObjectVector output)
|
7217
7217
|
|
7218
7218
|
Parameters
|
7219
7219
|
----------
|
7220
7220
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7221
7221
|
|
7222
7222
|
"""
|
7223
|
-
return _DriveTrainSwig.
|
7223
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_extractObjectFieldsTo(self, output)
|
7224
7224
|
|
7225
7225
|
def extractEntriesTo(self, output):
|
7226
7226
|
r"""
|
7227
|
-
extractEntriesTo(
|
7227
|
+
extractEntriesTo(DriveTrain_AutomaticClutch self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7228
7228
|
|
7229
7229
|
Parameters
|
7230
7230
|
----------
|
7231
7231
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7232
7232
|
|
7233
7233
|
"""
|
7234
|
-
return _DriveTrainSwig.
|
7234
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_extractEntriesTo(self, output)
|
7235
7235
|
|
7236
7236
|
def triggerOnInit(self, context):
|
7237
7237
|
r"""
|
7238
|
-
triggerOnInit(
|
7238
|
+
triggerOnInit(DriveTrain_AutomaticClutch self, openplx::RuntimeContext const & context)
|
7239
7239
|
|
7240
7240
|
Parameters
|
7241
7241
|
----------
|
7242
7242
|
context: openplx::RuntimeContext const &
|
7243
7243
|
|
7244
7244
|
"""
|
7245
|
-
return _DriveTrainSwig.
|
7246
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7245
|
+
return _DriveTrainSwig.DriveTrain_AutomaticClutch_triggerOnInit(self, context)
|
7246
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_AutomaticClutch
|
7247
7247
|
|
7248
|
-
# Register
|
7249
|
-
_DriveTrainSwig.
|
7248
|
+
# Register DriveTrain_AutomaticClutch in _DriveTrainSwig:
|
7249
|
+
_DriveTrainSwig.DriveTrain_AutomaticClutch_swigregister(DriveTrain_AutomaticClutch)
|
7250
7250
|
|
7251
|
-
class
|
7251
|
+
class DriveTrain_CombustionEngine(openplx.Physics.Physics_Interactions_Interaction1DOF):
|
7252
7252
|
r"""Proxy of C++ openplx::DriveTrain::CombustionEngine class."""
|
7253
7253
|
|
7254
7254
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7255
7255
|
__repr__ = _swig_repr
|
7256
7256
|
|
7257
7257
|
def __init__(self):
|
7258
|
-
r"""__init__(
|
7259
|
-
_DriveTrainSwig.
|
7258
|
+
r"""__init__(DriveTrain_CombustionEngine self) -> DriveTrain_CombustionEngine"""
|
7259
|
+
_DriveTrainSwig.DriveTrain_CombustionEngine_swiginit(self, _DriveTrainSwig.new_DriveTrain_CombustionEngine())
|
7260
7260
|
|
7261
7261
|
def displacement_volume(self):
|
7262
|
-
r"""displacement_volume(
|
7263
|
-
return _DriveTrainSwig.
|
7262
|
+
r"""displacement_volume(DriveTrain_CombustionEngine self) -> double"""
|
7263
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_displacement_volume(self)
|
7264
7264
|
|
7265
7265
|
def max_torque(self):
|
7266
|
-
r"""max_torque(
|
7267
|
-
return _DriveTrainSwig.
|
7266
|
+
r"""max_torque(DriveTrain_CombustionEngine self) -> double"""
|
7267
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_max_torque(self)
|
7268
7268
|
|
7269
7269
|
def max_torque_RPM(self):
|
7270
|
-
r"""max_torque_RPM(
|
7271
|
-
return _DriveTrainSwig.
|
7270
|
+
r"""max_torque_RPM(DriveTrain_CombustionEngine self) -> double"""
|
7271
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_max_torque_RPM(self)
|
7272
7272
|
|
7273
7273
|
def max_power_RPM(self):
|
7274
|
-
r"""max_power_RPM(
|
7275
|
-
return _DriveTrainSwig.
|
7274
|
+
r"""max_power_RPM(DriveTrain_CombustionEngine self) -> double"""
|
7275
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_max_power_RPM(self)
|
7276
7276
|
|
7277
7277
|
def idle_RPM(self):
|
7278
|
-
r"""idle_RPM(
|
7279
|
-
return _DriveTrainSwig.
|
7278
|
+
r"""idle_RPM(DriveTrain_CombustionEngine self) -> double"""
|
7279
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_idle_RPM(self)
|
7280
7280
|
|
7281
7281
|
def crank_shaft_inertia(self):
|
7282
|
-
r"""crank_shaft_inertia(
|
7283
|
-
return _DriveTrainSwig.
|
7282
|
+
r"""crank_shaft_inertia(DriveTrain_CombustionEngine self) -> double"""
|
7283
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_crank_shaft_inertia(self)
|
7284
7284
|
|
7285
7285
|
def initial_throttle(self):
|
7286
|
-
r"""initial_throttle(
|
7287
|
-
return _DriveTrainSwig.
|
7286
|
+
r"""initial_throttle(DriveTrain_CombustionEngine self) -> double"""
|
7287
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_initial_throttle(self)
|
7288
7288
|
|
7289
7289
|
def torque_output(self):
|
7290
|
-
r"""torque_output(
|
7291
|
-
return _DriveTrainSwig.
|
7290
|
+
r"""torque_output(DriveTrain_CombustionEngine self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DOutput >"""
|
7291
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_torque_output(self)
|
7292
7292
|
|
7293
7293
|
def throttle_input(self):
|
7294
|
-
r"""throttle_input(
|
7295
|
-
return _DriveTrainSwig.
|
7294
|
+
r"""throttle_input(DriveTrain_CombustionEngine self) -> std::shared_ptr< openplx::Physics::Signals::FractionInput >"""
|
7295
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_throttle_input(self)
|
7296
7296
|
|
7297
7297
|
def setDynamic(self, key, value):
|
7298
7298
|
r"""
|
7299
|
-
setDynamic(
|
7299
|
+
setDynamic(DriveTrain_CombustionEngine self, std::string const & key, Any value)
|
7300
7300
|
|
7301
7301
|
Parameters
|
7302
7302
|
----------
|
@@ -7304,22 +7304,22 @@ class CombustionEngine(openplx.Physics.Interactions_Interaction1DOF):
|
|
7304
7304
|
value: openplx::Core::Any &&
|
7305
7305
|
|
7306
7306
|
"""
|
7307
|
-
return _DriveTrainSwig.
|
7307
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_setDynamic(self, key, value)
|
7308
7308
|
|
7309
7309
|
def getDynamic(self, key):
|
7310
7310
|
r"""
|
7311
|
-
getDynamic(
|
7311
|
+
getDynamic(DriveTrain_CombustionEngine self, std::string const & key) -> Any
|
7312
7312
|
|
7313
7313
|
Parameters
|
7314
7314
|
----------
|
7315
7315
|
key: std::string const &
|
7316
7316
|
|
7317
7317
|
"""
|
7318
|
-
return _DriveTrainSwig.
|
7318
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_getDynamic(self, key)
|
7319
7319
|
|
7320
7320
|
def callDynamic(self, key, args):
|
7321
7321
|
r"""
|
7322
|
-
callDynamic(
|
7322
|
+
callDynamic(DriveTrain_CombustionEngine self, std::string const & key, AnyVector args) -> Any
|
7323
7323
|
|
7324
7324
|
Parameters
|
7325
7325
|
----------
|
@@ -7327,74 +7327,74 @@ class CombustionEngine(openplx.Physics.Interactions_Interaction1DOF):
|
|
7327
7327
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7328
7328
|
|
7329
7329
|
"""
|
7330
|
-
return _DriveTrainSwig.
|
7330
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_callDynamic(self, key, args)
|
7331
7331
|
|
7332
7332
|
def extractObjectFieldsTo(self, output):
|
7333
7333
|
r"""
|
7334
|
-
extractObjectFieldsTo(
|
7334
|
+
extractObjectFieldsTo(DriveTrain_CombustionEngine self, ObjectVector output)
|
7335
7335
|
|
7336
7336
|
Parameters
|
7337
7337
|
----------
|
7338
7338
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7339
7339
|
|
7340
7340
|
"""
|
7341
|
-
return _DriveTrainSwig.
|
7341
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_extractObjectFieldsTo(self, output)
|
7342
7342
|
|
7343
7343
|
def extractEntriesTo(self, output):
|
7344
7344
|
r"""
|
7345
|
-
extractEntriesTo(
|
7345
|
+
extractEntriesTo(DriveTrain_CombustionEngine self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7346
7346
|
|
7347
7347
|
Parameters
|
7348
7348
|
----------
|
7349
7349
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7350
7350
|
|
7351
7351
|
"""
|
7352
|
-
return _DriveTrainSwig.
|
7352
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_extractEntriesTo(self, output)
|
7353
7353
|
|
7354
7354
|
def triggerOnInit(self, context):
|
7355
7355
|
r"""
|
7356
|
-
triggerOnInit(
|
7356
|
+
triggerOnInit(DriveTrain_CombustionEngine self, openplx::RuntimeContext const & context)
|
7357
7357
|
|
7358
7358
|
Parameters
|
7359
7359
|
----------
|
7360
7360
|
context: openplx::RuntimeContext const &
|
7361
7361
|
|
7362
7362
|
"""
|
7363
|
-
return _DriveTrainSwig.
|
7364
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7363
|
+
return _DriveTrainSwig.DriveTrain_CombustionEngine_triggerOnInit(self, context)
|
7364
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_CombustionEngine
|
7365
7365
|
|
7366
|
-
# Register
|
7367
|
-
_DriveTrainSwig.
|
7366
|
+
# Register DriveTrain_CombustionEngine in _DriveTrainSwig:
|
7367
|
+
_DriveTrainSwig.DriveTrain_CombustionEngine_swigregister(DriveTrain_CombustionEngine)
|
7368
7368
|
|
7369
|
-
class
|
7369
|
+
class DriveTrain_Differential(openplx.Physics1D.Physics1D_Interactions_Mate):
|
7370
7370
|
r"""Proxy of C++ openplx::DriveTrain::Differential class."""
|
7371
7371
|
|
7372
7372
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7373
7373
|
__repr__ = _swig_repr
|
7374
7374
|
|
7375
7375
|
def __init__(self):
|
7376
|
-
r"""__init__(
|
7377
|
-
_DriveTrainSwig.
|
7376
|
+
r"""__init__(DriveTrain_Differential self) -> DriveTrain_Differential"""
|
7377
|
+
_DriveTrainSwig.DriveTrain_Differential_swiginit(self, _DriveTrainSwig.new_DriveTrain_Differential())
|
7378
7378
|
|
7379
7379
|
def drive_shaft(self):
|
7380
|
-
r"""drive_shaft(
|
7381
|
-
return _DriveTrainSwig.
|
7380
|
+
r"""drive_shaft(DriveTrain_Differential self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
7381
|
+
return _DriveTrainSwig.DriveTrain_Differential_drive_shaft(self)
|
7382
7382
|
|
7383
7383
|
def left_axle_shaft(self):
|
7384
|
-
r"""left_axle_shaft(
|
7385
|
-
return _DriveTrainSwig.
|
7384
|
+
r"""left_axle_shaft(DriveTrain_Differential self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
7385
|
+
return _DriveTrainSwig.DriveTrain_Differential_left_axle_shaft(self)
|
7386
7386
|
|
7387
7387
|
def right_axle_shaft(self):
|
7388
|
-
r"""right_axle_shaft(
|
7389
|
-
return _DriveTrainSwig.
|
7388
|
+
r"""right_axle_shaft(DriveTrain_Differential self) -> std::shared_ptr< openplx::DriveTrain::Shaft >"""
|
7389
|
+
return _DriveTrainSwig.DriveTrain_Differential_right_axle_shaft(self)
|
7390
7390
|
|
7391
7391
|
def gear_ratio(self):
|
7392
|
-
r"""gear_ratio(
|
7393
|
-
return _DriveTrainSwig.
|
7392
|
+
r"""gear_ratio(DriveTrain_Differential self) -> double"""
|
7393
|
+
return _DriveTrainSwig.DriveTrain_Differential_gear_ratio(self)
|
7394
7394
|
|
7395
7395
|
def setDynamic(self, key, value):
|
7396
7396
|
r"""
|
7397
|
-
setDynamic(
|
7397
|
+
setDynamic(DriveTrain_Differential self, std::string const & key, Any value)
|
7398
7398
|
|
7399
7399
|
Parameters
|
7400
7400
|
----------
|
@@ -7402,22 +7402,22 @@ class Differential(openplx.Physics1D.Interactions_Mate):
|
|
7402
7402
|
value: openplx::Core::Any &&
|
7403
7403
|
|
7404
7404
|
"""
|
7405
|
-
return _DriveTrainSwig.
|
7405
|
+
return _DriveTrainSwig.DriveTrain_Differential_setDynamic(self, key, value)
|
7406
7406
|
|
7407
7407
|
def getDynamic(self, key):
|
7408
7408
|
r"""
|
7409
|
-
getDynamic(
|
7409
|
+
getDynamic(DriveTrain_Differential self, std::string const & key) -> Any
|
7410
7410
|
|
7411
7411
|
Parameters
|
7412
7412
|
----------
|
7413
7413
|
key: std::string const &
|
7414
7414
|
|
7415
7415
|
"""
|
7416
|
-
return _DriveTrainSwig.
|
7416
|
+
return _DriveTrainSwig.DriveTrain_Differential_getDynamic(self, key)
|
7417
7417
|
|
7418
7418
|
def callDynamic(self, key, args):
|
7419
7419
|
r"""
|
7420
|
-
callDynamic(
|
7420
|
+
callDynamic(DriveTrain_Differential self, std::string const & key, AnyVector args) -> Any
|
7421
7421
|
|
7422
7422
|
Parameters
|
7423
7423
|
----------
|
@@ -7425,138 +7425,138 @@ class Differential(openplx.Physics1D.Interactions_Mate):
|
|
7425
7425
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7426
7426
|
|
7427
7427
|
"""
|
7428
|
-
return _DriveTrainSwig.
|
7428
|
+
return _DriveTrainSwig.DriveTrain_Differential_callDynamic(self, key, args)
|
7429
7429
|
|
7430
7430
|
def extractObjectFieldsTo(self, output):
|
7431
7431
|
r"""
|
7432
|
-
extractObjectFieldsTo(
|
7432
|
+
extractObjectFieldsTo(DriveTrain_Differential self, ObjectVector output)
|
7433
7433
|
|
7434
7434
|
Parameters
|
7435
7435
|
----------
|
7436
7436
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7437
7437
|
|
7438
7438
|
"""
|
7439
|
-
return _DriveTrainSwig.
|
7439
|
+
return _DriveTrainSwig.DriveTrain_Differential_extractObjectFieldsTo(self, output)
|
7440
7440
|
|
7441
7441
|
def extractEntriesTo(self, output):
|
7442
7442
|
r"""
|
7443
|
-
extractEntriesTo(
|
7443
|
+
extractEntriesTo(DriveTrain_Differential self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7444
7444
|
|
7445
7445
|
Parameters
|
7446
7446
|
----------
|
7447
7447
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7448
7448
|
|
7449
7449
|
"""
|
7450
|
-
return _DriveTrainSwig.
|
7450
|
+
return _DriveTrainSwig.DriveTrain_Differential_extractEntriesTo(self, output)
|
7451
7451
|
|
7452
7452
|
def triggerOnInit(self, context):
|
7453
7453
|
r"""
|
7454
|
-
triggerOnInit(
|
7454
|
+
triggerOnInit(DriveTrain_Differential self, openplx::RuntimeContext const & context)
|
7455
7455
|
|
7456
7456
|
Parameters
|
7457
7457
|
----------
|
7458
7458
|
context: openplx::RuntimeContext const &
|
7459
7459
|
|
7460
7460
|
"""
|
7461
|
-
return _DriveTrainSwig.
|
7462
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7461
|
+
return _DriveTrainSwig.DriveTrain_Differential_triggerOnInit(self, context)
|
7462
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Differential
|
7463
7463
|
|
7464
|
-
# Register
|
7465
|
-
_DriveTrainSwig.
|
7464
|
+
# Register DriveTrain_Differential in _DriveTrainSwig:
|
7465
|
+
_DriveTrainSwig.DriveTrain_Differential_swigregister(DriveTrain_Differential)
|
7466
7466
|
|
7467
|
-
class
|
7467
|
+
class DriveTrain_EmpiricalTorqueConverter(openplx.Physics1D.Physics1D_Interactions_Mate):
|
7468
7468
|
r"""Proxy of C++ openplx::DriveTrain::EmpiricalTorqueConverter class."""
|
7469
7469
|
|
7470
7470
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7471
7471
|
__repr__ = _swig_repr
|
7472
7472
|
|
7473
7473
|
def __init__(self):
|
7474
|
-
r"""__init__(
|
7475
|
-
_DriveTrainSwig.
|
7474
|
+
r"""__init__(DriveTrain_EmpiricalTorqueConverter self) -> DriveTrain_EmpiricalTorqueConverter"""
|
7475
|
+
_DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_swiginit(self, _DriveTrainSwig.new_DriveTrain_EmpiricalTorqueConverter())
|
7476
7476
|
|
7477
7477
|
def oil_density(self):
|
7478
|
-
r"""oil_density(
|
7479
|
-
return _DriveTrainSwig.
|
7478
|
+
r"""oil_density(DriveTrain_EmpiricalTorqueConverter self) -> double"""
|
7479
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_oil_density(self)
|
7480
7480
|
|
7481
7481
|
def diameter(self):
|
7482
|
-
r"""diameter(
|
7483
|
-
return _DriveTrainSwig.
|
7482
|
+
r"""diameter(DriveTrain_EmpiricalTorqueConverter self) -> double"""
|
7483
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_diameter(self)
|
7484
7484
|
|
7485
7485
|
def lock_up_time(self):
|
7486
|
-
r"""lock_up_time(
|
7487
|
-
return _DriveTrainSwig.
|
7486
|
+
r"""lock_up_time(DriveTrain_EmpiricalTorqueConverter self) -> double"""
|
7487
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_lock_up_time(self)
|
7488
7488
|
|
7489
7489
|
def lock_up_input(self):
|
7490
|
-
r"""lock_up_input(
|
7491
|
-
return _DriveTrainSwig.
|
7490
|
+
r"""lock_up_input(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::Signals::TorqueConverterLockUpInput >"""
|
7491
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_lock_up_input(self)
|
7492
7492
|
|
7493
7493
|
def locked_up_output(self):
|
7494
|
-
r"""locked_up_output(
|
7495
|
-
return _DriveTrainSwig.
|
7494
|
+
r"""locked_up_output(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::Signals::TorqueConverterLockedUpOutput >"""
|
7495
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_locked_up_output(self)
|
7496
7496
|
|
7497
7497
|
def velocity_ratio_torque_multiplier_list(self):
|
7498
|
-
r"""velocity_ratio_torque_multiplier_list(
|
7499
|
-
return _DriveTrainSwig.
|
7498
|
+
r"""velocity_ratio_torque_multiplier_list(DriveTrain_EmpiricalTorqueConverter self) -> DriveTrain_VelocityRatioTorqueMultiplicationPair_Vector"""
|
7499
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_velocity_ratio_torque_multiplier_list(self)
|
7500
7500
|
|
7501
7501
|
def velocity_ratio_geometry_factor_list(self):
|
7502
|
-
r"""velocity_ratio_geometry_factor_list(
|
7503
|
-
return _DriveTrainSwig.
|
7502
|
+
r"""velocity_ratio_geometry_factor_list(DriveTrain_EmpiricalTorqueConverter self) -> DriveTrain_VelocityRatioGeometryFactorPair_Vector"""
|
7503
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_velocity_ratio_geometry_factor_list(self)
|
7504
7504
|
|
7505
7505
|
def factor_pair1(self):
|
7506
|
-
r"""factor_pair1(
|
7507
|
-
return _DriveTrainSwig.
|
7506
|
+
r"""factor_pair1(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioGeometryFactorPair >"""
|
7507
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_factor_pair1(self)
|
7508
7508
|
|
7509
7509
|
def factor_pair2(self):
|
7510
|
-
r"""factor_pair2(
|
7511
|
-
return _DriveTrainSwig.
|
7510
|
+
r"""factor_pair2(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioGeometryFactorPair >"""
|
7511
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_factor_pair2(self)
|
7512
7512
|
|
7513
7513
|
def factor_pair3(self):
|
7514
|
-
r"""factor_pair3(
|
7515
|
-
return _DriveTrainSwig.
|
7514
|
+
r"""factor_pair3(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioGeometryFactorPair >"""
|
7515
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_factor_pair3(self)
|
7516
7516
|
|
7517
7517
|
def factor_pair4(self):
|
7518
|
-
r"""factor_pair4(
|
7519
|
-
return _DriveTrainSwig.
|
7518
|
+
r"""factor_pair4(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioGeometryFactorPair >"""
|
7519
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_factor_pair4(self)
|
7520
7520
|
|
7521
7521
|
def factor_pair5(self):
|
7522
|
-
r"""factor_pair5(
|
7523
|
-
return _DriveTrainSwig.
|
7522
|
+
r"""factor_pair5(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioGeometryFactorPair >"""
|
7523
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_factor_pair5(self)
|
7524
7524
|
|
7525
7525
|
def mult_pair1(self):
|
7526
|
-
r"""mult_pair1(
|
7527
|
-
return _DriveTrainSwig.
|
7526
|
+
r"""mult_pair1(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7527
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair1(self)
|
7528
7528
|
|
7529
7529
|
def mult_pair2(self):
|
7530
|
-
r"""mult_pair2(
|
7531
|
-
return _DriveTrainSwig.
|
7530
|
+
r"""mult_pair2(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7531
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair2(self)
|
7532
7532
|
|
7533
7533
|
def mult_pair3(self):
|
7534
|
-
r"""mult_pair3(
|
7535
|
-
return _DriveTrainSwig.
|
7534
|
+
r"""mult_pair3(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7535
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair3(self)
|
7536
7536
|
|
7537
7537
|
def mult_pair4(self):
|
7538
|
-
r"""mult_pair4(
|
7539
|
-
return _DriveTrainSwig.
|
7538
|
+
r"""mult_pair4(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7539
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair4(self)
|
7540
7540
|
|
7541
7541
|
def mult_pair5(self):
|
7542
|
-
r"""mult_pair5(
|
7543
|
-
return _DriveTrainSwig.
|
7542
|
+
r"""mult_pair5(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7543
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair5(self)
|
7544
7544
|
|
7545
7545
|
def mult_pair6(self):
|
7546
|
-
r"""mult_pair6(
|
7547
|
-
return _DriveTrainSwig.
|
7546
|
+
r"""mult_pair6(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7547
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair6(self)
|
7548
7548
|
|
7549
7549
|
def mult_pair7(self):
|
7550
|
-
r"""mult_pair7(
|
7551
|
-
return _DriveTrainSwig.
|
7550
|
+
r"""mult_pair7(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair >"""
|
7551
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_mult_pair7(self)
|
7552
7552
|
|
7553
7553
|
def slip_velocity_output(self):
|
7554
|
-
r"""slip_velocity_output(
|
7555
|
-
return _DriveTrainSwig.
|
7554
|
+
r"""slip_velocity_output(DriveTrain_EmpiricalTorqueConverter self) -> std::shared_ptr< openplx::Physics::Signals::RelativeVelocity1DOutput >"""
|
7555
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_slip_velocity_output(self)
|
7556
7556
|
|
7557
7557
|
def setDynamic(self, key, value):
|
7558
7558
|
r"""
|
7559
|
-
setDynamic(
|
7559
|
+
setDynamic(DriveTrain_EmpiricalTorqueConverter self, std::string const & key, Any value)
|
7560
7560
|
|
7561
7561
|
Parameters
|
7562
7562
|
----------
|
@@ -7564,22 +7564,22 @@ class EmpiricalTorqueConverter(openplx.Physics1D.Interactions_Mate):
|
|
7564
7564
|
value: openplx::Core::Any &&
|
7565
7565
|
|
7566
7566
|
"""
|
7567
|
-
return _DriveTrainSwig.
|
7567
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_setDynamic(self, key, value)
|
7568
7568
|
|
7569
7569
|
def getDynamic(self, key):
|
7570
7570
|
r"""
|
7571
|
-
getDynamic(
|
7571
|
+
getDynamic(DriveTrain_EmpiricalTorqueConverter self, std::string const & key) -> Any
|
7572
7572
|
|
7573
7573
|
Parameters
|
7574
7574
|
----------
|
7575
7575
|
key: std::string const &
|
7576
7576
|
|
7577
7577
|
"""
|
7578
|
-
return _DriveTrainSwig.
|
7578
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_getDynamic(self, key)
|
7579
7579
|
|
7580
7580
|
def callDynamic(self, key, args):
|
7581
7581
|
r"""
|
7582
|
-
callDynamic(
|
7582
|
+
callDynamic(DriveTrain_EmpiricalTorqueConverter self, std::string const & key, AnyVector args) -> Any
|
7583
7583
|
|
7584
7584
|
Parameters
|
7585
7585
|
----------
|
@@ -7587,74 +7587,74 @@ class EmpiricalTorqueConverter(openplx.Physics1D.Interactions_Mate):
|
|
7587
7587
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7588
7588
|
|
7589
7589
|
"""
|
7590
|
-
return _DriveTrainSwig.
|
7590
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_callDynamic(self, key, args)
|
7591
7591
|
|
7592
7592
|
def extractObjectFieldsTo(self, output):
|
7593
7593
|
r"""
|
7594
|
-
extractObjectFieldsTo(
|
7594
|
+
extractObjectFieldsTo(DriveTrain_EmpiricalTorqueConverter self, ObjectVector output)
|
7595
7595
|
|
7596
7596
|
Parameters
|
7597
7597
|
----------
|
7598
7598
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7599
7599
|
|
7600
7600
|
"""
|
7601
|
-
return _DriveTrainSwig.
|
7601
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_extractObjectFieldsTo(self, output)
|
7602
7602
|
|
7603
7603
|
def extractEntriesTo(self, output):
|
7604
7604
|
r"""
|
7605
|
-
extractEntriesTo(
|
7605
|
+
extractEntriesTo(DriveTrain_EmpiricalTorqueConverter self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7606
7606
|
|
7607
7607
|
Parameters
|
7608
7608
|
----------
|
7609
7609
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7610
7610
|
|
7611
7611
|
"""
|
7612
|
-
return _DriveTrainSwig.
|
7612
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_extractEntriesTo(self, output)
|
7613
7613
|
|
7614
7614
|
def triggerOnInit(self, context):
|
7615
7615
|
r"""
|
7616
|
-
triggerOnInit(
|
7616
|
+
triggerOnInit(DriveTrain_EmpiricalTorqueConverter self, openplx::RuntimeContext const & context)
|
7617
7617
|
|
7618
7618
|
Parameters
|
7619
7619
|
----------
|
7620
7620
|
context: openplx::RuntimeContext const &
|
7621
7621
|
|
7622
7622
|
"""
|
7623
|
-
return _DriveTrainSwig.
|
7624
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7623
|
+
return _DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_triggerOnInit(self, context)
|
7624
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_EmpiricalTorqueConverter
|
7625
7625
|
|
7626
|
-
# Register
|
7627
|
-
_DriveTrainSwig.
|
7626
|
+
# Register DriveTrain_EmpiricalTorqueConverter in _DriveTrainSwig:
|
7627
|
+
_DriveTrainSwig.DriveTrain_EmpiricalTorqueConverter_swigregister(DriveTrain_EmpiricalTorqueConverter)
|
7628
7628
|
|
7629
|
-
class
|
7629
|
+
class DriveTrain_Gear(openplx.Physics1D.Physics1D_Interactions_Mate):
|
7630
7630
|
r"""Proxy of C++ openplx::DriveTrain::Gear class."""
|
7631
7631
|
|
7632
7632
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7633
7633
|
__repr__ = _swig_repr
|
7634
7634
|
|
7635
7635
|
def __init__(self):
|
7636
|
-
r"""__init__(
|
7637
|
-
_DriveTrainSwig.
|
7636
|
+
r"""__init__(DriveTrain_Gear self) -> DriveTrain_Gear"""
|
7637
|
+
_DriveTrainSwig.DriveTrain_Gear_swiginit(self, _DriveTrainSwig.new_DriveTrain_Gear())
|
7638
7638
|
|
7639
7639
|
def ratio(self):
|
7640
|
-
r"""ratio(
|
7641
|
-
return _DriveTrainSwig.
|
7640
|
+
r"""ratio(DriveTrain_Gear self) -> double"""
|
7641
|
+
return _DriveTrainSwig.DriveTrain_Gear_ratio(self)
|
7642
7642
|
|
7643
7643
|
def torque_output(self):
|
7644
|
-
r"""torque_output(
|
7645
|
-
return _DriveTrainSwig.
|
7644
|
+
r"""torque_output(DriveTrain_Gear self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DOutput >"""
|
7645
|
+
return _DriveTrainSwig.DriveTrain_Gear_torque_output(self)
|
7646
7646
|
|
7647
7647
|
def ratio_input(self):
|
7648
|
-
r"""ratio_input(
|
7649
|
-
return _DriveTrainSwig.
|
7648
|
+
r"""ratio_input(DriveTrain_Gear self) -> std::shared_ptr< openplx::Physics::Signals::FractionInput >"""
|
7649
|
+
return _DriveTrainSwig.DriveTrain_Gear_ratio_input(self)
|
7650
7650
|
|
7651
7651
|
def ratio_output(self):
|
7652
|
-
r"""ratio_output(
|
7653
|
-
return _DriveTrainSwig.
|
7652
|
+
r"""ratio_output(DriveTrain_Gear self) -> std::shared_ptr< openplx::Physics::Signals::FractionOutput >"""
|
7653
|
+
return _DriveTrainSwig.DriveTrain_Gear_ratio_output(self)
|
7654
7654
|
|
7655
7655
|
def setDynamic(self, key, value):
|
7656
7656
|
r"""
|
7657
|
-
setDynamic(
|
7657
|
+
setDynamic(DriveTrain_Gear self, std::string const & key, Any value)
|
7658
7658
|
|
7659
7659
|
Parameters
|
7660
7660
|
----------
|
@@ -7662,22 +7662,22 @@ class Gear(openplx.Physics1D.Interactions_Mate):
|
|
7662
7662
|
value: openplx::Core::Any &&
|
7663
7663
|
|
7664
7664
|
"""
|
7665
|
-
return _DriveTrainSwig.
|
7665
|
+
return _DriveTrainSwig.DriveTrain_Gear_setDynamic(self, key, value)
|
7666
7666
|
|
7667
7667
|
def getDynamic(self, key):
|
7668
7668
|
r"""
|
7669
|
-
getDynamic(
|
7669
|
+
getDynamic(DriveTrain_Gear self, std::string const & key) -> Any
|
7670
7670
|
|
7671
7671
|
Parameters
|
7672
7672
|
----------
|
7673
7673
|
key: std::string const &
|
7674
7674
|
|
7675
7675
|
"""
|
7676
|
-
return _DriveTrainSwig.
|
7676
|
+
return _DriveTrainSwig.DriveTrain_Gear_getDynamic(self, key)
|
7677
7677
|
|
7678
7678
|
def callDynamic(self, key, args):
|
7679
7679
|
r"""
|
7680
|
-
callDynamic(
|
7680
|
+
callDynamic(DriveTrain_Gear self, std::string const & key, AnyVector args) -> Any
|
7681
7681
|
|
7682
7682
|
Parameters
|
7683
7683
|
----------
|
@@ -7685,66 +7685,66 @@ class Gear(openplx.Physics1D.Interactions_Mate):
|
|
7685
7685
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7686
7686
|
|
7687
7687
|
"""
|
7688
|
-
return _DriveTrainSwig.
|
7688
|
+
return _DriveTrainSwig.DriveTrain_Gear_callDynamic(self, key, args)
|
7689
7689
|
|
7690
7690
|
def extractObjectFieldsTo(self, output):
|
7691
7691
|
r"""
|
7692
|
-
extractObjectFieldsTo(
|
7692
|
+
extractObjectFieldsTo(DriveTrain_Gear self, ObjectVector output)
|
7693
7693
|
|
7694
7694
|
Parameters
|
7695
7695
|
----------
|
7696
7696
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7697
7697
|
|
7698
7698
|
"""
|
7699
|
-
return _DriveTrainSwig.
|
7699
|
+
return _DriveTrainSwig.DriveTrain_Gear_extractObjectFieldsTo(self, output)
|
7700
7700
|
|
7701
7701
|
def extractEntriesTo(self, output):
|
7702
7702
|
r"""
|
7703
|
-
extractEntriesTo(
|
7703
|
+
extractEntriesTo(DriveTrain_Gear self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7704
7704
|
|
7705
7705
|
Parameters
|
7706
7706
|
----------
|
7707
7707
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7708
7708
|
|
7709
7709
|
"""
|
7710
|
-
return _DriveTrainSwig.
|
7710
|
+
return _DriveTrainSwig.DriveTrain_Gear_extractEntriesTo(self, output)
|
7711
7711
|
|
7712
7712
|
def triggerOnInit(self, context):
|
7713
7713
|
r"""
|
7714
|
-
triggerOnInit(
|
7714
|
+
triggerOnInit(DriveTrain_Gear self, openplx::RuntimeContext const & context)
|
7715
7715
|
|
7716
7716
|
Parameters
|
7717
7717
|
----------
|
7718
7718
|
context: openplx::RuntimeContext const &
|
7719
7719
|
|
7720
7720
|
"""
|
7721
|
-
return _DriveTrainSwig.
|
7722
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7721
|
+
return _DriveTrainSwig.DriveTrain_Gear_triggerOnInit(self, context)
|
7722
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Gear
|
7723
7723
|
|
7724
|
-
# Register
|
7725
|
-
_DriveTrainSwig.
|
7724
|
+
# Register DriveTrain_Gear in _DriveTrainSwig:
|
7725
|
+
_DriveTrainSwig.DriveTrain_Gear_swigregister(DriveTrain_Gear)
|
7726
7726
|
|
7727
|
-
class
|
7727
|
+
class DriveTrain_FlexibleGear(DriveTrain_Gear):
|
7728
7728
|
r"""Proxy of C++ openplx::DriveTrain::FlexibleGear class."""
|
7729
7729
|
|
7730
7730
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7731
7731
|
__repr__ = _swig_repr
|
7732
7732
|
|
7733
7733
|
def __init__(self):
|
7734
|
-
r"""__init__(
|
7735
|
-
_DriveTrainSwig.
|
7734
|
+
r"""__init__(DriveTrain_FlexibleGear self) -> DriveTrain_FlexibleGear"""
|
7735
|
+
_DriveTrainSwig.DriveTrain_FlexibleGear_swiginit(self, _DriveTrainSwig.new_DriveTrain_FlexibleGear())
|
7736
7736
|
|
7737
7737
|
def flexibility(self):
|
7738
|
-
r"""flexibility(
|
7739
|
-
return _DriveTrainSwig.
|
7738
|
+
r"""flexibility(DriveTrain_FlexibleGear self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::DefaultFlexibility >"""
|
7739
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_flexibility(self)
|
7740
7740
|
|
7741
7741
|
def dissipation(self):
|
7742
|
-
r"""dissipation(
|
7743
|
-
return _DriveTrainSwig.
|
7742
|
+
r"""dissipation(DriveTrain_FlexibleGear self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::DefaultDissipation >"""
|
7743
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_dissipation(self)
|
7744
7744
|
|
7745
7745
|
def setDynamic(self, key, value):
|
7746
7746
|
r"""
|
7747
|
-
setDynamic(
|
7747
|
+
setDynamic(DriveTrain_FlexibleGear self, std::string const & key, Any value)
|
7748
7748
|
|
7749
7749
|
Parameters
|
7750
7750
|
----------
|
@@ -7752,22 +7752,22 @@ class FlexibleGear(Gear):
|
|
7752
7752
|
value: openplx::Core::Any &&
|
7753
7753
|
|
7754
7754
|
"""
|
7755
|
-
return _DriveTrainSwig.
|
7755
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_setDynamic(self, key, value)
|
7756
7756
|
|
7757
7757
|
def getDynamic(self, key):
|
7758
7758
|
r"""
|
7759
|
-
getDynamic(
|
7759
|
+
getDynamic(DriveTrain_FlexibleGear self, std::string const & key) -> Any
|
7760
7760
|
|
7761
7761
|
Parameters
|
7762
7762
|
----------
|
7763
7763
|
key: std::string const &
|
7764
7764
|
|
7765
7765
|
"""
|
7766
|
-
return _DriveTrainSwig.
|
7766
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_getDynamic(self, key)
|
7767
7767
|
|
7768
7768
|
def callDynamic(self, key, args):
|
7769
7769
|
r"""
|
7770
|
-
callDynamic(
|
7770
|
+
callDynamic(DriveTrain_FlexibleGear self, std::string const & key, AnyVector args) -> Any
|
7771
7771
|
|
7772
7772
|
Parameters
|
7773
7773
|
----------
|
@@ -7775,90 +7775,90 @@ class FlexibleGear(Gear):
|
|
7775
7775
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7776
7776
|
|
7777
7777
|
"""
|
7778
|
-
return _DriveTrainSwig.
|
7778
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_callDynamic(self, key, args)
|
7779
7779
|
|
7780
7780
|
def extractObjectFieldsTo(self, output):
|
7781
7781
|
r"""
|
7782
|
-
extractObjectFieldsTo(
|
7782
|
+
extractObjectFieldsTo(DriveTrain_FlexibleGear self, ObjectVector output)
|
7783
7783
|
|
7784
7784
|
Parameters
|
7785
7785
|
----------
|
7786
7786
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7787
7787
|
|
7788
7788
|
"""
|
7789
|
-
return _DriveTrainSwig.
|
7789
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_extractObjectFieldsTo(self, output)
|
7790
7790
|
|
7791
7791
|
def extractEntriesTo(self, output):
|
7792
7792
|
r"""
|
7793
|
-
extractEntriesTo(
|
7793
|
+
extractEntriesTo(DriveTrain_FlexibleGear self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7794
7794
|
|
7795
7795
|
Parameters
|
7796
7796
|
----------
|
7797
7797
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7798
7798
|
|
7799
7799
|
"""
|
7800
|
-
return _DriveTrainSwig.
|
7800
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_extractEntriesTo(self, output)
|
7801
7801
|
|
7802
7802
|
def triggerOnInit(self, context):
|
7803
7803
|
r"""
|
7804
|
-
triggerOnInit(
|
7804
|
+
triggerOnInit(DriveTrain_FlexibleGear self, openplx::RuntimeContext const & context)
|
7805
7805
|
|
7806
7806
|
Parameters
|
7807
7807
|
----------
|
7808
7808
|
context: openplx::RuntimeContext const &
|
7809
7809
|
|
7810
7810
|
"""
|
7811
|
-
return _DriveTrainSwig.
|
7812
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7811
|
+
return _DriveTrainSwig.DriveTrain_FlexibleGear_triggerOnInit(self, context)
|
7812
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_FlexibleGear
|
7813
7813
|
|
7814
|
-
# Register
|
7815
|
-
_DriveTrainSwig.
|
7814
|
+
# Register DriveTrain_FlexibleGear in _DriveTrainSwig:
|
7815
|
+
_DriveTrainSwig.DriveTrain_FlexibleGear_swigregister(DriveTrain_FlexibleGear)
|
7816
7816
|
|
7817
|
-
class
|
7817
|
+
class DriveTrain_GearBox(openplx.Physics1D.Physics1D_Interactions_Mate):
|
7818
7818
|
r"""Proxy of C++ openplx::DriveTrain::GearBox class."""
|
7819
7819
|
|
7820
7820
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7821
7821
|
__repr__ = _swig_repr
|
7822
7822
|
|
7823
7823
|
def __init__(self):
|
7824
|
-
r"""__init__(
|
7825
|
-
_DriveTrainSwig.
|
7824
|
+
r"""__init__(DriveTrain_GearBox self) -> DriveTrain_GearBox"""
|
7825
|
+
_DriveTrainSwig.DriveTrain_GearBox_swiginit(self, _DriveTrainSwig.new_DriveTrain_GearBox())
|
7826
7826
|
|
7827
7827
|
def forward_gears(self):
|
7828
|
-
r"""forward_gears(
|
7829
|
-
return _DriveTrainSwig.
|
7828
|
+
r"""forward_gears(DriveTrain_GearBox self) -> DoubleVector"""
|
7829
|
+
return _DriveTrainSwig.DriveTrain_GearBox_forward_gears(self)
|
7830
7830
|
|
7831
7831
|
def reverse_gears(self):
|
7832
|
-
r"""reverse_gears(
|
7833
|
-
return _DriveTrainSwig.
|
7832
|
+
r"""reverse_gears(DriveTrain_GearBox self) -> DoubleVector"""
|
7833
|
+
return _DriveTrainSwig.DriveTrain_GearBox_reverse_gears(self)
|
7834
7834
|
|
7835
7835
|
def initial_gear(self):
|
7836
|
-
r"""initial_gear(
|
7837
|
-
return _DriveTrainSwig.
|
7836
|
+
r"""initial_gear(DriveTrain_GearBox self) -> int64_t"""
|
7837
|
+
return _DriveTrainSwig.DriveTrain_GearBox_initial_gear(self)
|
7838
7838
|
|
7839
7839
|
def flexibility(self):
|
7840
|
-
r"""flexibility(
|
7841
|
-
return _DriveTrainSwig.
|
7840
|
+
r"""flexibility(DriveTrain_GearBox self) -> std::shared_ptr< openplx::Physics::Interactions::Flexibility::DefaultFlexibility >"""
|
7841
|
+
return _DriveTrainSwig.DriveTrain_GearBox_flexibility(self)
|
7842
7842
|
|
7843
7843
|
def dissipation(self):
|
7844
|
-
r"""dissipation(
|
7845
|
-
return _DriveTrainSwig.
|
7844
|
+
r"""dissipation(DriveTrain_GearBox self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::DefaultDissipation >"""
|
7845
|
+
return _DriveTrainSwig.DriveTrain_GearBox_dissipation(self)
|
7846
7846
|
|
7847
7847
|
def torque_output(self):
|
7848
|
-
r"""torque_output(
|
7849
|
-
return _DriveTrainSwig.
|
7848
|
+
r"""torque_output(DriveTrain_GearBox self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DOutput >"""
|
7849
|
+
return _DriveTrainSwig.DriveTrain_GearBox_torque_output(self)
|
7850
7850
|
|
7851
7851
|
def gear_selection_input(self):
|
7852
|
-
r"""gear_selection_input(
|
7853
|
-
return _DriveTrainSwig.
|
7852
|
+
r"""gear_selection_input(DriveTrain_GearBox self) -> std::shared_ptr< openplx::Physics::Signals::IntInput >"""
|
7853
|
+
return _DriveTrainSwig.DriveTrain_GearBox_gear_selection_input(self)
|
7854
7854
|
|
7855
7855
|
def gear_selection_output(self):
|
7856
|
-
r"""gear_selection_output(
|
7857
|
-
return _DriveTrainSwig.
|
7856
|
+
r"""gear_selection_output(DriveTrain_GearBox self) -> std::shared_ptr< openplx::Physics::Signals::IntOutput >"""
|
7857
|
+
return _DriveTrainSwig.DriveTrain_GearBox_gear_selection_output(self)
|
7858
7858
|
|
7859
7859
|
def setDynamic(self, key, value):
|
7860
7860
|
r"""
|
7861
|
-
setDynamic(
|
7861
|
+
setDynamic(DriveTrain_GearBox self, std::string const & key, Any value)
|
7862
7862
|
|
7863
7863
|
Parameters
|
7864
7864
|
----------
|
@@ -7866,22 +7866,22 @@ class GearBox(openplx.Physics1D.Interactions_Mate):
|
|
7866
7866
|
value: openplx::Core::Any &&
|
7867
7867
|
|
7868
7868
|
"""
|
7869
|
-
return _DriveTrainSwig.
|
7869
|
+
return _DriveTrainSwig.DriveTrain_GearBox_setDynamic(self, key, value)
|
7870
7870
|
|
7871
7871
|
def getDynamic(self, key):
|
7872
7872
|
r"""
|
7873
|
-
getDynamic(
|
7873
|
+
getDynamic(DriveTrain_GearBox self, std::string const & key) -> Any
|
7874
7874
|
|
7875
7875
|
Parameters
|
7876
7876
|
----------
|
7877
7877
|
key: std::string const &
|
7878
7878
|
|
7879
7879
|
"""
|
7880
|
-
return _DriveTrainSwig.
|
7880
|
+
return _DriveTrainSwig.DriveTrain_GearBox_getDynamic(self, key)
|
7881
7881
|
|
7882
7882
|
def callDynamic(self, key, args):
|
7883
7883
|
r"""
|
7884
|
-
callDynamic(
|
7884
|
+
callDynamic(DriveTrain_GearBox self, std::string const & key, AnyVector args) -> Any
|
7885
7885
|
|
7886
7886
|
Parameters
|
7887
7887
|
----------
|
@@ -7889,62 +7889,62 @@ class GearBox(openplx.Physics1D.Interactions_Mate):
|
|
7889
7889
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7890
7890
|
|
7891
7891
|
"""
|
7892
|
-
return _DriveTrainSwig.
|
7892
|
+
return _DriveTrainSwig.DriveTrain_GearBox_callDynamic(self, key, args)
|
7893
7893
|
|
7894
7894
|
def extractObjectFieldsTo(self, output):
|
7895
7895
|
r"""
|
7896
|
-
extractObjectFieldsTo(
|
7896
|
+
extractObjectFieldsTo(DriveTrain_GearBox self, ObjectVector output)
|
7897
7897
|
|
7898
7898
|
Parameters
|
7899
7899
|
----------
|
7900
7900
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7901
7901
|
|
7902
7902
|
"""
|
7903
|
-
return _DriveTrainSwig.
|
7903
|
+
return _DriveTrainSwig.DriveTrain_GearBox_extractObjectFieldsTo(self, output)
|
7904
7904
|
|
7905
7905
|
def extractEntriesTo(self, output):
|
7906
7906
|
r"""
|
7907
|
-
extractEntriesTo(
|
7907
|
+
extractEntriesTo(DriveTrain_GearBox self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7908
7908
|
|
7909
7909
|
Parameters
|
7910
7910
|
----------
|
7911
7911
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7912
7912
|
|
7913
7913
|
"""
|
7914
|
-
return _DriveTrainSwig.
|
7914
|
+
return _DriveTrainSwig.DriveTrain_GearBox_extractEntriesTo(self, output)
|
7915
7915
|
|
7916
7916
|
def triggerOnInit(self, context):
|
7917
7917
|
r"""
|
7918
|
-
triggerOnInit(
|
7918
|
+
triggerOnInit(DriveTrain_GearBox self, openplx::RuntimeContext const & context)
|
7919
7919
|
|
7920
7920
|
Parameters
|
7921
7921
|
----------
|
7922
7922
|
context: openplx::RuntimeContext const &
|
7923
7923
|
|
7924
7924
|
"""
|
7925
|
-
return _DriveTrainSwig.
|
7926
|
-
__swig_destroy__ = _DriveTrainSwig.
|
7925
|
+
return _DriveTrainSwig.DriveTrain_GearBox_triggerOnInit(self, context)
|
7926
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_GearBox
|
7927
7927
|
|
7928
|
-
# Register
|
7929
|
-
_DriveTrainSwig.
|
7928
|
+
# Register DriveTrain_GearBox in _DriveTrainSwig:
|
7929
|
+
_DriveTrainSwig.DriveTrain_GearBox_swigregister(DriveTrain_GearBox)
|
7930
7930
|
|
7931
|
-
class
|
7931
|
+
class DriveTrain_HingeActuator(DriveTrain_Actuator):
|
7932
7932
|
r"""Proxy of C++ openplx::DriveTrain::HingeActuator class."""
|
7933
7933
|
|
7934
7934
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
7935
7935
|
__repr__ = _swig_repr
|
7936
7936
|
|
7937
7937
|
def __init__(self):
|
7938
|
-
r"""__init__(
|
7939
|
-
_DriveTrainSwig.
|
7938
|
+
r"""__init__(DriveTrain_HingeActuator self) -> DriveTrain_HingeActuator"""
|
7939
|
+
_DriveTrainSwig.DriveTrain_HingeActuator_swiginit(self, _DriveTrainSwig.new_DriveTrain_HingeActuator())
|
7940
7940
|
|
7941
7941
|
def mate_3d(self):
|
7942
|
-
r"""mate_3d(
|
7943
|
-
return _DriveTrainSwig.
|
7942
|
+
r"""mate_3d(DriveTrain_HingeActuator self) -> std::shared_ptr< openplx::Physics3D::Interactions::Hinge >"""
|
7943
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_mate_3d(self)
|
7944
7944
|
|
7945
7945
|
def setDynamic(self, key, value):
|
7946
7946
|
r"""
|
7947
|
-
setDynamic(
|
7947
|
+
setDynamic(DriveTrain_HingeActuator self, std::string const & key, Any value)
|
7948
7948
|
|
7949
7949
|
Parameters
|
7950
7950
|
----------
|
@@ -7952,22 +7952,22 @@ class HingeActuator(Actuator):
|
|
7952
7952
|
value: openplx::Core::Any &&
|
7953
7953
|
|
7954
7954
|
"""
|
7955
|
-
return _DriveTrainSwig.
|
7955
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_setDynamic(self, key, value)
|
7956
7956
|
|
7957
7957
|
def getDynamic(self, key):
|
7958
7958
|
r"""
|
7959
|
-
getDynamic(
|
7959
|
+
getDynamic(DriveTrain_HingeActuator self, std::string const & key) -> Any
|
7960
7960
|
|
7961
7961
|
Parameters
|
7962
7962
|
----------
|
7963
7963
|
key: std::string const &
|
7964
7964
|
|
7965
7965
|
"""
|
7966
|
-
return _DriveTrainSwig.
|
7966
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_getDynamic(self, key)
|
7967
7967
|
|
7968
7968
|
def callDynamic(self, key, args):
|
7969
7969
|
r"""
|
7970
|
-
callDynamic(
|
7970
|
+
callDynamic(DriveTrain_HingeActuator self, std::string const & key, AnyVector args) -> Any
|
7971
7971
|
|
7972
7972
|
Parameters
|
7973
7973
|
----------
|
@@ -7975,62 +7975,62 @@ class HingeActuator(Actuator):
|
|
7975
7975
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
7976
7976
|
|
7977
7977
|
"""
|
7978
|
-
return _DriveTrainSwig.
|
7978
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_callDynamic(self, key, args)
|
7979
7979
|
|
7980
7980
|
def extractObjectFieldsTo(self, output):
|
7981
7981
|
r"""
|
7982
|
-
extractObjectFieldsTo(
|
7982
|
+
extractObjectFieldsTo(DriveTrain_HingeActuator self, ObjectVector output)
|
7983
7983
|
|
7984
7984
|
Parameters
|
7985
7985
|
----------
|
7986
7986
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
7987
7987
|
|
7988
7988
|
"""
|
7989
|
-
return _DriveTrainSwig.
|
7989
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_extractObjectFieldsTo(self, output)
|
7990
7990
|
|
7991
7991
|
def extractEntriesTo(self, output):
|
7992
7992
|
r"""
|
7993
|
-
extractEntriesTo(
|
7993
|
+
extractEntriesTo(DriveTrain_HingeActuator self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
7994
7994
|
|
7995
7995
|
Parameters
|
7996
7996
|
----------
|
7997
7997
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
7998
7998
|
|
7999
7999
|
"""
|
8000
|
-
return _DriveTrainSwig.
|
8000
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_extractEntriesTo(self, output)
|
8001
8001
|
|
8002
8002
|
def triggerOnInit(self, context):
|
8003
8003
|
r"""
|
8004
|
-
triggerOnInit(
|
8004
|
+
triggerOnInit(DriveTrain_HingeActuator self, openplx::RuntimeContext const & context)
|
8005
8005
|
|
8006
8006
|
Parameters
|
8007
8007
|
----------
|
8008
8008
|
context: openplx::RuntimeContext const &
|
8009
8009
|
|
8010
8010
|
"""
|
8011
|
-
return _DriveTrainSwig.
|
8012
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8011
|
+
return _DriveTrainSwig.DriveTrain_HingeActuator_triggerOnInit(self, context)
|
8012
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_HingeActuator
|
8013
8013
|
|
8014
|
-
# Register
|
8015
|
-
_DriveTrainSwig.
|
8014
|
+
# Register DriveTrain_HingeActuator in _DriveTrainSwig:
|
8015
|
+
_DriveTrainSwig.DriveTrain_HingeActuator_swigregister(DriveTrain_HingeActuator)
|
8016
8016
|
|
8017
|
-
class
|
8017
|
+
class DriveTrain_PrismaticActuator(DriveTrain_Actuator):
|
8018
8018
|
r"""Proxy of C++ openplx::DriveTrain::PrismaticActuator class."""
|
8019
8019
|
|
8020
8020
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8021
8021
|
__repr__ = _swig_repr
|
8022
8022
|
|
8023
8023
|
def __init__(self):
|
8024
|
-
r"""__init__(
|
8025
|
-
_DriveTrainSwig.
|
8024
|
+
r"""__init__(DriveTrain_PrismaticActuator self) -> DriveTrain_PrismaticActuator"""
|
8025
|
+
_DriveTrainSwig.DriveTrain_PrismaticActuator_swiginit(self, _DriveTrainSwig.new_DriveTrain_PrismaticActuator())
|
8026
8026
|
|
8027
8027
|
def mate_3d(self):
|
8028
|
-
r"""mate_3d(
|
8029
|
-
return _DriveTrainSwig.
|
8028
|
+
r"""mate_3d(DriveTrain_PrismaticActuator self) -> std::shared_ptr< openplx::Physics3D::Interactions::Prismatic >"""
|
8029
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_mate_3d(self)
|
8030
8030
|
|
8031
8031
|
def setDynamic(self, key, value):
|
8032
8032
|
r"""
|
8033
|
-
setDynamic(
|
8033
|
+
setDynamic(DriveTrain_PrismaticActuator self, std::string const & key, Any value)
|
8034
8034
|
|
8035
8035
|
Parameters
|
8036
8036
|
----------
|
@@ -8038,22 +8038,22 @@ class PrismaticActuator(Actuator):
|
|
8038
8038
|
value: openplx::Core::Any &&
|
8039
8039
|
|
8040
8040
|
"""
|
8041
|
-
return _DriveTrainSwig.
|
8041
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_setDynamic(self, key, value)
|
8042
8042
|
|
8043
8043
|
def getDynamic(self, key):
|
8044
8044
|
r"""
|
8045
|
-
getDynamic(
|
8045
|
+
getDynamic(DriveTrain_PrismaticActuator self, std::string const & key) -> Any
|
8046
8046
|
|
8047
8047
|
Parameters
|
8048
8048
|
----------
|
8049
8049
|
key: std::string const &
|
8050
8050
|
|
8051
8051
|
"""
|
8052
|
-
return _DriveTrainSwig.
|
8052
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_getDynamic(self, key)
|
8053
8053
|
|
8054
8054
|
def callDynamic(self, key, args):
|
8055
8055
|
r"""
|
8056
|
-
callDynamic(
|
8056
|
+
callDynamic(DriveTrain_PrismaticActuator self, std::string const & key, AnyVector args) -> Any
|
8057
8057
|
|
8058
8058
|
Parameters
|
8059
8059
|
----------
|
@@ -8061,66 +8061,66 @@ class PrismaticActuator(Actuator):
|
|
8061
8061
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8062
8062
|
|
8063
8063
|
"""
|
8064
|
-
return _DriveTrainSwig.
|
8064
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_callDynamic(self, key, args)
|
8065
8065
|
|
8066
8066
|
def extractObjectFieldsTo(self, output):
|
8067
8067
|
r"""
|
8068
|
-
extractObjectFieldsTo(
|
8068
|
+
extractObjectFieldsTo(DriveTrain_PrismaticActuator self, ObjectVector output)
|
8069
8069
|
|
8070
8070
|
Parameters
|
8071
8071
|
----------
|
8072
8072
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8073
8073
|
|
8074
8074
|
"""
|
8075
|
-
return _DriveTrainSwig.
|
8075
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_extractObjectFieldsTo(self, output)
|
8076
8076
|
|
8077
8077
|
def extractEntriesTo(self, output):
|
8078
8078
|
r"""
|
8079
|
-
extractEntriesTo(
|
8079
|
+
extractEntriesTo(DriveTrain_PrismaticActuator self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8080
8080
|
|
8081
8081
|
Parameters
|
8082
8082
|
----------
|
8083
8083
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8084
8084
|
|
8085
8085
|
"""
|
8086
|
-
return _DriveTrainSwig.
|
8086
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_extractEntriesTo(self, output)
|
8087
8087
|
|
8088
8088
|
def triggerOnInit(self, context):
|
8089
8089
|
r"""
|
8090
|
-
triggerOnInit(
|
8090
|
+
triggerOnInit(DriveTrain_PrismaticActuator self, openplx::RuntimeContext const & context)
|
8091
8091
|
|
8092
8092
|
Parameters
|
8093
8093
|
----------
|
8094
8094
|
context: openplx::RuntimeContext const &
|
8095
8095
|
|
8096
8096
|
"""
|
8097
|
-
return _DriveTrainSwig.
|
8098
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8097
|
+
return _DriveTrainSwig.DriveTrain_PrismaticActuator_triggerOnInit(self, context)
|
8098
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_PrismaticActuator
|
8099
8099
|
|
8100
|
-
# Register
|
8101
|
-
_DriveTrainSwig.
|
8100
|
+
# Register DriveTrain_PrismaticActuator in _DriveTrainSwig:
|
8101
|
+
_DriveTrainSwig.DriveTrain_PrismaticActuator_swigregister(DriveTrain_PrismaticActuator)
|
8102
8102
|
|
8103
|
-
class
|
8103
|
+
class DriveTrain_Shaft(openplx.Physics1D.Physics1D_Bodies_RotationalBody):
|
8104
8104
|
r"""Proxy of C++ openplx::DriveTrain::Shaft class."""
|
8105
8105
|
|
8106
8106
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8107
8107
|
__repr__ = _swig_repr
|
8108
8108
|
|
8109
8109
|
def __init__(self):
|
8110
|
-
r"""__init__(
|
8111
|
-
_DriveTrainSwig.
|
8110
|
+
r"""__init__(DriveTrain_Shaft self) -> DriveTrain_Shaft"""
|
8111
|
+
_DriveTrainSwig.DriveTrain_Shaft_swiginit(self, _DriveTrainSwig.new_DriveTrain_Shaft())
|
8112
8112
|
|
8113
8113
|
def input(self):
|
8114
|
-
r"""input(
|
8115
|
-
return _DriveTrainSwig.
|
8114
|
+
r"""input(DriveTrain_Shaft self) -> std::shared_ptr< openplx::Physics1D::Charges::MateConnector >"""
|
8115
|
+
return _DriveTrainSwig.DriveTrain_Shaft_input(self)
|
8116
8116
|
|
8117
8117
|
def output(self):
|
8118
|
-
r"""output(
|
8119
|
-
return _DriveTrainSwig.
|
8118
|
+
r"""output(DriveTrain_Shaft self) -> std::shared_ptr< openplx::Physics1D::Charges::MateConnector >"""
|
8119
|
+
return _DriveTrainSwig.DriveTrain_Shaft_output(self)
|
8120
8120
|
|
8121
8121
|
def setDynamic(self, key, value):
|
8122
8122
|
r"""
|
8123
|
-
setDynamic(
|
8123
|
+
setDynamic(DriveTrain_Shaft self, std::string const & key, Any value)
|
8124
8124
|
|
8125
8125
|
Parameters
|
8126
8126
|
----------
|
@@ -8128,22 +8128,22 @@ class Shaft(openplx.Physics1D.Bodies_RotationalBody):
|
|
8128
8128
|
value: openplx::Core::Any &&
|
8129
8129
|
|
8130
8130
|
"""
|
8131
|
-
return _DriveTrainSwig.
|
8131
|
+
return _DriveTrainSwig.DriveTrain_Shaft_setDynamic(self, key, value)
|
8132
8132
|
|
8133
8133
|
def getDynamic(self, key):
|
8134
8134
|
r"""
|
8135
|
-
getDynamic(
|
8135
|
+
getDynamic(DriveTrain_Shaft self, std::string const & key) -> Any
|
8136
8136
|
|
8137
8137
|
Parameters
|
8138
8138
|
----------
|
8139
8139
|
key: std::string const &
|
8140
8140
|
|
8141
8141
|
"""
|
8142
|
-
return _DriveTrainSwig.
|
8142
|
+
return _DriveTrainSwig.DriveTrain_Shaft_getDynamic(self, key)
|
8143
8143
|
|
8144
8144
|
def callDynamic(self, key, args):
|
8145
8145
|
r"""
|
8146
|
-
callDynamic(
|
8146
|
+
callDynamic(DriveTrain_Shaft self, std::string const & key, AnyVector args) -> Any
|
8147
8147
|
|
8148
8148
|
Parameters
|
8149
8149
|
----------
|
@@ -8151,58 +8151,58 @@ class Shaft(openplx.Physics1D.Bodies_RotationalBody):
|
|
8151
8151
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8152
8152
|
|
8153
8153
|
"""
|
8154
|
-
return _DriveTrainSwig.
|
8154
|
+
return _DriveTrainSwig.DriveTrain_Shaft_callDynamic(self, key, args)
|
8155
8155
|
|
8156
8156
|
def extractObjectFieldsTo(self, output):
|
8157
8157
|
r"""
|
8158
|
-
extractObjectFieldsTo(
|
8158
|
+
extractObjectFieldsTo(DriveTrain_Shaft self, ObjectVector output)
|
8159
8159
|
|
8160
8160
|
Parameters
|
8161
8161
|
----------
|
8162
8162
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8163
8163
|
|
8164
8164
|
"""
|
8165
|
-
return _DriveTrainSwig.
|
8165
|
+
return _DriveTrainSwig.DriveTrain_Shaft_extractObjectFieldsTo(self, output)
|
8166
8166
|
|
8167
8167
|
def extractEntriesTo(self, output):
|
8168
8168
|
r"""
|
8169
|
-
extractEntriesTo(
|
8169
|
+
extractEntriesTo(DriveTrain_Shaft self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8170
8170
|
|
8171
8171
|
Parameters
|
8172
8172
|
----------
|
8173
8173
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8174
8174
|
|
8175
8175
|
"""
|
8176
|
-
return _DriveTrainSwig.
|
8176
|
+
return _DriveTrainSwig.DriveTrain_Shaft_extractEntriesTo(self, output)
|
8177
8177
|
|
8178
8178
|
def triggerOnInit(self, context):
|
8179
8179
|
r"""
|
8180
|
-
triggerOnInit(
|
8180
|
+
triggerOnInit(DriveTrain_Shaft self, openplx::RuntimeContext const & context)
|
8181
8181
|
|
8182
8182
|
Parameters
|
8183
8183
|
----------
|
8184
8184
|
context: openplx::RuntimeContext const &
|
8185
8185
|
|
8186
8186
|
"""
|
8187
|
-
return _DriveTrainSwig.
|
8188
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8187
|
+
return _DriveTrainSwig.DriveTrain_Shaft_triggerOnInit(self, context)
|
8188
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Shaft
|
8189
8189
|
|
8190
|
-
# Register
|
8191
|
-
_DriveTrainSwig.
|
8190
|
+
# Register DriveTrain_Shaft in _DriveTrainSwig:
|
8191
|
+
_DriveTrainSwig.DriveTrain_Shaft_swigregister(DriveTrain_Shaft)
|
8192
8192
|
|
8193
|
-
class
|
8193
|
+
class DriveTrain_Signals_TorqueConverterLockUpInput(openplx.Physics.Physics_Signals_BoolInput):
|
8194
8194
|
r"""Proxy of C++ openplx::DriveTrain::Signals::TorqueConverterLockUpInput class."""
|
8195
8195
|
|
8196
8196
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8197
8197
|
__repr__ = _swig_repr
|
8198
8198
|
|
8199
8199
|
def __init__(self):
|
8200
|
-
r"""__init__(
|
8201
|
-
_DriveTrainSwig.
|
8200
|
+
r"""__init__(DriveTrain_Signals_TorqueConverterLockUpInput self) -> DriveTrain_Signals_TorqueConverterLockUpInput"""
|
8201
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_swiginit(self, _DriveTrainSwig.new_DriveTrain_Signals_TorqueConverterLockUpInput())
|
8202
8202
|
|
8203
8203
|
def setDynamic(self, key, value):
|
8204
8204
|
r"""
|
8205
|
-
setDynamic(
|
8205
|
+
setDynamic(DriveTrain_Signals_TorqueConverterLockUpInput self, std::string const & key, Any value)
|
8206
8206
|
|
8207
8207
|
Parameters
|
8208
8208
|
----------
|
@@ -8210,22 +8210,22 @@ class Signals_TorqueConverterLockUpInput(openplx.Physics.Signals_BoolInput):
|
|
8210
8210
|
value: openplx::Core::Any &&
|
8211
8211
|
|
8212
8212
|
"""
|
8213
|
-
return _DriveTrainSwig.
|
8213
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_setDynamic(self, key, value)
|
8214
8214
|
|
8215
8215
|
def getDynamic(self, key):
|
8216
8216
|
r"""
|
8217
|
-
getDynamic(
|
8217
|
+
getDynamic(DriveTrain_Signals_TorqueConverterLockUpInput self, std::string const & key) -> Any
|
8218
8218
|
|
8219
8219
|
Parameters
|
8220
8220
|
----------
|
8221
8221
|
key: std::string const &
|
8222
8222
|
|
8223
8223
|
"""
|
8224
|
-
return _DriveTrainSwig.
|
8224
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_getDynamic(self, key)
|
8225
8225
|
|
8226
8226
|
def callDynamic(self, key, args):
|
8227
8227
|
r"""
|
8228
|
-
callDynamic(
|
8228
|
+
callDynamic(DriveTrain_Signals_TorqueConverterLockUpInput self, std::string const & key, AnyVector args) -> Any
|
8229
8229
|
|
8230
8230
|
Parameters
|
8231
8231
|
----------
|
@@ -8233,58 +8233,58 @@ class Signals_TorqueConverterLockUpInput(openplx.Physics.Signals_BoolInput):
|
|
8233
8233
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8234
8234
|
|
8235
8235
|
"""
|
8236
|
-
return _DriveTrainSwig.
|
8236
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_callDynamic(self, key, args)
|
8237
8237
|
|
8238
8238
|
def extractObjectFieldsTo(self, output):
|
8239
8239
|
r"""
|
8240
|
-
extractObjectFieldsTo(
|
8240
|
+
extractObjectFieldsTo(DriveTrain_Signals_TorqueConverterLockUpInput self, ObjectVector output)
|
8241
8241
|
|
8242
8242
|
Parameters
|
8243
8243
|
----------
|
8244
8244
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8245
8245
|
|
8246
8246
|
"""
|
8247
|
-
return _DriveTrainSwig.
|
8247
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_extractObjectFieldsTo(self, output)
|
8248
8248
|
|
8249
8249
|
def extractEntriesTo(self, output):
|
8250
8250
|
r"""
|
8251
|
-
extractEntriesTo(
|
8251
|
+
extractEntriesTo(DriveTrain_Signals_TorqueConverterLockUpInput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8252
8252
|
|
8253
8253
|
Parameters
|
8254
8254
|
----------
|
8255
8255
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8256
8256
|
|
8257
8257
|
"""
|
8258
|
-
return _DriveTrainSwig.
|
8258
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_extractEntriesTo(self, output)
|
8259
8259
|
|
8260
8260
|
def triggerOnInit(self, context):
|
8261
8261
|
r"""
|
8262
|
-
triggerOnInit(
|
8262
|
+
triggerOnInit(DriveTrain_Signals_TorqueConverterLockUpInput self, openplx::RuntimeContext const & context)
|
8263
8263
|
|
8264
8264
|
Parameters
|
8265
8265
|
----------
|
8266
8266
|
context: openplx::RuntimeContext const &
|
8267
8267
|
|
8268
8268
|
"""
|
8269
|
-
return _DriveTrainSwig.
|
8270
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8269
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_triggerOnInit(self, context)
|
8270
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Signals_TorqueConverterLockUpInput
|
8271
8271
|
|
8272
|
-
# Register
|
8273
|
-
_DriveTrainSwig.
|
8272
|
+
# Register DriveTrain_Signals_TorqueConverterLockUpInput in _DriveTrainSwig:
|
8273
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockUpInput_swigregister(DriveTrain_Signals_TorqueConverterLockUpInput)
|
8274
8274
|
|
8275
|
-
class
|
8275
|
+
class DriveTrain_Signals_TorqueConverterLockedUpOutput(openplx.Physics.Physics_Signals_BoolOutput):
|
8276
8276
|
r"""Proxy of C++ openplx::DriveTrain::Signals::TorqueConverterLockedUpOutput class."""
|
8277
8277
|
|
8278
8278
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8279
8279
|
__repr__ = _swig_repr
|
8280
8280
|
|
8281
8281
|
def __init__(self):
|
8282
|
-
r"""__init__(
|
8283
|
-
_DriveTrainSwig.
|
8282
|
+
r"""__init__(DriveTrain_Signals_TorqueConverterLockedUpOutput self) -> DriveTrain_Signals_TorqueConverterLockedUpOutput"""
|
8283
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_swiginit(self, _DriveTrainSwig.new_DriveTrain_Signals_TorqueConverterLockedUpOutput())
|
8284
8284
|
|
8285
8285
|
def setDynamic(self, key, value):
|
8286
8286
|
r"""
|
8287
|
-
setDynamic(
|
8287
|
+
setDynamic(DriveTrain_Signals_TorqueConverterLockedUpOutput self, std::string const & key, Any value)
|
8288
8288
|
|
8289
8289
|
Parameters
|
8290
8290
|
----------
|
@@ -8292,22 +8292,22 @@ class Signals_TorqueConverterLockedUpOutput(openplx.Physics.Signals_BoolOutput):
|
|
8292
8292
|
value: openplx::Core::Any &&
|
8293
8293
|
|
8294
8294
|
"""
|
8295
|
-
return _DriveTrainSwig.
|
8295
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_setDynamic(self, key, value)
|
8296
8296
|
|
8297
8297
|
def getDynamic(self, key):
|
8298
8298
|
r"""
|
8299
|
-
getDynamic(
|
8299
|
+
getDynamic(DriveTrain_Signals_TorqueConverterLockedUpOutput self, std::string const & key) -> Any
|
8300
8300
|
|
8301
8301
|
Parameters
|
8302
8302
|
----------
|
8303
8303
|
key: std::string const &
|
8304
8304
|
|
8305
8305
|
"""
|
8306
|
-
return _DriveTrainSwig.
|
8306
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_getDynamic(self, key)
|
8307
8307
|
|
8308
8308
|
def callDynamic(self, key, args):
|
8309
8309
|
r"""
|
8310
|
-
callDynamic(
|
8310
|
+
callDynamic(DriveTrain_Signals_TorqueConverterLockedUpOutput self, std::string const & key, AnyVector args) -> Any
|
8311
8311
|
|
8312
8312
|
Parameters
|
8313
8313
|
----------
|
@@ -8315,62 +8315,62 @@ class Signals_TorqueConverterLockedUpOutput(openplx.Physics.Signals_BoolOutput):
|
|
8315
8315
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8316
8316
|
|
8317
8317
|
"""
|
8318
|
-
return _DriveTrainSwig.
|
8318
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_callDynamic(self, key, args)
|
8319
8319
|
|
8320
8320
|
def extractObjectFieldsTo(self, output):
|
8321
8321
|
r"""
|
8322
|
-
extractObjectFieldsTo(
|
8322
|
+
extractObjectFieldsTo(DriveTrain_Signals_TorqueConverterLockedUpOutput self, ObjectVector output)
|
8323
8323
|
|
8324
8324
|
Parameters
|
8325
8325
|
----------
|
8326
8326
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8327
8327
|
|
8328
8328
|
"""
|
8329
|
-
return _DriveTrainSwig.
|
8329
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_extractObjectFieldsTo(self, output)
|
8330
8330
|
|
8331
8331
|
def extractEntriesTo(self, output):
|
8332
8332
|
r"""
|
8333
|
-
extractEntriesTo(
|
8333
|
+
extractEntriesTo(DriveTrain_Signals_TorqueConverterLockedUpOutput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8334
8334
|
|
8335
8335
|
Parameters
|
8336
8336
|
----------
|
8337
8337
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8338
8338
|
|
8339
8339
|
"""
|
8340
|
-
return _DriveTrainSwig.
|
8340
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_extractEntriesTo(self, output)
|
8341
8341
|
|
8342
8342
|
def triggerOnInit(self, context):
|
8343
8343
|
r"""
|
8344
|
-
triggerOnInit(
|
8344
|
+
triggerOnInit(DriveTrain_Signals_TorqueConverterLockedUpOutput self, openplx::RuntimeContext const & context)
|
8345
8345
|
|
8346
8346
|
Parameters
|
8347
8347
|
----------
|
8348
8348
|
context: openplx::RuntimeContext const &
|
8349
8349
|
|
8350
8350
|
"""
|
8351
|
-
return _DriveTrainSwig.
|
8352
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8351
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_triggerOnInit(self, context)
|
8352
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Signals_TorqueConverterLockedUpOutput
|
8353
8353
|
|
8354
|
-
# Register
|
8355
|
-
_DriveTrainSwig.
|
8354
|
+
# Register DriveTrain_Signals_TorqueConverterLockedUpOutput in _DriveTrainSwig:
|
8355
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterLockedUpOutput_swigregister(DriveTrain_Signals_TorqueConverterLockedUpOutput)
|
8356
8356
|
|
8357
|
-
class
|
8357
|
+
class DriveTrain_Signals_TorqueConverterPumpTorqueOutput(openplx.Physics.Physics_Signals_Output):
|
8358
8358
|
r"""Proxy of C++ openplx::DriveTrain::Signals::TorqueConverterPumpTorqueOutput class."""
|
8359
8359
|
|
8360
8360
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8361
8361
|
__repr__ = _swig_repr
|
8362
8362
|
|
8363
8363
|
def __init__(self):
|
8364
|
-
r"""__init__(
|
8365
|
-
_DriveTrainSwig.
|
8364
|
+
r"""__init__(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self) -> DriveTrain_Signals_TorqueConverterPumpTorqueOutput"""
|
8365
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_swiginit(self, _DriveTrainSwig.new_DriveTrain_Signals_TorqueConverterPumpTorqueOutput())
|
8366
8366
|
|
8367
8367
|
def torque_converter(self):
|
8368
|
-
r"""torque_converter(
|
8369
|
-
return _DriveTrainSwig.
|
8368
|
+
r"""torque_converter(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self) -> std::shared_ptr< openplx::DriveTrain::EmpiricalTorqueConverter >"""
|
8369
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_torque_converter(self)
|
8370
8370
|
|
8371
8371
|
def setDynamic(self, key, value):
|
8372
8372
|
r"""
|
8373
|
-
setDynamic(
|
8373
|
+
setDynamic(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, std::string const & key, Any value)
|
8374
8374
|
|
8375
8375
|
Parameters
|
8376
8376
|
----------
|
@@ -8378,22 +8378,22 @@ class Signals_TorqueConverterPumpTorqueOutput(openplx.Physics.Signals_Output):
|
|
8378
8378
|
value: openplx::Core::Any &&
|
8379
8379
|
|
8380
8380
|
"""
|
8381
|
-
return _DriveTrainSwig.
|
8381
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_setDynamic(self, key, value)
|
8382
8382
|
|
8383
8383
|
def getDynamic(self, key):
|
8384
8384
|
r"""
|
8385
|
-
getDynamic(
|
8385
|
+
getDynamic(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, std::string const & key) -> Any
|
8386
8386
|
|
8387
8387
|
Parameters
|
8388
8388
|
----------
|
8389
8389
|
key: std::string const &
|
8390
8390
|
|
8391
8391
|
"""
|
8392
|
-
return _DriveTrainSwig.
|
8392
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_getDynamic(self, key)
|
8393
8393
|
|
8394
8394
|
def callDynamic(self, key, args):
|
8395
8395
|
r"""
|
8396
|
-
callDynamic(
|
8396
|
+
callDynamic(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, std::string const & key, AnyVector args) -> Any
|
8397
8397
|
|
8398
8398
|
Parameters
|
8399
8399
|
----------
|
@@ -8401,62 +8401,62 @@ class Signals_TorqueConverterPumpTorqueOutput(openplx.Physics.Signals_Output):
|
|
8401
8401
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8402
8402
|
|
8403
8403
|
"""
|
8404
|
-
return _DriveTrainSwig.
|
8404
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_callDynamic(self, key, args)
|
8405
8405
|
|
8406
8406
|
def extractObjectFieldsTo(self, output):
|
8407
8407
|
r"""
|
8408
|
-
extractObjectFieldsTo(
|
8408
|
+
extractObjectFieldsTo(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, ObjectVector output)
|
8409
8409
|
|
8410
8410
|
Parameters
|
8411
8411
|
----------
|
8412
8412
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8413
8413
|
|
8414
8414
|
"""
|
8415
|
-
return _DriveTrainSwig.
|
8415
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_extractObjectFieldsTo(self, output)
|
8416
8416
|
|
8417
8417
|
def extractEntriesTo(self, output):
|
8418
8418
|
r"""
|
8419
|
-
extractEntriesTo(
|
8419
|
+
extractEntriesTo(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8420
8420
|
|
8421
8421
|
Parameters
|
8422
8422
|
----------
|
8423
8423
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8424
8424
|
|
8425
8425
|
"""
|
8426
|
-
return _DriveTrainSwig.
|
8426
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_extractEntriesTo(self, output)
|
8427
8427
|
|
8428
8428
|
def triggerOnInit(self, context):
|
8429
8429
|
r"""
|
8430
|
-
triggerOnInit(
|
8430
|
+
triggerOnInit(DriveTrain_Signals_TorqueConverterPumpTorqueOutput self, openplx::RuntimeContext const & context)
|
8431
8431
|
|
8432
8432
|
Parameters
|
8433
8433
|
----------
|
8434
8434
|
context: openplx::RuntimeContext const &
|
8435
8435
|
|
8436
8436
|
"""
|
8437
|
-
return _DriveTrainSwig.
|
8438
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8437
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_triggerOnInit(self, context)
|
8438
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Signals_TorqueConverterPumpTorqueOutput
|
8439
8439
|
|
8440
|
-
# Register
|
8441
|
-
_DriveTrainSwig.
|
8440
|
+
# Register DriveTrain_Signals_TorqueConverterPumpTorqueOutput in _DriveTrainSwig:
|
8441
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterPumpTorqueOutput_swigregister(DriveTrain_Signals_TorqueConverterPumpTorqueOutput)
|
8442
8442
|
|
8443
|
-
class
|
8443
|
+
class DriveTrain_Signals_TorqueConverterTurbineTorqueOutput(openplx.Physics.Physics_Signals_Output):
|
8444
8444
|
r"""Proxy of C++ openplx::DriveTrain::Signals::TorqueConverterTurbineTorqueOutput class."""
|
8445
8445
|
|
8446
8446
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8447
8447
|
__repr__ = _swig_repr
|
8448
8448
|
|
8449
8449
|
def __init__(self):
|
8450
|
-
r"""__init__(
|
8451
|
-
_DriveTrainSwig.
|
8450
|
+
r"""__init__(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self) -> DriveTrain_Signals_TorqueConverterTurbineTorqueOutput"""
|
8451
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_swiginit(self, _DriveTrainSwig.new_DriveTrain_Signals_TorqueConverterTurbineTorqueOutput())
|
8452
8452
|
|
8453
8453
|
def torque_converter(self):
|
8454
|
-
r"""torque_converter(
|
8455
|
-
return _DriveTrainSwig.
|
8454
|
+
r"""torque_converter(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self) -> std::shared_ptr< openplx::DriveTrain::EmpiricalTorqueConverter >"""
|
8455
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_torque_converter(self)
|
8456
8456
|
|
8457
8457
|
def setDynamic(self, key, value):
|
8458
8458
|
r"""
|
8459
|
-
setDynamic(
|
8459
|
+
setDynamic(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, std::string const & key, Any value)
|
8460
8460
|
|
8461
8461
|
Parameters
|
8462
8462
|
----------
|
@@ -8464,22 +8464,22 @@ class Signals_TorqueConverterTurbineTorqueOutput(openplx.Physics.Signals_Output)
|
|
8464
8464
|
value: openplx::Core::Any &&
|
8465
8465
|
|
8466
8466
|
"""
|
8467
|
-
return _DriveTrainSwig.
|
8467
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_setDynamic(self, key, value)
|
8468
8468
|
|
8469
8469
|
def getDynamic(self, key):
|
8470
8470
|
r"""
|
8471
|
-
getDynamic(
|
8471
|
+
getDynamic(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, std::string const & key) -> Any
|
8472
8472
|
|
8473
8473
|
Parameters
|
8474
8474
|
----------
|
8475
8475
|
key: std::string const &
|
8476
8476
|
|
8477
8477
|
"""
|
8478
|
-
return _DriveTrainSwig.
|
8478
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_getDynamic(self, key)
|
8479
8479
|
|
8480
8480
|
def callDynamic(self, key, args):
|
8481
8481
|
r"""
|
8482
|
-
callDynamic(
|
8482
|
+
callDynamic(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, std::string const & key, AnyVector args) -> Any
|
8483
8483
|
|
8484
8484
|
Parameters
|
8485
8485
|
----------
|
@@ -8487,62 +8487,62 @@ class Signals_TorqueConverterTurbineTorqueOutput(openplx.Physics.Signals_Output)
|
|
8487
8487
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8488
8488
|
|
8489
8489
|
"""
|
8490
|
-
return _DriveTrainSwig.
|
8490
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_callDynamic(self, key, args)
|
8491
8491
|
|
8492
8492
|
def extractObjectFieldsTo(self, output):
|
8493
8493
|
r"""
|
8494
|
-
extractObjectFieldsTo(
|
8494
|
+
extractObjectFieldsTo(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, ObjectVector output)
|
8495
8495
|
|
8496
8496
|
Parameters
|
8497
8497
|
----------
|
8498
8498
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8499
8499
|
|
8500
8500
|
"""
|
8501
|
-
return _DriveTrainSwig.
|
8501
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_extractObjectFieldsTo(self, output)
|
8502
8502
|
|
8503
8503
|
def extractEntriesTo(self, output):
|
8504
8504
|
r"""
|
8505
|
-
extractEntriesTo(
|
8505
|
+
extractEntriesTo(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8506
8506
|
|
8507
8507
|
Parameters
|
8508
8508
|
----------
|
8509
8509
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8510
8510
|
|
8511
8511
|
"""
|
8512
|
-
return _DriveTrainSwig.
|
8512
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_extractEntriesTo(self, output)
|
8513
8513
|
|
8514
8514
|
def triggerOnInit(self, context):
|
8515
8515
|
r"""
|
8516
|
-
triggerOnInit(
|
8516
|
+
triggerOnInit(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput self, openplx::RuntimeContext const & context)
|
8517
8517
|
|
8518
8518
|
Parameters
|
8519
8519
|
----------
|
8520
8520
|
context: openplx::RuntimeContext const &
|
8521
8521
|
|
8522
8522
|
"""
|
8523
|
-
return _DriveTrainSwig.
|
8524
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8523
|
+
return _DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_triggerOnInit(self, context)
|
8524
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_Signals_TorqueConverterTurbineTorqueOutput
|
8525
8525
|
|
8526
|
-
# Register
|
8527
|
-
_DriveTrainSwig.
|
8526
|
+
# Register DriveTrain_Signals_TorqueConverterTurbineTorqueOutput in _DriveTrainSwig:
|
8527
|
+
_DriveTrainSwig.DriveTrain_Signals_TorqueConverterTurbineTorqueOutput_swigregister(DriveTrain_Signals_TorqueConverterTurbineTorqueOutput)
|
8528
8528
|
|
8529
|
-
class
|
8529
|
+
class DriveTrain_TorqueLimitedSlipDifferential(DriveTrain_Differential):
|
8530
8530
|
r"""Proxy of C++ openplx::DriveTrain::TorqueLimitedSlipDifferential class."""
|
8531
8531
|
|
8532
8532
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8533
8533
|
__repr__ = _swig_repr
|
8534
8534
|
|
8535
8535
|
def __init__(self):
|
8536
|
-
r"""__init__(
|
8537
|
-
_DriveTrainSwig.
|
8536
|
+
r"""__init__(DriveTrain_TorqueLimitedSlipDifferential self) -> DriveTrain_TorqueLimitedSlipDifferential"""
|
8537
|
+
_DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_swiginit(self, _DriveTrainSwig.new_DriveTrain_TorqueLimitedSlipDifferential())
|
8538
8538
|
|
8539
8539
|
def breakaway_torque(self):
|
8540
|
-
r"""breakaway_torque(
|
8541
|
-
return _DriveTrainSwig.
|
8540
|
+
r"""breakaway_torque(DriveTrain_TorqueLimitedSlipDifferential self) -> double"""
|
8541
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_breakaway_torque(self)
|
8542
8542
|
|
8543
8543
|
def setDynamic(self, key, value):
|
8544
8544
|
r"""
|
8545
|
-
setDynamic(
|
8545
|
+
setDynamic(DriveTrain_TorqueLimitedSlipDifferential self, std::string const & key, Any value)
|
8546
8546
|
|
8547
8547
|
Parameters
|
8548
8548
|
----------
|
@@ -8550,22 +8550,22 @@ class TorqueLimitedSlipDifferential(Differential):
|
|
8550
8550
|
value: openplx::Core::Any &&
|
8551
8551
|
|
8552
8552
|
"""
|
8553
|
-
return _DriveTrainSwig.
|
8553
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_setDynamic(self, key, value)
|
8554
8554
|
|
8555
8555
|
def getDynamic(self, key):
|
8556
8556
|
r"""
|
8557
|
-
getDynamic(
|
8557
|
+
getDynamic(DriveTrain_TorqueLimitedSlipDifferential self, std::string const & key) -> Any
|
8558
8558
|
|
8559
8559
|
Parameters
|
8560
8560
|
----------
|
8561
8561
|
key: std::string const &
|
8562
8562
|
|
8563
8563
|
"""
|
8564
|
-
return _DriveTrainSwig.
|
8564
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_getDynamic(self, key)
|
8565
8565
|
|
8566
8566
|
def callDynamic(self, key, args):
|
8567
8567
|
r"""
|
8568
|
-
callDynamic(
|
8568
|
+
callDynamic(DriveTrain_TorqueLimitedSlipDifferential self, std::string const & key, AnyVector args) -> Any
|
8569
8569
|
|
8570
8570
|
Parameters
|
8571
8571
|
----------
|
@@ -8573,66 +8573,66 @@ class TorqueLimitedSlipDifferential(Differential):
|
|
8573
8573
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8574
8574
|
|
8575
8575
|
"""
|
8576
|
-
return _DriveTrainSwig.
|
8576
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_callDynamic(self, key, args)
|
8577
8577
|
|
8578
8578
|
def extractObjectFieldsTo(self, output):
|
8579
8579
|
r"""
|
8580
|
-
extractObjectFieldsTo(
|
8580
|
+
extractObjectFieldsTo(DriveTrain_TorqueLimitedSlipDifferential self, ObjectVector output)
|
8581
8581
|
|
8582
8582
|
Parameters
|
8583
8583
|
----------
|
8584
8584
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8585
8585
|
|
8586
8586
|
"""
|
8587
|
-
return _DriveTrainSwig.
|
8587
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_extractObjectFieldsTo(self, output)
|
8588
8588
|
|
8589
8589
|
def extractEntriesTo(self, output):
|
8590
8590
|
r"""
|
8591
|
-
extractEntriesTo(
|
8591
|
+
extractEntriesTo(DriveTrain_TorqueLimitedSlipDifferential self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8592
8592
|
|
8593
8593
|
Parameters
|
8594
8594
|
----------
|
8595
8595
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8596
8596
|
|
8597
8597
|
"""
|
8598
|
-
return _DriveTrainSwig.
|
8598
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_extractEntriesTo(self, output)
|
8599
8599
|
|
8600
8600
|
def triggerOnInit(self, context):
|
8601
8601
|
r"""
|
8602
|
-
triggerOnInit(
|
8602
|
+
triggerOnInit(DriveTrain_TorqueLimitedSlipDifferential self, openplx::RuntimeContext const & context)
|
8603
8603
|
|
8604
8604
|
Parameters
|
8605
8605
|
----------
|
8606
8606
|
context: openplx::RuntimeContext const &
|
8607
8607
|
|
8608
8608
|
"""
|
8609
|
-
return _DriveTrainSwig.
|
8610
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8609
|
+
return _DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_triggerOnInit(self, context)
|
8610
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_TorqueLimitedSlipDifferential
|
8611
8611
|
|
8612
|
-
# Register
|
8613
|
-
_DriveTrainSwig.
|
8612
|
+
# Register DriveTrain_TorqueLimitedSlipDifferential in _DriveTrainSwig:
|
8613
|
+
_DriveTrainSwig.DriveTrain_TorqueLimitedSlipDifferential_swigregister(DriveTrain_TorqueLimitedSlipDifferential)
|
8614
8614
|
|
8615
|
-
class
|
8615
|
+
class DriveTrain_TorqueMotor(openplx.Physics.Physics_Interactions_Interaction1DOF):
|
8616
8616
|
r"""Proxy of C++ openplx::DriveTrain::TorqueMotor class."""
|
8617
8617
|
|
8618
8618
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8619
8619
|
__repr__ = _swig_repr
|
8620
8620
|
|
8621
8621
|
def __init__(self):
|
8622
|
-
r"""__init__(
|
8623
|
-
_DriveTrainSwig.
|
8622
|
+
r"""__init__(DriveTrain_TorqueMotor self) -> DriveTrain_TorqueMotor"""
|
8623
|
+
_DriveTrainSwig.DriveTrain_TorqueMotor_swiginit(self, _DriveTrainSwig.new_DriveTrain_TorqueMotor())
|
8624
8624
|
|
8625
8625
|
def torque_input(self):
|
8626
|
-
r"""torque_input(
|
8627
|
-
return _DriveTrainSwig.
|
8626
|
+
r"""torque_input(DriveTrain_TorqueMotor self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DInput >"""
|
8627
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_torque_input(self)
|
8628
8628
|
|
8629
8629
|
def torque_output(self):
|
8630
|
-
r"""torque_output(
|
8631
|
-
return _DriveTrainSwig.
|
8630
|
+
r"""torque_output(DriveTrain_TorqueMotor self) -> std::shared_ptr< openplx::Physics::Signals::Torque1DOutput >"""
|
8631
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_torque_output(self)
|
8632
8632
|
|
8633
8633
|
def setDynamic(self, key, value):
|
8634
8634
|
r"""
|
8635
|
-
setDynamic(
|
8635
|
+
setDynamic(DriveTrain_TorqueMotor self, std::string const & key, Any value)
|
8636
8636
|
|
8637
8637
|
Parameters
|
8638
8638
|
----------
|
@@ -8640,22 +8640,22 @@ class TorqueMotor(openplx.Physics.Interactions_Interaction1DOF):
|
|
8640
8640
|
value: openplx::Core::Any &&
|
8641
8641
|
|
8642
8642
|
"""
|
8643
|
-
return _DriveTrainSwig.
|
8643
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_setDynamic(self, key, value)
|
8644
8644
|
|
8645
8645
|
def getDynamic(self, key):
|
8646
8646
|
r"""
|
8647
|
-
getDynamic(
|
8647
|
+
getDynamic(DriveTrain_TorqueMotor self, std::string const & key) -> Any
|
8648
8648
|
|
8649
8649
|
Parameters
|
8650
8650
|
----------
|
8651
8651
|
key: std::string const &
|
8652
8652
|
|
8653
8653
|
"""
|
8654
|
-
return _DriveTrainSwig.
|
8654
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_getDynamic(self, key)
|
8655
8655
|
|
8656
8656
|
def callDynamic(self, key, args):
|
8657
8657
|
r"""
|
8658
|
-
callDynamic(
|
8658
|
+
callDynamic(DriveTrain_TorqueMotor self, std::string const & key, AnyVector args) -> Any
|
8659
8659
|
|
8660
8660
|
Parameters
|
8661
8661
|
----------
|
@@ -8663,66 +8663,66 @@ class TorqueMotor(openplx.Physics.Interactions_Interaction1DOF):
|
|
8663
8663
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8664
8664
|
|
8665
8665
|
"""
|
8666
|
-
return _DriveTrainSwig.
|
8666
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_callDynamic(self, key, args)
|
8667
8667
|
|
8668
8668
|
def extractObjectFieldsTo(self, output):
|
8669
8669
|
r"""
|
8670
|
-
extractObjectFieldsTo(
|
8670
|
+
extractObjectFieldsTo(DriveTrain_TorqueMotor self, ObjectVector output)
|
8671
8671
|
|
8672
8672
|
Parameters
|
8673
8673
|
----------
|
8674
8674
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8675
8675
|
|
8676
8676
|
"""
|
8677
|
-
return _DriveTrainSwig.
|
8677
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_extractObjectFieldsTo(self, output)
|
8678
8678
|
|
8679
8679
|
def extractEntriesTo(self, output):
|
8680
8680
|
r"""
|
8681
|
-
extractEntriesTo(
|
8681
|
+
extractEntriesTo(DriveTrain_TorqueMotor self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8682
8682
|
|
8683
8683
|
Parameters
|
8684
8684
|
----------
|
8685
8685
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8686
8686
|
|
8687
8687
|
"""
|
8688
|
-
return _DriveTrainSwig.
|
8688
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_extractEntriesTo(self, output)
|
8689
8689
|
|
8690
8690
|
def triggerOnInit(self, context):
|
8691
8691
|
r"""
|
8692
|
-
triggerOnInit(
|
8692
|
+
triggerOnInit(DriveTrain_TorqueMotor self, openplx::RuntimeContext const & context)
|
8693
8693
|
|
8694
8694
|
Parameters
|
8695
8695
|
----------
|
8696
8696
|
context: openplx::RuntimeContext const &
|
8697
8697
|
|
8698
8698
|
"""
|
8699
|
-
return _DriveTrainSwig.
|
8700
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8699
|
+
return _DriveTrainSwig.DriveTrain_TorqueMotor_triggerOnInit(self, context)
|
8700
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_TorqueMotor
|
8701
8701
|
|
8702
|
-
# Register
|
8703
|
-
_DriveTrainSwig.
|
8702
|
+
# Register DriveTrain_TorqueMotor in _DriveTrainSwig:
|
8703
|
+
_DriveTrainSwig.DriveTrain_TorqueMotor_swigregister(DriveTrain_TorqueMotor)
|
8704
8704
|
|
8705
|
-
class
|
8705
|
+
class DriveTrain_VelocityRatioGeometryFactorPair(openplx.Core.Object):
|
8706
8706
|
r"""Proxy of C++ openplx::DriveTrain::VelocityRatioGeometryFactorPair class."""
|
8707
8707
|
|
8708
8708
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8709
8709
|
__repr__ = _swig_repr
|
8710
8710
|
|
8711
8711
|
def __init__(self):
|
8712
|
-
r"""__init__(
|
8713
|
-
_DriveTrainSwig.
|
8712
|
+
r"""__init__(DriveTrain_VelocityRatioGeometryFactorPair self) -> DriveTrain_VelocityRatioGeometryFactorPair"""
|
8713
|
+
_DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_swiginit(self, _DriveTrainSwig.new_DriveTrain_VelocityRatioGeometryFactorPair())
|
8714
8714
|
|
8715
8715
|
def velocity_ratio(self):
|
8716
|
-
r"""velocity_ratio(
|
8717
|
-
return _DriveTrainSwig.
|
8716
|
+
r"""velocity_ratio(DriveTrain_VelocityRatioGeometryFactorPair self) -> double"""
|
8717
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_velocity_ratio(self)
|
8718
8718
|
|
8719
8719
|
def geometry_factor(self):
|
8720
|
-
r"""geometry_factor(
|
8721
|
-
return _DriveTrainSwig.
|
8720
|
+
r"""geometry_factor(DriveTrain_VelocityRatioGeometryFactorPair self) -> double"""
|
8721
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_geometry_factor(self)
|
8722
8722
|
|
8723
8723
|
def setDynamic(self, key, value):
|
8724
8724
|
r"""
|
8725
|
-
setDynamic(
|
8725
|
+
setDynamic(DriveTrain_VelocityRatioGeometryFactorPair self, std::string const & key, Any value)
|
8726
8726
|
|
8727
8727
|
Parameters
|
8728
8728
|
----------
|
@@ -8730,22 +8730,22 @@ class VelocityRatioGeometryFactorPair(openplx.Core.Object):
|
|
8730
8730
|
value: openplx::Core::Any &&
|
8731
8731
|
|
8732
8732
|
"""
|
8733
|
-
return _DriveTrainSwig.
|
8733
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_setDynamic(self, key, value)
|
8734
8734
|
|
8735
8735
|
def getDynamic(self, key):
|
8736
8736
|
r"""
|
8737
|
-
getDynamic(
|
8737
|
+
getDynamic(DriveTrain_VelocityRatioGeometryFactorPair self, std::string const & key) -> Any
|
8738
8738
|
|
8739
8739
|
Parameters
|
8740
8740
|
----------
|
8741
8741
|
key: std::string const &
|
8742
8742
|
|
8743
8743
|
"""
|
8744
|
-
return _DriveTrainSwig.
|
8744
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_getDynamic(self, key)
|
8745
8745
|
|
8746
8746
|
def callDynamic(self, key, args):
|
8747
8747
|
r"""
|
8748
|
-
callDynamic(
|
8748
|
+
callDynamic(DriveTrain_VelocityRatioGeometryFactorPair self, std::string const & key, AnyVector args) -> Any
|
8749
8749
|
|
8750
8750
|
Parameters
|
8751
8751
|
----------
|
@@ -8753,66 +8753,66 @@ class VelocityRatioGeometryFactorPair(openplx.Core.Object):
|
|
8753
8753
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8754
8754
|
|
8755
8755
|
"""
|
8756
|
-
return _DriveTrainSwig.
|
8756
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_callDynamic(self, key, args)
|
8757
8757
|
|
8758
8758
|
def extractObjectFieldsTo(self, output):
|
8759
8759
|
r"""
|
8760
|
-
extractObjectFieldsTo(
|
8760
|
+
extractObjectFieldsTo(DriveTrain_VelocityRatioGeometryFactorPair self, ObjectVector output)
|
8761
8761
|
|
8762
8762
|
Parameters
|
8763
8763
|
----------
|
8764
8764
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8765
8765
|
|
8766
8766
|
"""
|
8767
|
-
return _DriveTrainSwig.
|
8767
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_extractObjectFieldsTo(self, output)
|
8768
8768
|
|
8769
8769
|
def extractEntriesTo(self, output):
|
8770
8770
|
r"""
|
8771
|
-
extractEntriesTo(
|
8771
|
+
extractEntriesTo(DriveTrain_VelocityRatioGeometryFactorPair self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8772
8772
|
|
8773
8773
|
Parameters
|
8774
8774
|
----------
|
8775
8775
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8776
8776
|
|
8777
8777
|
"""
|
8778
|
-
return _DriveTrainSwig.
|
8778
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_extractEntriesTo(self, output)
|
8779
8779
|
|
8780
8780
|
def triggerOnInit(self, context):
|
8781
8781
|
r"""
|
8782
|
-
triggerOnInit(
|
8782
|
+
triggerOnInit(DriveTrain_VelocityRatioGeometryFactorPair self, openplx::RuntimeContext const & context)
|
8783
8783
|
|
8784
8784
|
Parameters
|
8785
8785
|
----------
|
8786
8786
|
context: openplx::RuntimeContext const &
|
8787
8787
|
|
8788
8788
|
"""
|
8789
|
-
return _DriveTrainSwig.
|
8790
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8789
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_triggerOnInit(self, context)
|
8790
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_VelocityRatioGeometryFactorPair
|
8791
8791
|
|
8792
|
-
# Register
|
8793
|
-
_DriveTrainSwig.
|
8792
|
+
# Register DriveTrain_VelocityRatioGeometryFactorPair in _DriveTrainSwig:
|
8793
|
+
_DriveTrainSwig.DriveTrain_VelocityRatioGeometryFactorPair_swigregister(DriveTrain_VelocityRatioGeometryFactorPair)
|
8794
8794
|
|
8795
|
-
class
|
8795
|
+
class DriveTrain_VelocityRatioTorqueMultiplicationPair(openplx.Core.Object):
|
8796
8796
|
r"""Proxy of C++ openplx::DriveTrain::VelocityRatioTorqueMultiplicationPair class."""
|
8797
8797
|
|
8798
8798
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8799
8799
|
__repr__ = _swig_repr
|
8800
8800
|
|
8801
8801
|
def __init__(self):
|
8802
|
-
r"""__init__(
|
8803
|
-
_DriveTrainSwig.
|
8802
|
+
r"""__init__(DriveTrain_VelocityRatioTorqueMultiplicationPair self) -> DriveTrain_VelocityRatioTorqueMultiplicationPair"""
|
8803
|
+
_DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_swiginit(self, _DriveTrainSwig.new_DriveTrain_VelocityRatioTorqueMultiplicationPair())
|
8804
8804
|
|
8805
8805
|
def velocity_ratio(self):
|
8806
|
-
r"""velocity_ratio(
|
8807
|
-
return _DriveTrainSwig.
|
8806
|
+
r"""velocity_ratio(DriveTrain_VelocityRatioTorqueMultiplicationPair self) -> double"""
|
8807
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_velocity_ratio(self)
|
8808
8808
|
|
8809
8809
|
def multiplier(self):
|
8810
|
-
r"""multiplier(
|
8811
|
-
return _DriveTrainSwig.
|
8810
|
+
r"""multiplier(DriveTrain_VelocityRatioTorqueMultiplicationPair self) -> double"""
|
8811
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_multiplier(self)
|
8812
8812
|
|
8813
8813
|
def setDynamic(self, key, value):
|
8814
8814
|
r"""
|
8815
|
-
setDynamic(
|
8815
|
+
setDynamic(DriveTrain_VelocityRatioTorqueMultiplicationPair self, std::string const & key, Any value)
|
8816
8816
|
|
8817
8817
|
Parameters
|
8818
8818
|
----------
|
@@ -8820,22 +8820,22 @@ class VelocityRatioTorqueMultiplicationPair(openplx.Core.Object):
|
|
8820
8820
|
value: openplx::Core::Any &&
|
8821
8821
|
|
8822
8822
|
"""
|
8823
|
-
return _DriveTrainSwig.
|
8823
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_setDynamic(self, key, value)
|
8824
8824
|
|
8825
8825
|
def getDynamic(self, key):
|
8826
8826
|
r"""
|
8827
|
-
getDynamic(
|
8827
|
+
getDynamic(DriveTrain_VelocityRatioTorqueMultiplicationPair self, std::string const & key) -> Any
|
8828
8828
|
|
8829
8829
|
Parameters
|
8830
8830
|
----------
|
8831
8831
|
key: std::string const &
|
8832
8832
|
|
8833
8833
|
"""
|
8834
|
-
return _DriveTrainSwig.
|
8834
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_getDynamic(self, key)
|
8835
8835
|
|
8836
8836
|
def callDynamic(self, key, args):
|
8837
8837
|
r"""
|
8838
|
-
callDynamic(
|
8838
|
+
callDynamic(DriveTrain_VelocityRatioTorqueMultiplicationPair self, std::string const & key, AnyVector args) -> Any
|
8839
8839
|
|
8840
8840
|
Parameters
|
8841
8841
|
----------
|
@@ -8843,62 +8843,62 @@ class VelocityRatioTorqueMultiplicationPair(openplx.Core.Object):
|
|
8843
8843
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8844
8844
|
|
8845
8845
|
"""
|
8846
|
-
return _DriveTrainSwig.
|
8846
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_callDynamic(self, key, args)
|
8847
8847
|
|
8848
8848
|
def extractObjectFieldsTo(self, output):
|
8849
8849
|
r"""
|
8850
|
-
extractObjectFieldsTo(
|
8850
|
+
extractObjectFieldsTo(DriveTrain_VelocityRatioTorqueMultiplicationPair self, ObjectVector output)
|
8851
8851
|
|
8852
8852
|
Parameters
|
8853
8853
|
----------
|
8854
8854
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8855
8855
|
|
8856
8856
|
"""
|
8857
|
-
return _DriveTrainSwig.
|
8857
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_extractObjectFieldsTo(self, output)
|
8858
8858
|
|
8859
8859
|
def extractEntriesTo(self, output):
|
8860
8860
|
r"""
|
8861
|
-
extractEntriesTo(
|
8861
|
+
extractEntriesTo(DriveTrain_VelocityRatioTorqueMultiplicationPair self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8862
8862
|
|
8863
8863
|
Parameters
|
8864
8864
|
----------
|
8865
8865
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8866
8866
|
|
8867
8867
|
"""
|
8868
|
-
return _DriveTrainSwig.
|
8868
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_extractEntriesTo(self, output)
|
8869
8869
|
|
8870
8870
|
def triggerOnInit(self, context):
|
8871
8871
|
r"""
|
8872
|
-
triggerOnInit(
|
8872
|
+
triggerOnInit(DriveTrain_VelocityRatioTorqueMultiplicationPair self, openplx::RuntimeContext const & context)
|
8873
8873
|
|
8874
8874
|
Parameters
|
8875
8875
|
----------
|
8876
8876
|
context: openplx::RuntimeContext const &
|
8877
8877
|
|
8878
8878
|
"""
|
8879
|
-
return _DriveTrainSwig.
|
8880
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8879
|
+
return _DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_triggerOnInit(self, context)
|
8880
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_VelocityRatioTorqueMultiplicationPair
|
8881
8881
|
|
8882
|
-
# Register
|
8883
|
-
_DriveTrainSwig.
|
8882
|
+
# Register DriveTrain_VelocityRatioTorqueMultiplicationPair in _DriveTrainSwig:
|
8883
|
+
_DriveTrainSwig.DriveTrain_VelocityRatioTorqueMultiplicationPair_swigregister(DriveTrain_VelocityRatioTorqueMultiplicationPair)
|
8884
8884
|
|
8885
|
-
class
|
8885
|
+
class DriveTrain_ViscousGear(DriveTrain_Gear):
|
8886
8886
|
r"""Proxy of C++ openplx::DriveTrain::ViscousGear class."""
|
8887
8887
|
|
8888
8888
|
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
|
8889
8889
|
__repr__ = _swig_repr
|
8890
8890
|
|
8891
8891
|
def __init__(self):
|
8892
|
-
r"""__init__(
|
8893
|
-
_DriveTrainSwig.
|
8892
|
+
r"""__init__(DriveTrain_ViscousGear self) -> DriveTrain_ViscousGear"""
|
8893
|
+
_DriveTrainSwig.DriveTrain_ViscousGear_swiginit(self, _DriveTrainSwig.new_DriveTrain_ViscousGear())
|
8894
8894
|
|
8895
8895
|
def dissipation(self):
|
8896
|
-
r"""dissipation(
|
8897
|
-
return _DriveTrainSwig.
|
8896
|
+
r"""dissipation(DriveTrain_ViscousGear self) -> std::shared_ptr< openplx::Physics::Interactions::Dissipation::ConstantViscousSurfaceFriction >"""
|
8897
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_dissipation(self)
|
8898
8898
|
|
8899
8899
|
def setDynamic(self, key, value):
|
8900
8900
|
r"""
|
8901
|
-
setDynamic(
|
8901
|
+
setDynamic(DriveTrain_ViscousGear self, std::string const & key, Any value)
|
8902
8902
|
|
8903
8903
|
Parameters
|
8904
8904
|
----------
|
@@ -8906,22 +8906,22 @@ class ViscousGear(Gear):
|
|
8906
8906
|
value: openplx::Core::Any &&
|
8907
8907
|
|
8908
8908
|
"""
|
8909
|
-
return _DriveTrainSwig.
|
8909
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_setDynamic(self, key, value)
|
8910
8910
|
|
8911
8911
|
def getDynamic(self, key):
|
8912
8912
|
r"""
|
8913
|
-
getDynamic(
|
8913
|
+
getDynamic(DriveTrain_ViscousGear self, std::string const & key) -> Any
|
8914
8914
|
|
8915
8915
|
Parameters
|
8916
8916
|
----------
|
8917
8917
|
key: std::string const &
|
8918
8918
|
|
8919
8919
|
"""
|
8920
|
-
return _DriveTrainSwig.
|
8920
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_getDynamic(self, key)
|
8921
8921
|
|
8922
8922
|
def callDynamic(self, key, args):
|
8923
8923
|
r"""
|
8924
|
-
callDynamic(
|
8924
|
+
callDynamic(DriveTrain_ViscousGear self, std::string const & key, AnyVector args) -> Any
|
8925
8925
|
|
8926
8926
|
Parameters
|
8927
8927
|
----------
|
@@ -8929,44 +8929,44 @@ class ViscousGear(Gear):
|
|
8929
8929
|
args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
|
8930
8930
|
|
8931
8931
|
"""
|
8932
|
-
return _DriveTrainSwig.
|
8932
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_callDynamic(self, key, args)
|
8933
8933
|
|
8934
8934
|
def extractObjectFieldsTo(self, output):
|
8935
8935
|
r"""
|
8936
|
-
extractObjectFieldsTo(
|
8936
|
+
extractObjectFieldsTo(DriveTrain_ViscousGear self, ObjectVector output)
|
8937
8937
|
|
8938
8938
|
Parameters
|
8939
8939
|
----------
|
8940
8940
|
output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
|
8941
8941
|
|
8942
8942
|
"""
|
8943
|
-
return _DriveTrainSwig.
|
8943
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_extractObjectFieldsTo(self, output)
|
8944
8944
|
|
8945
8945
|
def extractEntriesTo(self, output):
|
8946
8946
|
r"""
|
8947
|
-
extractEntriesTo(
|
8947
|
+
extractEntriesTo(DriveTrain_ViscousGear self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
|
8948
8948
|
|
8949
8949
|
Parameters
|
8950
8950
|
----------
|
8951
8951
|
output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
|
8952
8952
|
|
8953
8953
|
"""
|
8954
|
-
return _DriveTrainSwig.
|
8954
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_extractEntriesTo(self, output)
|
8955
8955
|
|
8956
8956
|
def triggerOnInit(self, context):
|
8957
8957
|
r"""
|
8958
|
-
triggerOnInit(
|
8958
|
+
triggerOnInit(DriveTrain_ViscousGear self, openplx::RuntimeContext const & context)
|
8959
8959
|
|
8960
8960
|
Parameters
|
8961
8961
|
----------
|
8962
8962
|
context: openplx::RuntimeContext const &
|
8963
8963
|
|
8964
8964
|
"""
|
8965
|
-
return _DriveTrainSwig.
|
8966
|
-
__swig_destroy__ = _DriveTrainSwig.
|
8965
|
+
return _DriveTrainSwig.DriveTrain_ViscousGear_triggerOnInit(self, context)
|
8966
|
+
__swig_destroy__ = _DriveTrainSwig.delete_DriveTrain_ViscousGear
|
8967
8967
|
|
8968
|
-
# Register
|
8969
|
-
_DriveTrainSwig.
|
8968
|
+
# Register DriveTrain_ViscousGear in _DriveTrainSwig:
|
8969
|
+
_DriveTrainSwig.DriveTrain_ViscousGear_swigregister(DriveTrain_ViscousGear)
|
8970
8970
|
|
8971
8971
|
|
8972
8972
|
|