#
RigidPlate
Define a Rigid Plate material.
#
Parameters
- name : str
- String naming the material.
- color : Color
- Material appearance. color= rgb(128,156,180)
- weight : float
- Weight in kN/m^2
- permeable : str
- Apply permability. permeable= 'yes' or 'no'
#
Examples
i = 14
model2d.add_rectangle([i,0],[i+1,2])
Face = model2d.select(p0=[i+0.5,1],types='face')
RigidPlateMaterial = prj.RigidPlate(name='RigidPlateMaterial',
color=rgb(128,156,180),
weight=0,
permeable='no',
)
model2d.set_solid(shapes=Face,material=RigidPlateMaterial)