*Graphic() - coil spring

Creates a coil spring graphic.

Syntax

*Graphic(gr_name,"gr_label",SPRING, spr_name, point_1, point_2, num_coils, radius)

Arguments

gr_name
The variable name of the graphic.
Data type: varname
gr_label
The descriptive label of the graphic.
Data type: label
SPRING
This argument identifies that the graphic is a spring.
spr_name
The variable name of the coil spring associated with this graphic.
Data type: varname
point_1
One of the connecting points of the coil spring.
Data type: Point
point_2
The other connecting point of the coil spring.
Data type: Point
num_coils
The number of coils in the spring.
Data type: integer
radius
The radius of the coil spring.
Data type: real

Example

*Point(p_spr_upr,        "Upper spring point")
*Point(p_spr_lwr,        "Lower spring point")
*CoilSpring(spring,      "Coil Spring", 
                        b_lca, 
                        b_frame, 
                        p_spr_lwr, 
                        p_spr_upr)
*Graphic(gr_spr_lead,    "Lead Spring",   SPRING, 
                                         spring,  
                                         p_spr_lwr, 
                                         p_spr_upr, 
                                         7,
                                         20)

Context

*BeginMdl()

*DefineAnalysis()

*DefineGraphic()

*DefineSystem()