"""
"""
"""
This module is used by the ThreeD model. It handles all the Objects types
"""
import numpy as np
from platrock.Common import Utils, BounceModels, Math, Debug
from platrock.Common.ThreeDObjects import GenericThreeDRock, GenericThreeDCheckpoint, GenericThreeDTerrain
import copy
import platrock
[docs]
class Sphere(GenericThreeDRock):
"""
FIXME: DOC
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.I=np.ones(3)*2./5.*self.mass*self.radius**2
self.bounding_box=Bounding_Box()
self.verlet_faces_list=[]
self.verlet_trees_list=[]
self.terrain_active_contact=None
self.tree_active_contact=None
self.VTK_actor=None #VTK actor for visualization
self.opacity=1
[docs]
class Bounding_Box(object):
def __init__(self):
self.pos=Math.Vector3([0,0,0])
self.half_length=0 #set this to 0 so that the Verlet algorithm detect that the bounding sphere has not yet been initialized.
self.VTK_actor=None
self.opacity=0.25
[docs]
class Checkpoint(GenericThreeDCheckpoint):
pass #nothing to change to the parent class, just declare here for consistency and facilitate eventual future implementations.
[docs]
class Terrain(GenericThreeDTerrain):
valid_input_soil_geojson_attrs=Utils.ParametersDescriptorsSet([])
for bounce_class in BounceModels.number_to_model_correspondance.values():
valid_input_soil_geojson_attrs+=bounce_class.valid_input_attrs
def __init__(
self,
default_faces_params={
"R_n":0.6,
"R_t":0.6,
"roughness":0.1,
"bounce_model_number":0,
"phi":30,
"v_half":2.5,
"e":0.1,
"mu":0.8,
"mu_r":0.5
},
*args, **kwargs):
self.default_faces_params=default_faces_params
self.faces_xyz_bb=None
super().__init__(*args, **kwargs)