createRollingDiscPenaltyTest.py
You can view and download this file on Github: createRollingDiscPenaltyTest.py
1#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2# This is an EXUDYN example
3#
4# Details: Test model for CreateRollingDiscPenalty; simple model of a two-wheeler without steering
5#
6# Author: Johannes Gerstmayr
7# Date: 2025-02-27
8#
9# Copyright:This file is part of Exudyn. Exudyn is free software. You can redistribute it and/or modify it under the terms of the Exudyn license. See 'LICENSE.txt' for more details.
10#
11#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12
13import exudyn as exu
14from exudyn.utilities import * #includes itemInterface and rigidBodyUtilities
15import exudyn.graphics as graphics #only import if it does not conflict
16
17import numpy as np
18
19useGraphics = True #without test
20#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
21#you can erase the following lines and all exudynTestGlobals related operations if this is not intended to be used as TestModel:
22try: #only if called from test suite
23 from modelUnitTests import exudynTestGlobals #for globally storing test results
24 useGraphics = exudynTestGlobals.useGraphics
25except:
26 class ExudynTestGlobals:
27 pass
28 exudynTestGlobals = ExudynTestGlobals()
29#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
30
31SC = exu.SystemContainer()
32mbs = SC.AddSystem()
33
34g = [0,0,-9.81] #gravity in m/s^2
35m = 0.5 #disc mass in kg
36r = 0.1 #radius of disc in m
37w = 0.01 #width of disc in m, just for drawing
38v0 = 2
39
40L = 0.8 #length of board
41
42omega0 = [0,4*2*np.pi,0] #initial angular velocity around y-axis
43v0 = Skew(omega0) @ [0,0,r] #initial angular velocity of center point
44
45#inertia for infinitely small ring:
46inertiaRing = RigidBodyInertia(mass=1, inertiaTensor= np.diag([0.25*m*r**2, 0.5*m*r**2, 0.25*m*r**2]))
47
48#additional graphics for visualization of rotation:
49graphicsWheel = graphics.Brick(centerPoint=[0,0,0],size=[1.2*r,2*w,1.2*r], color=graphics.color.lightred)
50
51oWheel0 = mbs.CreateRigidBody(referencePosition=[-0.5*L,0,r],
52 initialVelocity=v0,
53 initialAngularVelocity=omega0,
54 inertia=inertiaRing,
55 gravity=g,
56 graphicsDataList=[graphicsWheel]
57 )
58
59oWheel1 = mbs.CreateRigidBody(referencePosition=[0.5*L,0,r],
60 initialVelocity=v0,
61 initialAngularVelocity=omega0,
62 inertia=inertiaRing,
63 gravity=g,
64 graphicsDataList=[graphicsWheel]
65 )
66
67graphicsBody = graphics.Brick(centerPoint=[0,0,0],size=[L*1.1,0.6*r,0.6*r], color=graphics.color.grey)
68oBody = mbs.CreateRigidBody(referencePosition=[0,0,r*1.2],
69 initialVelocity=v0,
70 inertia=InertiaCuboid(2800, sideLengths=[L,0.5*r,0.5*r]),
71 gravity=g,
72 graphicsDataList=[graphicsBody]
73 )
74
75#ground body and marker
76gGround = graphics.CheckerBoard(size=50, nTiles=50)
77oGround = mbs.AddObject(ObjectGround(visualization=VObjectGround(graphicsData=[gGround])))
78
79mbs.CreateRevoluteJoint(bodyNumbers=[oWheel0, oBody],
80 position = [0,0,0], axis=[0,1,0], useGlobalFrame=False,
81 axisRadius=0.1*r, axisLength=0.6*r)
82
83mbs.CreateRevoluteJoint(bodyNumbers=[oWheel1, oBody],
84 position = [0,0,0], axis=[0,1,0], useGlobalFrame=False,
85 axisRadius=0.1*r, axisLength=0.6*r)
86
87oRolling0 = mbs.CreateRollingDiscPenalty(bodyNumbers=[oGround, oWheel0],
88 axisPosition=[0,0,0], axisVector=[0,1,0],
89 discRadius=r,
90 contactStiffness=1e5, contactDamping=1e3, dryFriction=[0.4,0.4],
91 discWidth=0.1*r, color=graphics.color.blue)
92
93oRolling1 = mbs.CreateRollingDiscPenalty(bodyNumbers=[oGround, oWheel1],
94 axisPosition=[0,0,0], axisVector=[0,1,0],
95 discRadius=r,
96 contactStiffness=1e5, contactDamping=1e3, dryFriction=[0.4,0.4],
97 discWidth=0.1*r, color=graphics.color.blue)
98
99
100
101#sensor for trace of contact point:
102if useGraphics:
103 sTrail=mbs.AddSensor(SensorObject(objectNumber=oRolling0, storeInternal=True,#fileName='solution/rollingDiscTrail.txt',
104 outputVariableType = exu.OutputVariableType.Position))
105
106
107
108
109mbs.Assemble()
110
111simulationSettings = exu.SimulationSettings() #takes currently set values or default values
112
113
114stepSize=0.002
115tEnd = 1
116
117simulationSettings.timeIntegration.numberOfSteps = int(tEnd/stepSize)
118simulationSettings.timeIntegration.endTime = tEnd
119#simulationSettings.solutionSettings.solutionWritePeriod = 0.01
120simulationSettings.solutionSettings.sensorsWritePeriod = 0.005
121simulationSettings.solutionSettings.writeSolutionToFile = useGraphics
122simulationSettings.timeIntegration.verboseMode = 1
123simulationSettings.timeIntegration.newton.useModifiedNewton = True
124#simulationSettings.displayComputationTime = True
125#simulationSettings.linearSolverType = exu.LinearSolverType.EigenSparse #does not work for initial accelerations
126
127SC.visualizationSettings.nodes.show = True
128SC.visualizationSettings.nodes.drawNodesAsPoint = False
129SC.visualizationSettings.nodes.showBasis = True
130SC.visualizationSettings.nodes.basisSize = 0.015
131SC.visualizationSettings.openGL.perspective = 2
132
133if useGraphics:
134 exu.StartRenderer()
135 mbs.WaitForUserToContinue()
136
137mbs.SolveDynamic(simulationSettings)
138
139p0=mbs.GetObjectOutput(oRolling0, exu.OutputVariableType.Position)
140
141u = np.linalg.norm(p0)
142exu.Print('solution of createRollingDiscPenalty=',u)
143
144exudynTestGlobals.testError = u - (0)
145exudynTestGlobals.testResult = u
146
147
148if useGraphics:
149 SC.WaitForRenderEngineStopFlag()
150 exu.StopRenderer() #safely close rendering window!
151
152 ##++++++++++++++++++++++++++++++++++++++++++++++q+++++++
153 #plot results
154 if True:
155 mbs.PlotSensor(sTrail, componentsX=[0],components=[1], closeAll=True, title='wheel trail')