Itasca C++ Interface
|
Interface to provide access to structural element links. More...
#include <isellink.h>
Public Types | |
enum | AttachType { AttachFree =0, AttachRigid, AttachDeform } |
Possible attachment conditions to rotational and translational directions. More... | |
Public Member Functions | |
virtual const IThing * | getIThing () const =0 |
returns a const IThing pointer | |
virtual IThing * | getIThing ()=0 |
returns a IThing pointer | |
virtual const ISELLink * | getNext () const =0 |
virtual ISELLink * | getNext ()=0 |
virtual const ISELNode * | getSourceNode () const =0 |
Returns a const pointer to the node from which the link emanates. Each link originates from a node. | |
virtual quint32 | getSide () const =0 |
Returns 1 if the link is a side 1 link; returns 2 if the link is a side 2 link. | |
virtual quint64 | getTargetID () const =0 |
virtual TType | getType () const =0 |
Returns the link type. | |
virtual TType | getUsedBySELType () const =0 |
virtual AttachType | getAttachCondition (quint32 dof) const =0 |
Given a dof in the range 0 to 5, returns the attachment condition. See getAttachConditionSymbol(). | |
virtual QString | getAttachConditionSymbol (quint32 dof) const =0 |
virtual TType | getConstitType (quint32 dof) const =0 |
virtual bool | getSlide () const =0 |
virtual void | setSlide (bool)=0 |
virtual double | getSlideTol () const =0 |
virtual void | setSlideTol (const double &)=0 |
virtual ISELLinkModel * | getConstitModel (quint32 dof) const =0 |
Given a dof in the range 0 to 5, returns a pointer to the link constitutive model. | |
virtual const IThing * | getTarget () const =0 |
Returns a pointer to the target for this link. | |
virtual QString | getTargetKeyword () const =0 |
Returns the keyword used to identify this type of link on the command line. | |
virtual QString | getTargetTypeName () const =0 |
Returns a name indicating the type of object the link connects to. | |
virtual TType | getTargetType () const =0 |
Returns the generic type indicator of the type the object connects to. | |
virtual DVect | getTargetPosition () const =0 |
virtual void | setTarget (IThing *thing)=0 |
virtual double | getTargetPorePressure () const =0 |
virtual std::vector< std::pair< QString, QVariant > > | getTypeEntryData () const =0 |
virtual bool | findDowelPosFromPos (const DVect &p1, const DVect &p2, double charDist, std::vector< std::pair< DVect, DVect > > *intersections) const =0 |
Static Public Attributes | |
static const TType | type_ = 0x4c815bfe |
The type identification number for this class, for use in convert_cast() and convert_getcast(). | |
Interface to provide access to structural element links.
Structural elements can be joined to one another either by sharing a node or having one of its nodes linked to either node or to a zone. If two or more structural elements share a node, all forces and moments are transfered between the structural elements at the node.
|
pure virtual |
Gets the dowel node locations and puts in the vector intersections. These will always be pairs (two sides of a joint) Input beginning (p1) and end (p2) of host segment and characteristic distance (element length) Return false if no joint crossings found
|
pure virtual |
Given a dof in the range 0 to 5, returns a descriptive name for the link attachemnt condition. See getAttachCondition()
Possible values are: - (SELLK_FREE), + (SELLK_RIGID), LIN (SELLK_DEFORM and SELCM::SELCM_LIN), SY (SELLK_DEFORM and SELCM::SELCM_SY), SY (SELLK_DEFORM and SELCM::SELCM_NY), PY (SELLK_DEFORM and SELCM::SELCM_PY), PYDP (SELLK_DEFORM and SELCM::SELCM_PYDP) ? (default)
|
pure virtual |
Given a dof in the range 0 to 5, returns the link constitutive model.
If the attachment condition is different from SELLK_DEFORM, function will return SELCM::SELCM_NONE.
|
pure virtual |
Returns a const pointer to the next ISELLink object from the global list of structural elements links, or 0 for the last element ofthe list. See ISELLinkList::getFirstSELLk()
|
pure virtual |
Returns a pointer to the next ISELLink object from the global list of structural elements links, or 0 for the last element ofthe list. See ISELLinkList::getFirstSELLk()
|
pure virtual |
Returns true if the large-strain sliding flag is on. This function only applies to node-to-zone links and has no effect on node-to-node links. See setSlide()
|
pure virtual |
Returns the large-strain sliding tolerance. This function only applies to node-to-zone links and has no effect on node-to-node links. See setSlideTol()
|
pure virtual |
Returns the id of the target link. For a node-to-node link, the target link is the node. For a node-to-zone link, the target is the zone. see getTypeID().
|
pure virtual |
Return the structura element entity that is using this link.
If not being used by a specific type, then return 0. See SEL::getType()
|
pure virtual |
Sets he large-strain sliding flag is on. This function only applies to node-to-zone links and has no effect on node-to-node links. See getSlide()
|
pure virtual |
Sets the large-strain sliding tolerance. This function only applies to node-to-zone links and has no effect on node-to-node links. gee setSlideTol()
|
pure virtual |
Sets the current target for this link to thing.
Throws an error if thing is of the wrong type or if the link would be invalid.