Geogrid

class itasca.structure.Geogrid
Objects of this type should not be created (instantiated) directly in Python. Use the module functions that return instances of this type.
area() → float.

Get surface area of the Geogrid element.

beta() → float.

Get Geogrid system beta angle. This is defined as the angle between the element local system x-axis and the material system x-axis. In radians measured counter-clockwise from the element local x-axis.

component_id() → int.

Get the Geogrid component id.

connectivity(component: int) → bool.

Get the index of the node with component-ID id in the element. A ValueError exception is raised if no node in that element matches.

delete() → None.

Delete this structural element.

density() → float.

Get the density of this structural element.

depth_factor() → float.

Get the depth factor at which stresses have been recovered. The depth equals Ft/2 where t is the Geogrid element thickness. F values equal to +1.0 or -1.0 correspond to the outer/inner Geogrid surface. The outer surface is defined by the positive z-direction of the local Geogrid element system. F values of 0.0 corresponds to the Geogrid mid-surface. The depth factor can be modified with the \(structure Geogrid recover stress\) command.

element_type() → str.

Get the name of the finite-element type used by this Geogrid element. The possible types for Geogrid elements are ‘cst’, ‘csth’, ‘dkt’, ‘dkt-cst’, and ‘dkt-csth’.

extra(slot: int) → any.

Get the Geogrid extra data in the given slot.

force_nodal() → (vec3,vec3, vec3,vec3, vec3,vec3).

Get the generalized nodal force acting on the Geogrid at each node. The translational and rotational components of node 1 are given first.

group([slot: str]) → str.

Get the Geogrid group name in a given slot.

group_remove(group_name: str) → bool.

Remove from the given group from all group slots of the Geogrid. One argument of type string, giving the group name, is required. The return value is a bool which is True if the group was removed from any slot, otherwise False.

groups() → {slot: group_name}.

Get a dictionary describing which groups this Geogrid is part of. The keys of the dictionary are the slot names and the values are the group names.

id() → int.

Get the Geogrid structural element id.

in_group(group_name: str[, slot: str]) → bool.

Test if the Geogrid is part of a given group. If the optional argument slot is given, only that slot is searched. Otherwise, all group slots are searched.

local_system() → Tens3.

Get local coordinate system of this element as a 3x3 tensor.

mark() → bool.

Get the mark flag on the structural element. The structural element logic may modify this flag during command processing and cycling.

nodes() → tuple of Structural element node objects.

Get a tuple containing the structural element nodes attached to this elemment.

poisson() → float.

Get the Poisson’s ratio of the element.

pos() → vec3.

Get the position vector of the element, defined as the element centroid.

pressure() → float.

Get the uniform pressure acting on the Geogrid. A positive value acts in the z-direction of the element local system.

prop_anis() → (membrane: tuple of float, bending: tuple of float).

Get the anisotropic material properties. Material-stiffness coefficients c‘11, c‘12, c‘13, c‘22, c‘23, c‘33 are returned for both the membrane and bending stiffnesses in that order. If the element does not have anisotropic properties, zeros are returned.

prop_ortho() → (membrane: tuple of float, bending: tuple of float).

Get the orthotropic material properties. Material-stiffness coefficients c‘11, c‘12, c‘13, c‘22, c‘23, c‘33 are returned for both the membrane and bending stiffnesses in that order. If the element does not have orthotropic properties, zeros are returned.

prop_type() → str.

Get the material property type. Possible return values are ‘isotropic’, ‘orthotripc’, and ‘anisotropic’.

resultant(location: int) → length 8 tuple of float.

Get stress resultants last calculated for the element at the index \(location\). A \(location\) value of 0 gives the resultant at the element centroid; \(location\) values 1, 2 and 3 give the resultant at the nodes. The components in the return value are: Mx, My, Mxy, Nx, Ny, Nxy, Qx and Qy. Note that stress resultants must be calculated with the \(structure Geogrid recover\) command. See also the \(resultant_valid\) method.

resultant_valid() → bool.

Get stress resultant validity flag. True indicates that the stress resultant values are valid. False indicates that resultants have not been calculated or that there has been a change since they were last calculated that would invalidate the results.

set_density(float) → None.

Set the density of this structural element.

set_extra(slot: int, value: any) → None.

Set the Geogrid extra data in the given slot.

set_group(group_name: str[, slot: str]) → None.

Set the Geogrid group name in a given slot.

set_mark(bool) → None.

Set the mark flag on the structural element. The structural element logic may modify this flag during command processing and cycling.

set_pressure(float) → None.

Set the uniform pressure acting on the Geogrid. A positive value acts in the z-direction of the element local system.

set_shear_cohesion(float) → None.

Set the (shear) coupling spring cohesion strength of the geogrid element.

set_shear_friction(float) → None.

Set the (shear) coupling spring friction angle of the geogrid element.

set_shear_stiffness(float) → None.

Set the (shear) coupling spring stiffness of the geogrid element.

set_slide(bool) → None.

Set the large-strain sliding flag. A true value denotes that the large-strain sliding is on.

set_slide_tol(float) → None.

Set the (shear) coupling spring slide tolerance of the geogrid element.

set_thermal_expansion(float) → None.

Set the thermal expansion coefficient for the structural element.

set_thickness(float) → None.

Set the element thickness.

shear_cohesion() → float.

Get the (shear) coupling spring cohesion strength of the geogrid element.

shear_dir() → (vec3, vec3, vec3).

Get the direction (unit vector in global system) in which the geogrid element is being loaded by the coupling spring at each node.

shear_disp() → (float, float, float).

Get the displacement magnitude in the coupling spring at each node. The coupling spring lies in the tangent plane of the geogrid surface.

shear_friction() → float.

Get/set the (shear) coupling spring friction angle of the geogrid element.

shear_state() → (int, int, int).

Get the yield state of the coupling spring at each node. Return values 1, 2 and 3 denotes never yielded, yielding now, or yielded in the past, respectively.

shear_stiffness() → float.

Get the (shear) coupling spring stiffness of the geogrid element.

shear_stress() → (float, float, float).

Get the stress magnitude in coupling spring at each node. The coupling spring lies in the tangent plane of the geogrid surface. The direction in which force is acting is given by the \(shear_dir\) method.

slide() → bool.

Get the large-strain sliding flag. A true value denotes that the large-strain sliding is on.

slide_tol() → float.

Get the (shear) coupling spring slide tolerance of the geogrid element.

stress(location: int) → stens3.

Get the Geogrid stresses at the current depth factor at the index \(location\). A \(location\) value of 0 gives the stress at the element centroid; \(location\) values 1, 2 and 3 give the stress at the nodes. Stresses are expressed in the global system. Note that compressive stresses are negative.

stress_confining() → (float, float, float).

Get the confining stress at each node. A negative value is compression. The confining stress is the stress component acting perpendicular to the geogrid surface.

stress_prin(location: int) → vec3.

Get the resolved principal stress at the current depth factor at the index \(location\). A \(location\) value of 0 gives the stress at the element centroid; \(location\) values 1, 2 and 3 give the stress at the nodes. Returns a vector encoded as (minimum, intermediate, maximum). Note that compressive stresses are negative in FLAC3D.

stress_valid() → bool.

Get the stress validity flag for the element. True indicates that the stresses last calculated at the current depth factor are valid. Galse indicates that stresses have not been calculated, or that there has been a change that invalidates the last stresses calculated.

thermal_expansion() → float.

Get the thermal expansion coefficient for the structural element.

thickness() → float.

Get the element thickness.

valid() → bool.

Returns True if this Geogrid is live.

volume() → float.

Get the element volume, or surface area times thickness.

young() → float.

Get the Youngs modulus of the element. Modifying the value during cycling may be a danger.