Itasca C++ Interface
Loading...
Searching...
No Matches
iseldowel.h
Go to the documentation of this file.
1#pragma once
2
8#include "isel.h"
9
10namespace itasca {
11 class IThing;
12}
13
14namespace sel {
16
19 class ISELDowel {
20 public:
22 inline static const TType type_ = 0x5f983a6a;
24 virtual const IThing* getIThing() const = 0;
26 virtual IThing* getIThing() = 0;
28 virtual const ISEL* getISEL() const = 0;
30 virtual ISEL* getISEL() = 0;
32 virtual double getPropYield() const = 0;
34 virtual void setPropYield(const double& d) = 0;
36 virtual double getPropK() const = 0;
38 virtual void setPropK(const double& e) = 0;
40 virtual double getPropStrainLimit() const = 0;
42 virtual void setPropStrainLimit(const double& e) = 0;
44 virtual ISEL::YieldState getRespYield() const = 0;
46 virtual double getRespForce() const = 0;
48 virtual double getStrain() const = 0;
50 virtual bool getStrainFailure() const = 0;
52 virtual double getPropActiveLength() const = 0;
54 virtual void setPropActiveLength(const double& d) = 0;
55 virtual QString getState() const = 0;
56
57 // get orientations and length for plotting
58 virtual DVect getOrientation() const = 0;
59 virtual DVect getHostCableOrientation() const = 0;
60 };
61} // namespace sel
62// EoF
Base class for items that will be stored in containers.
Definition ithing.h:30
Interface to dowel structural elements.
Definition iseldowel.h:19
virtual ISEL::YieldState getRespYield() const =0
Returns the current yield state of the element. .
virtual double getPropYield() const =0
Returns the yield force.
virtual double getPropActiveLength() const =0
Return the active length used in shear strain calculation. Not the same as the actual length.
virtual void setPropK(const double &e)=0
Sets the stiffness.
virtual bool getStrainFailure() const =0
Returns strain rupture state (true for ruptured)
virtual void setPropYield(const double &d)=0
Sets the yield force.
static const TType type_
Type ID number for this class, for use in convert_cast() and convert_getcast().
Definition iseldowel.h:22
virtual double getPropK() const =0
Returns the stiffness.
virtual double getStrain() const =0
Returns the strain in the dowel.
virtual double getRespForce() const =0
Returns the force in the dowel (always positive)
virtual const IThing * getIThing() const =0
Returns a const IThing pointer.
virtual const ISEL * getISEL() const =0
Returns a const pointer to object base class.
virtual double getPropStrainLimit() const =0
Returns the rupture strain limit.
virtual ISEL * getISEL()=0
Returns a pointer to object base class.
virtual void setPropStrainLimit(const double &e)=0
Sets the rupture strain limit.
virtual void setPropActiveLength(const double &d)=0
Set the active length used in shear strain calculation. Not the same as the actual length.
virtual IThing * getIThing()=0
Returns a IThing pointer.
Interface to the structural elements base class.
Definition isel.h:22
YieldState
Yield states.
Definition isel.h:27
uint32 TType
class type indicator
Definition basedef.h:46
DVect3 DVect
Vector of doubles, either 2D or 3D.
Definition dim.h:154
Interface to the structural elements base class.
namespace Itasca
Definition basememory.cpp:10