Documentation for mesh generation
ElasticTrussRebar
Bases: RebarInterface
This class can insert purely elastic rebar stiffnesses into the concrete matrix and the internal forces vector. Equations from http://what-when-how.com/the-finite-element-method/fem-for-trusses-finite-element-method-part-1/
Source code in reinforcement/rebar.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
__init__(concrete_mesh, rebar_mesh, function_space, parameters)
Initialize rebar class
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
concrete_mesh |
dfx.mesh.Mesh
|
The 3D mesh of the concrete structure. |
required |
rebar_mesh |
dfx.mesh.Mesh
|
The line mesh of the steel rebar. |
required |
function_space |
dfx.fem.FunctionSpace
|
The function space object of the concrete structure. |
required |
parameters |
dict
|
A dictinary containing all needed parameters of the steel. Contains: 'A', 'E', 'rho'. |
required |
Source code in reinforcement/rebar.py
85 86 87 88 89 90 91 92 93 94 95 | |
apply_to_diagonal_mass(M)
Adds nodal masses to a diagonal mass matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
M |
PETSc.Vec
|
The diagonal from of the mass matrix as a PETSc vector |
required |
Source code in reinforcement/rebar.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |
apply_to_forces(f_int, u, sign=1.0)
Adds truss nodal internal forces to global forces vector.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f_int |
PETSc.Vec
|
The global forces vector. |
required |
u |
PETSc.Vec
|
The global displacements. |
required |
sign |
float
|
Sign of the added values. |
1.0
|
Source code in reinforcement/rebar.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
apply_to_stiffness(K, u)
Adds truss stiffness to global stiffness matrix,
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
K |
PETSc.Mat
|
The global stiffness matrix. |
required |
u |
PETSc.Vec
|
The global displacements. |
required |
Source code in reinforcement/rebar.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | |
RebarInterface
Bases: ABC
An interface for trusses. Contains methods to assign dofs.
Source code in reinforcement/rebar.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | |
__init__(concrete_mesh, rebar_mesh, function_space, parameters)
Initialize rebar class
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
concrete_mesh |
dfx.mesh.Mesh
|
The 3D mesh of the concrete structure. |
required |
rebar_mesh |
dfx.mesh.Mesh
|
The line mesh of the steel rebar. |
required |
function_space |
dfx.fem.FunctionSpace
|
The function space object of the concrete structure. |
required |
parameters |
dict
|
A dictinary containing all needed parameters of the steel. Contains: 'A', 'E', 'rho'. |
required |
Source code in reinforcement/rebar.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | |