OpenBeam
C++ library for static analysis of mechanical structures
CElementTorsionSpring.h
1 /* +---------------------------------------------------------------------------+
2  | OpenBeam - C++ Finite Element Analysis library |
3  | |
4  | Copyright (C) 2010-2021 Jose Luis Blanco Claraco |
5  | University of Malaga |
6  | |
7  | OpenBeam is free software: you can redistribute it and/or modify |
8  | it under the terms of the GNU General Public License as published by |
9  | the Free Software Foundation, either version 3 of the License, or |
10  | (at your option) any later version. |
11  | |
12  | OpenBeam is distributed in the hope that it will be useful, |
13  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15  | GNU General Public License for more details. |
16  | |
17  | You should have received a copy of the GNU General Public License |
18  | along with OpenBeam. If not, see <http://www.gnu.org/licenses/>. |
19  | |
20  +---------------------------------------------------------------------------+
21  */
22 
23 #pragma once
24 
25 #include <memory>
26 
27 #include "CElement.h"
28 #include "types.h"
29 
30 namespace openbeam
31 {
35  : public CElement,
36  public std::enable_shared_from_this<CElementTorsionSpring>
37 {
38  public:
41  const size_t from_node_id, const size_t to_node_id, const num_t K);
42 
47  std::vector<TStiffnessSubmatrix>& outSubMats) const override;
48 
49  void getLocalDoFs(std::vector<used_DoFs_t>& dofs) const override;
50 
51  num_t K;
52 
58  const mrpt::containers::yaml& p, const EvaluationContext& ctx) override;
59 
63  void drawSVG(
64  void* _cairo_context, const DrawStructureOptions& options,
65  const RenderInitData& ri, const DrawElementExtraParams& draw_el_params,
66  const MeshOutputInfo* meshing_info) const override;
67  mrpt::opengl::CSetOfObjects::Ptr getVisualization(
68  const DrawStructureOptions& options,
69  const DrawElementExtraParams& draw_el_params,
70  const MeshOutputInfo* meshing_info) const override
71  {
72  return {};
73  }
74 
76  void do_mesh(
77  const size_t my_idx, CStructureProblem& out_fem,
78  MeshOutputInfo& out_info, const MeshParams& params) override;
79 };
80 } // namespace openbeam
Definition: CElementTorsionSpring.h:37
void do_mesh(const size_t my_idx, CStructureProblem &out_fem, MeshOutputInfo &out_info, const MeshParams &params) override
void getLocalStiffnessMatrices(std::vector< TStiffnessSubmatrix > &outSubMats) const override
void getLocalDoFs(std::vector< used_DoFs_t > &dofs) const override
num_t K
Stiffness constant of the spring (Nm/m)
Definition: CElementTorsionSpring.h:51
void loadParamsFromSet(const mrpt::containers::yaml &p, const EvaluationContext &ctx) override
void drawSVG(void *_cairo_context, const DrawStructureOptions &options, const RenderInitData &ri, const DrawElementExtraParams &draw_el_params, const MeshOutputInfo *meshing_info) const override
Definition: CElement.h:49
Definition: CStructureProblem.h:36
Definition: DrawStructureOptions.h:103
Definition: DrawStructureOptions.h:34
Definition: types.h:161
Definition: CFiniteElementProblem.h:138
Definition: CFiniteElementProblem.h:128
Definition: DrawStructureOptions.h:115