Home
last modified time | relevance | path

Searched refs:m_motorSpeed (Results 1 – 25 of 120) sorted by relevance

12345

/dports/science/chrono/chrono-7.0.1/src/chrono_models/vehicle/generic/
H A DGeneric_SimpleMapPowertrain.cpp30 m_motorSpeed(0), in Generic_SimpleMapPowertrain()
59 m_motorSpeed = shaft_speed / m_current_gear_ratio; in Synchronize()
60 m_motorSpeed = m_motorSpeed > (8000. * CH_C_PI / 30.) ? (8000. * CH_C_PI / 30.) : m_motorSpeed; in Synchronize()
61 m_motorSpeed = m_motorSpeed < 0.0 ? 0.0 : m_motorSpeed; in Synchronize()
68 m_zeroThrottleMap.Evaluate(m_motorSpeed, zeroThrottleTorque, curve_dot, curve_ddot); in Synchronize()
69 m_fullThrottleMap.Evaluate(m_motorSpeed, fullThrottleTorque, curve_dot, curve_ddot); in Synchronize()
H A DGeneric_SimpleMapPowertrain.h51 virtual double GetMotorSpeed() const override { return m_motorSpeed; } in GetMotorSpeed()
94 double m_motorSpeed; variable
/dports/science/chrono/chrono-7.0.1/src/chrono_vehicle/powertrain/
H A DChSimpleCVTPowertrain.cpp28 …: ChPowertrain(name), m_motorSpeed(0), m_motorTorque(0), m_shaftTorque(0), m_critical_speed(1e4) {} in ChSimpleCVTPowertrain()
37 m_motorSpeed = std::abs(shaft_speed / m_current_gear_ratio); in Synchronize()
41 if (m_motorSpeed <= m_critical_speed) { in Synchronize()
44 m_motorTorque = GetMaxPower() / m_motorSpeed; in Synchronize()
47 if (m_motorSpeed >= GetMaxSpeed()) { in Synchronize()
H A DChSimplePowertrain.cpp28 : ChPowertrain(name), m_motorSpeed(0), m_motorTorque(0), m_shaftTorque(0) {} in ChSimplePowertrain()
32 m_motorSpeed = shaft_speed / m_current_gear_ratio; in Synchronize()
36 m_motorTorque = GetMaxTorque() - m_motorSpeed * (GetMaxTorque() / GetMaxSpeed()); in Synchronize()
H A DChSimplePowertrain.h47 virtual double GetMotorSpeed() const override { return m_motorSpeed; } in GetMotorSpeed()
92 double m_motorSpeed; variable
H A DChSimpleCVTPowertrain.h47 virtual double GetMotorSpeed() const override { return m_motorSpeed; } in GetMotorSpeed()
98 double m_motorSpeed; variable
/dports/misc/box2d/box2d-2.4.1/testbed/tests/
H A Dprismatic_joint.cpp45 m_motorSpeed = 10.0f; in PrismaticJoint()
64 pjd.motorSpeed = m_motorSpeed; in PrismaticJoint()
91 if (ImGui::SliderFloat("Speed", &m_motorSpeed, -100.0f, 100.0f, "%.0f")) in UpdateUI()
93 m_joint->SetMotorSpeed(m_motorSpeed); in UpdateUI()
113 float m_motorSpeed; member in PrismaticJoint
H A Dwheel_joint.cpp45 m_motorSpeed = 10.0f; in WheelJoint()
63 jd.motorSpeed = m_motorSpeed; in WheelJoint()
107 if (ImGui::SliderFloat("Speed", &m_motorSpeed, -100.0f, 100.0f, "%.0f")) in UpdateUI()
109 m_joint->SetMotorSpeed(m_motorSpeed); in UpdateUI()
121 float m_motorSpeed; member in WheelJoint
H A Drevolute_joint.cpp49 m_motorSpeed = 1.0f; in RevoluteJoint()
63 jd.motorSpeed = m_motorSpeed; in RevoluteJoint()
128 if (ImGui::SliderFloat("Speed", &m_motorSpeed, -20.0f, 20.0f, "%.0f")) in UpdateUI()
130 m_joint1->SetMotorSpeed(m_motorSpeed); in UpdateUI()
157 float m_motorSpeed; member in RevoluteJoint
H A Dtheo_jansen.cpp132 m_motorSpeed = 2.0f; in TheoJansen()
201 jd.motorSpeed = m_motorSpeed; in TheoJansen()
236 m_motorJoint->SetMotorSpeed(-m_motorSpeed); in Keyboard()
244 m_motorJoint->SetMotorSpeed(m_motorSpeed); in Keyboard()
263 float m_motorSpeed; member in TheoJansen
/dports/science/chrono/chrono-7.0.1/src/chrono_models/vehicle/gator/
H A DGator_SimplePowertrain.cpp38 : ChPowertrain(name), m_motorSpeed(0), m_motorTorque(0), m_shaftTorque(0) {} in Gator_SimplePowertrain()
47 m_motorSpeed = std::abs(shaft_speed) / std::abs(m_current_gear_ratio); in Synchronize()
50 m_motorTorque = m_max_torque - m_motorSpeed * (m_max_torque / m_max_speed); in Synchronize()
H A DGator_SimplePowertrain.h44 virtual double GetMotorSpeed() const override { return m_motorSpeed; } in GetMotorSpeed()
56 double m_motorSpeed; variable
/dports/x11-toolkits/qml-box2d/qml-box2d-21e57f/
H A Dbox2dwheeljoint.cpp36 , m_motorSpeed(0.0f) in Box2DWheelJoint()
102 if (m_motorSpeed == motorSpeed) in setMotorSpeed()
105 m_motorSpeed = motorSpeed; in setMotorSpeed()
159 jointDef.motorSpeed = toRadians(m_motorSpeed); in createJoint()
H A Dbox2drevolutejoint.cpp39 , m_motorSpeed(0.0f) in Box2DRevoluteJoint()
128 if (m_motorSpeed == motorSpeed) in setMotorSpeed()
131 m_motorSpeed = motorSpeed; in setMotorSpeed()
179 jointDef.motorSpeed = toRadians(m_motorSpeed); in createJoint()
H A Dbox2dprismaticjoint.cpp39 , m_motorSpeed(0.0f) in Box2DPrismaticJoint()
116 if (m_motorSpeed == motorSpeed) in setMotorSpeed()
119 m_motorSpeed = motorSpeed; in setMotorSpeed()
192 jointDef.motorSpeed = toRadians(m_motorSpeed); in createJoint()
/dports/devel/juce/JUCE-f37e9a1/examples/Assets/Box2DTests/
H A DTheoJansen.h122 m_motorSpeed = 2.0f; in TheoJansen()
191 jd.motorSpeed = m_motorSpeed; in TheoJansen()
226 m_motorJoint->SetMotorSpeed(-m_motorSpeed); in Keyboard()
234 m_motorJoint->SetMotorSpeed(m_motorSpeed); in Keyboard()
253 float32 m_motorSpeed; variable
/dports/devel/juce/JUCE-f37e9a1/examples/DemoRunner/Builds/Android/app/src/main/assets/Box2DTests/
H A DTheoJansen.h122 m_motorSpeed = 2.0f; in TheoJansen()
191 jd.motorSpeed = m_motorSpeed; in TheoJansen()
226 m_motorJoint->SetMotorSpeed(-m_motorSpeed); in Keyboard()
234 m_motorJoint->SetMotorSpeed(m_motorSpeed); in Keyboard()
253 float32 m_motorSpeed; variable
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/box2d/Testbed/Tests/
H A DTheoJansen.h122 m_motorSpeed = 2.0f; in TheoJansen()
191 jd.motorSpeed = m_motorSpeed; in TheoJansen()
226 m_motorJoint->SetMotorSpeed(-m_motorSpeed); in Keyboard()
234 m_motorJoint->SetMotorSpeed(m_motorSpeed); in Keyboard()
253 float32 m_motorSpeed; variable
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/Box2D/Testbed/Tests/
H A DTheoJansen.h122 m_motorSpeed = 2.0f; in TheoJansen()
191 jd.motorSpeed = m_motorSpeed; in TheoJansen()
226 m_motorJoint->SetMotorSpeed(-m_motorSpeed); in Keyboard()
234 m_motorJoint->SetMotorSpeed(m_motorSpeed); in Keyboard()
253 float32 m_motorSpeed; variable
/dports/devel/love07/love-HEAD/src/modules/physics/box2d/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h158 float32 m_motorSpeed; variable
169 return m_motorSpeed; in GetMotorSpeed()
H A Db2PrismaticJoint.h164 float32 m_motorSpeed; variable
173 return m_motorSpeed; in GetMotorSpeed()
/dports/devel/love5/love-0.5-0/src/box2d/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h158 float32 m_motorSpeed; variable
169 return m_motorSpeed; in GetMotorSpeed()
/dports/games/numptyphysics/numptyphysics/Box2D/Source/Dynamics/Joints/
H A Db2RevoluteJoint.h158 float32 m_motorSpeed; variable
169 return m_motorSpeed; in GetMotorSpeed()
/dports/devel/upp/upp/uppsrc/plugin/box2d/
H A Db2RevoluteJoint.h160 float32 m_motorSpeed; variable
171 return m_motorSpeed; in GetMotorSpeed()
/dports/games/kolf/kolf-21.12.3/external/Box2D/Dynamics/Joints/
H A Db2RevoluteJoint.h166 qreal m_motorSpeed; variable
177 return m_motorSpeed; in GetMotorSpeed()

12345