createRollingDiscTest.py

You can view and download this file on Github: createRollingDiscTest.py

 1#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2# This is an EXUDYN example
 3#
 4# Details:  Test model for CreateRollingDisc; simple model of a wheel
 5#
 6# Author:   Johannes Gerstmayr
 7# Date:     2025-03-05
 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
31import exudyn as exu
32from exudyn.utilities import * #includes itemInterface and rigidBodyUtilities
33import numpy as np
34SC = exu.SystemContainer()
35mbs = SC.AddSystem()
36
37r = 0.2
38oDisc = mbs.CreateRigidBody(inertia = InertiaCylinder(density=5000, length=0.02, outerRadius=r, axis=0),
39                          referencePosition = [1,0,r],
40                          initialAngularVelocity = [-3*2*pi,10,0],
41                          initialVelocity = [0,r*3*2*pi,0],
42                          gravity = [0,0,-9.81],
43                          graphicsDataList = [exu.graphics.Cylinder(pAxis = [-0.01,0,0], vAxis = [0.02,0,0], radius = r*0.99, nTiles=64,
44                                                                    color=exu.graphics.color.blue),
45                                              exu.graphics.Basis(length=2*r)])
46oGround = mbs.CreateGround(graphicsDataList=[exu.graphics.CheckerBoard(size=8)])
47
48mbs.CreateRollingDisc(bodyNumbers=[oGround, oDisc],
49                      axisPosition=[0,0,0], axisVector=[1,0,0], #on local wheel frame
50                      planePosition = [0,0,0], planeNormal = [0,0,1],  #in ground frame
51                      discRadius = r,
52                      discWidth=0.01, color=exu.graphics.color.steelblue)
53
54mbs.Assemble()
55
56simulationSettings = exu.SimulationSettings() #takes currently set values or default values
57
58
59stepSize=0.002
60tEnd = 1
61
62simulationSettings.timeIntegration.numberOfSteps = int(tEnd/stepSize)
63simulationSettings.timeIntegration.endTime = tEnd
64simulationSettings.solutionSettings.writeSolutionToFile = useGraphics
65simulationSettings.timeIntegration.verboseMode = 1
66simulationSettings.timeIntegration.newton.useModifiedNewton = True
67
68SC.visualizationSettings.nodes.show = True
69SC.visualizationSettings.nodes.drawNodesAsPoint  = False
70SC.visualizationSettings.nodes.showBasis = True
71SC.visualizationSettings.nodes.basisSize = 0.015
72SC.visualizationSettings.openGL.perspective = 2
73SC.visualizationSettings.openGL.shadow=0.3
74SC.visualizationSettings.openGL.multiSampling=4
75
76if useGraphics:
77    exu.StartRenderer()
78    mbs.WaitForUserToContinue()
79
80mbs.SolveDynamic(simulationSettings)
81
82p0=mbs.GetObjectOutputBody(oDisc, exu.OutputVariableType.Position)
83
84u = np.linalg.norm(p0)
85exu.Print('solution of createRollingDisc=',u)
86
87exudynTestGlobals.testError = u - (0)
88exudynTestGlobals.testResult = u
89
90
91if useGraphics:
92    SC.WaitForRenderEngineStopFlag()
93    exu.StopRenderer() #safely close rendering window!
94
95# mbs.SolutionViewer()