NGsolveCMStest.py

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

  1#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2# This is an EXUDYN example
  3#
  4# Details:  Test for Hurty-Craig-Bampton modes using a simple flexible pendulum meshed with Netgen
  5#
  6# Author:   Johannes Gerstmayr
  7# Date:     2021-04-20
  8# Update:   2022-07-11: runs now with pip installed ngsolve on Python 3.10
  9#
 10# 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.
 11#
 12#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 13
 14
 15import exudyn as exu
 16from exudyn.utilities import * #includes itemInterface and rigidBodyUtilities
 17import exudyn.graphics as graphics #only import if it does not conflict
 18import numpy as np
 19from exudyn.FEM import *
 20import time
 21
 22useGraphics = True #without test
 23#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 24#you can erase the following lines and all exudynTestGlobals related operations if this is not intended to be used as TestModel:
 25try: #only if called from test suite
 26    from modelUnitTests import exudynTestGlobals #for globally storing test results
 27    useGraphics = exudynTestGlobals.useGraphics
 28except:
 29    class ExudynTestGlobals:
 30        pass
 31    exudynTestGlobals = ExudynTestGlobals()
 32#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 33
 34
 35SC = exu.SystemContainer()
 36mbs = SC.AddSystem()
 37
 38fileName = 'testData/netgenTestMesh' #for load/save of FEM data
 39
 40#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
 41#netgen/meshing part:
 42fem = FEMinterface()
 43#standard:
 44a = 0.1     #half height/width of beam
 45b = a
 46h = 2*a     #much too coarse, only for testing!!!
 47L = 1       #Length of beam
 48nModes = 4
 49
 50rho = 1000
 51Emodulus=1e6 #smaller to see some deformation
 52nu=0.3
 53meshCreated = False
 54meshOrder = 1 #use order 2 for higher accuracy, but more unknowns
 55
 56hasNGsolve = False
 57
 58try:
 59    #netgen/ngsolve: https://github.com/NGSolve/ngsolve/releases
 60    import ngsolve as ngs
 61    from netgen.meshing import *
 62    from netgen.csg import *
 63    hasNGsolve = True
 64except:
 65    exu.Print('NGsolve not installed; trying to load mesh')
 66
 67#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
 68if hasNGsolve:
 69
 70    geo = CSGeometry()
 71
 72    block = OrthoBrick(Pnt(0,-a,-b),Pnt(L,a,b))
 73    geo.Add(block)
 74
 75    mesh = ngs.Mesh( geo.GenerateMesh(maxh=h))
 76    mesh.Curve(1)
 77
 78    if False: #set this to true, if you want to visualize the mesh inside netgen/ngsolve
 79        # import netgen
 80        import netgen.gui
 81        ngs.Draw (mesh)
 82        for i in range(10000000):
 83            netgen.Redraw() #this makes the window interactive
 84            time.sleep(0.05)
 85
 86    meshCreated = True
 87    #%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
 88    #Use fem to import FEM model and create FFRFreducedOrder object
 89    [bfM, bfK, fes] = fem.ImportMeshFromNGsolve(mesh, density=rho,
 90                                                youngsModulus=Emodulus, poissonsRatio=nu,
 91                                                meshOrder=meshOrder)
 92    #if file does not exist, create it - otherwise don't change it!
 93    #if you want to replace it, delete the old file!
 94    try:
 95        fem.LoadFromFile(fileName, mode='PKL')
 96    except:
 97        fem.SaveToFile(fileName, mode='PKL')
 98
 99#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
100#compute Hurty-Craig-Bampton modes
101try:
102    fem.LoadFromFile(fileName, mode='PKL')
103except:
104    raise ValueError('NGsolveCMStest: mesh file not found!')
105
106
107pLeft = [0,-a,-b]
108pRight = [L,-a,-b]
109nTip = fem.GetNodeAtPoint(pRight) #tip node (do not use midpoint, as this may not be a mesh node ...)
110
111nodesLeftPlane = fem.GetNodesInPlane(pLeft, [-1,0,0])
112weightsLeftPlane = fem.GetNodeWeightsFromSurfaceAreas(nodesLeftPlane)
113
114boundaryList = [nodesLeftPlane]
115
116fem.ComputeHurtyCraigBamptonModes(boundaryNodesList=boundaryList,
117                              nEigenModes=nModes,
118                              useSparseSolver=True,
119                              computationMode = HCBstaticModeSelection.RBE2)
120
121
122#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
123#compute stress modes for postprocessing (inaccurate for coarse meshes, just for visualization):
124mat = KirchhoffMaterial(Emodulus, nu, rho)
125varType = exu.OutputVariableType.StressLocal
126start_time = time.time()
127fem.ComputePostProcessingModes(material=mat, outputVariableType=varType)
128SC.visualizationSettings.contour.reduceRange=False
129SC.visualizationSettings.contour.outputVariable = varType
130SC.visualizationSettings.contour.outputVariableComponent = 0 #x-component
131
132#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
133#now we test load/save for different formats!
134try:
135    fem.SaveToFile(fileName+'2.npy')
136    fem.LoadFromFile(fileName+'2', mode='NPY')
137except:
138    #this should always work!
139    raise ValueError('NGsolveCMStest: load/save with NPY mode failed!')
140
141try:
142    fem.SaveToFile(fileName+'.pkl', mode='PKL')
143    fem.LoadFromFile(fileName, mode='PKL')
144except:
145    #this should always work!
146    raise ValueError('NGsolveCMStest: load/save with PKL mode failed!')
147
148hasHDF5 = False
149try:
150    import h5py
151    hasHDF5 = True
152except:
153    exu.Print('NGsolveCMStest: import of h5py failed; to test, requires to pip install h5py')
154
155try:
156    fem.SaveToFile(fileName, mode='HDF5')
157    fem.LoadFromFile(fileName+'.hdf5')
158except:
159    if hasHDF5:
160        raise ValueError('NGsolveCMStest: load/save with HDF5 mode failed even though h5py is installed!')
161        #pass
162
163#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
164cms = ObjectFFRFreducedOrderInterface(fem)
165
166objFFRF = cms.AddObjectFFRFreducedOrder(mbs, positionRef=[0,0,0],
167                                              initialVelocity=[0,0,0],
168                                              initialAngularVelocity=[0,0,0],
169                                              gravity=[0,-9.81,0],
170                                              color=[0.1,0.9,0.1,1.],
171                                              )
172
173
174#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
175#add markers and joints
176nodeDrawSize = 0.0025 #for joint drawing
177
178
179mRB = mbs.AddMarker(MarkerNodeRigid(nodeNumber=objFFRF['nRigidBody']))
180oGround = mbs.AddObject(ObjectGround(referencePosition= [0,0,0]))
181
182if True:
183    leftMidPoint = [0,0,0]
184
185    mGround = mbs.AddMarker(MarkerBodyRigid(bodyNumber=oGround, localPosition=leftMidPoint))
186
187    mLeft = mbs.AddMarker(MarkerSuperElementRigid(bodyNumber=objFFRF['oFFRFreducedOrder'],
188                                                  meshNodeNumbers=np.array(nodesLeftPlane), #these are the meshNodeNumbers
189                                                  weightingFactors=weightsLeftPlane))
190    mbs.AddObject(GenericJoint(markerNumbers=[mGround, mLeft],
191                               constrainedAxes = [1,1,1,1,1,1*0],
192                               visualization=VGenericJoint(axesRadius=0.1*a, axesLength=0.1*a)))
193
194#%%+++++++++++++++++++++++++++++++++++++++++++++++++++++
195sensTipDispl = mbs.AddSensor(SensorSuperElement(bodyNumber=objFFRF['oFFRFreducedOrder'],
196                                                meshNodeNumber=nTip, #meshnode number!
197                                                storeInternal=True,
198                                                outputVariableType = exu.OutputVariableType.Displacement))
199
200mbs.Assemble()
201
202simulationSettings = exu.SimulationSettings()
203
204SC.visualizationSettings.nodes.defaultSize = nodeDrawSize
205SC.visualizationSettings.nodes.drawNodesAsPoint = False
206SC.visualizationSettings.connectors.defaultSize = 2*nodeDrawSize
207
208SC.visualizationSettings.nodes.show = False
209SC.visualizationSettings.nodes.showBasis = True #of rigid body node of reference frame
210SC.visualizationSettings.nodes.basisSize = 0.12
211
212SC.visualizationSettings.sensors.show = True
213SC.visualizationSettings.sensors.drawSimplified = False
214SC.visualizationSettings.sensors.defaultSize = 0.01
215SC.visualizationSettings.markers.drawSimplified = False
216SC.visualizationSettings.markers.show = False
217SC.visualizationSettings.markers.defaultSize = 0.01
218
219SC.visualizationSettings.loads.drawSimplified = False
220
221
222h=1e-3
223tEnd = 0.1
224if useGraphics:
225    tEnd = 4
226
227simulationSettings.timeIntegration.numberOfSteps = int(tEnd/h)
228simulationSettings.timeIntegration.endTime = tEnd
229simulationSettings.solutionSettings.writeSolutionToFile = False
230simulationSettings.timeIntegration.verboseMode = 1
231#simulationSettings.timeIntegration.verboseModeFile = 3
232simulationSettings.timeIntegration.newton.useModifiedNewton = True
233
234simulationSettings.solutionSettings.sensorsWritePeriod = h
235
236simulationSettings.timeIntegration.generalizedAlpha.spectralRadius = 0.8
237simulationSettings.displayComputationTime = True
238
239#create animation:
240SC.visualizationSettings.window.renderWindowSize=[1920,1080]
241SC.visualizationSettings.openGL.multiSampling = 4
242
243if useGraphics:
244    SC.visualizationSettings.general.autoFitScene=False
245
246    exu.StartRenderer()
247    if 'renderState' in exu.sys: SC.SetRenderState(exu.sys['renderState']) #load last model view
248
249    mbs.WaitForUserToContinue() #press space to continue
250
251mbs.SolveDynamic(simulationSettings=simulationSettings)
252
253uTip = mbs.GetSensorValues(sensTipDispl)
254exu.Print("nModes=", nModes, ", tip displacement=", uTip)
255
256
257if useGraphics:
258    SC.WaitForRenderEngineStopFlag()
259    exu.StopRenderer() #safely close rendering window!
260
261result = np.linalg.norm(uTip)
262exu.Print('solution of NGsolveCMStest=',result)
263
264#%%++++++++++++++++++++++++++++++++++++++++++++++++++++
265
266exudynTestGlobals.testError = result - (0.06953227339277462 )
267exudynTestGlobals.testResult = result
268
269
270#mbs.SolutionViewer()