You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor TriangularShellForceField: Rename 'f_corotated' to 'd_corotated' and Add Draw Functionality
**Commit Message:**
"Refactor TriangularShellForceField: Rename 'f_corotated' to
'd_corotated' and Add Draw Functionality"
**Details:**
- Renamed `f_corotated` to `d_corotated` across multiple files to
improve consistency in naming conventions.
- Fixed several minor spelling errors (e.g., "postions" to "positions").
- Added a `draw()` function to `TriangularShellForceField` for visual
representation of shell triangle information, including arrows with
customizable radii.
- Minor code improvements in vector naming for clarity (`edgex` to
`edge_x`, etc.).
, d_thickness(initData(&d_thickness,(Real)0.1,"thickness","Thickness of the plates"))
78
79
, d_membraneElement(initData(&d_membraneElement, "membraneElement", "The membrane element to use"))
79
80
, d_bendingElement(initData(&d_bendingElement, "bendingElement", "The bending plate element to use"))
80
-
, f_corotated(initData(&f_corotated, true, "corotated", "Compute forces in corotational frame"))
81
+
, d_corotated(initData(&d_corotated, true, "corotated", "Compute forces in corotational frame"))
81
82
, d_measure(initData(&d_measure, "measure", "Compute the strain or stress"))
82
83
, d_measuredValues(initData(&d_measuredValues, "measuredValues", "Measured values for stress or strain"))
83
-
,d_isShellveryThin(initData(&d_isShellveryThin, false, "isShellveryThin", "This bool is to adapt "
84
+
,d_isShellveryThin(initData(&d_isShellveryThin, false, "isShellveryThin", "This bool is to adapt "
84
85
"computation in case we are using verry tiny(thickness) shell element"))
85
86
, d_use_rest_position(initData(&d_use_rest_position, true, "use_rest_position", "Use the rest position inteat of using postion to update the restposition"))
0 commit comments